Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zry
performance
Commits
f8fef2ad
Commit
f8fef2ad
authored
Mar 22, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v20201230yubei' into v2020morge-graphql
parents
cb27b325
bc8d2285
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
performance/Performance.Services/SheetSevice.cs
+10
-2
No files found.
performance/Performance.Services/SheetSevice.cs
View file @
f8fef2ad
...
@@ -335,7 +335,11 @@ private void AccountNurseExport(int sheetID, SheetExportResponse response)
...
@@ -335,7 +335,11 @@ private void AccountNurseExport(int sheetID, SheetExportResponse response)
int
index
=
1
;
int
index
=
1
;
foreach
(
var
item
in
pairs
)
foreach
(
var
item
in
pairs
)
{
{
row
.
Data
.
Add
(
new
Cell
(
index
,
item
.
Item1
,
item
.
Item3
,
item
.
Item4
,
item
.
Item5
,
item
.
Item6
));
row
.
Data
.
Add
(
new
Cell
(
index
,
item
.
Item1
,
item
.
Item3
,
item
.
Item4
,
item
.
Item5
,
item
.
Item6
)
{
FieldName
=
item
.
Item1
,
CellType
=
"header"
});
index
+=
1
;
index
+=
1
;
}
}
response
.
Header
.
Add
(
row
);
response
.
Header
.
Add
(
row
);
...
@@ -388,7 +392,11 @@ private void AccountDoctorExport(int sheetID, SheetExportResponse response)
...
@@ -388,7 +392,11 @@ private void AccountDoctorExport(int sheetID, SheetExportResponse response)
int
index
=
1
;
int
index
=
1
;
foreach
(
var
item
in
pairs
)
foreach
(
var
item
in
pairs
)
{
{
row
.
Data
.
Add
(
new
Cell
(
index
,
item
.
Item1
,
item
.
Item3
,
item
.
Item4
,
item
.
Item5
,
item
.
Item6
));
row
.
Data
.
Add
(
new
Cell
(
index
,
item
.
Item1
,
item
.
Item3
,
item
.
Item4
,
item
.
Item5
,
item
.
Item6
)
{
FieldName
=
item
.
Item1
,
CellType
=
"header"
});
index
+=
1
;
index
+=
1
;
}
}
response
.
Header
.
Add
(
row
);
response
.
Header
.
Add
(
row
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment