Commit 58ae6925 by ruyun.zhang

科室详情接口定义

parent a7bd8716
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
using Performance.DtoModels.Request; using Performance.DtoModels.Request;
using Performance.EntityModels; using Performance.EntityModels;
using Performance.Services; using Performance.Services;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
...@@ -165,6 +166,63 @@ public ApiResponse<List<DeptResponse>> GetAdminPerformance([FromBody] ComputerRe ...@@ -165,6 +166,63 @@ public ApiResponse<List<DeptResponse>> GetAdminPerformance([FromBody] ComputerRe
return new ApiResponse<List<DeptResponse>>(ResponseType.OK, "ok", list); return new ApiResponse<List<DeptResponse>>(ResponseType.OK, "ok", list);
} }
/// <summary>
/// 科室绩效详情
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[Route("unite/deptdetail")]
[HttpPost]
public ApiResponse UniteDeptDetail([FromBody] DeptDetailRequest request)
{
/*
[
{
"type":"1",
"title":"护理组工作量绩效测算表",
"items":[
{
"项目":"柳州市医保工作量(48H以上)",
"数量":"123",
"系数":"40",
"工作量倾斜":"1",
"金额":"23423"
}
]
},
{
"type":"1",
"title":"护理组工作量绩效测算表",
"items":[
{
"项目":"柳州市医保工作量(48H以上)",
"数量":"123",
"系数":"40",
"工作量倾斜":"1",
"金额":"23423"
}
]
},
{
"type":"1",
"title":"护理组工作量绩效测算表",
"items":[
{
"项目":"柳州市医保工作量(48H以上)",
"数量":"123",
"系数":"40",
"工作量倾斜":"1",
"金额":"23423"
}
]
}
]
*/
throw new NotImplementedException();
}
/// <summary> /// <summary>
/// 科室绩效详情 /// 科室绩效详情
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment