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
eabaaaf8
Commit
eabaaaf8
authored
Jun 22, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
返回字典修改
parent
65b03bc5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
performance/Performance.Api/Controllers/SecondAllotController.cs
+1
-1
performance/Performance.DtoModels/Second/SecondColumnDictionary.cs
+3
-1
performance/Performance.Services/RedistributionService.cs
+0
-0
No files found.
performance/Performance.Api/Controllers/SecondAllotController.cs
View file @
eabaaaf8
...
@@ -641,7 +641,7 @@ public ApiResponse RedistributionCompute([FromBody] SecondComputeDto request)
...
@@ -641,7 +641,7 @@ public ApiResponse RedistributionCompute([FromBody] SecondComputeDto request)
// 重算顶部医院其他绩效
// 重算顶部医院其他绩效
_redistributionService
.
OverviewCalculate_OtherPerformance
(
request
.
Head
,
cleanDatas
);
_redistributionService
.
OverviewCalculate_OtherPerformance
(
request
.
Head
,
cleanDatas
);
var
dic
=
_redistributionService
.
GetTableHeaderDictionary
(
loads
);
var
dic
=
_redistributionService
.
GetTableHeaderDictionary
(
second
,
loads
);
return
new
ApiResponse
(
ResponseType
.
OK
,
new
{
Head
=
request
.
Head
,
Body
=
cleanDatas
,
Dic
=
dic
});
return
new
ApiResponse
(
ResponseType
.
OK
,
new
{
Head
=
request
.
Head
,
Body
=
cleanDatas
,
Dic
=
dic
});
}
}
...
...
performance/Performance.DtoModels/Second/SecondColumnDictionary.cs
View file @
eabaaaf8
...
@@ -6,17 +6,19 @@ public class SecondColumnDictionary
...
@@ -6,17 +6,19 @@ public class SecondColumnDictionary
public
string
Key
{
get
;
set
;
}
public
string
Key
{
get
;
set
;
}
public
bool
IsTrue
{
get
;
set
;
}
public
bool
IsTrue
{
get
;
set
;
}
public
int
Sort
{
get
;
set
;
}
public
int
Sort
{
get
;
set
;
}
public
string
Site
{
get
;
set
;
}
public
SecondColumnDictionary
()
public
SecondColumnDictionary
()
{
{
}
}
public
SecondColumnDictionary
(
string
label
,
string
key
,
bool
isTrue
,
int
sort
)
public
SecondColumnDictionary
(
string
label
,
string
key
,
bool
isTrue
,
int
sort
,
string
site
=
"Table"
)
{
{
Label
=
label
;
Label
=
label
;
Key
=
key
;
Key
=
key
;
IsTrue
=
isTrue
;
IsTrue
=
isTrue
;
Sort
=
sort
;
Sort
=
sort
;
Site
=
site
;
}
}
}
}
}
}
performance/Performance.Services/RedistributionService.cs
View file @
eabaaaf8
This diff is collapsed.
Click to expand it.
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