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
61d57ce8
Commit
61d57ce8
authored
Jul 09, 2019
by
799284587@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口清单
parent
466eb8a9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
85 additions
and
5 deletions
+85
-5
performance/Performance.Api/Controllers/ReportController.cs
+85
-5
No files found.
performance/Performance.Api/Controllers/ReportController.cs
View file @
61d57ce8
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Threading.Tasks
;
using
FluentValidation.AspNetCore
;
using
FluentValidation.AspNetCore
;
using
Microsoft.AspNetCore.Mvc
;
using
Performance.DtoModels
;
using
Performance.Services
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Threading.Tasks
;
namespace
Performance.Api.Controllers
{
...
...
@@ -19,6 +19,86 @@ public ReportController(ReportService reportService)
}
/// <summary>
/// 首页数据概况
/// </summary>
/// <returns></returns>
[
Route
(
"survey"
)]
public
ApiResponse
Survey
()
{
//拿最新有效的绩效年月
//hos_personfee 门诊患者均次 住院患者均次
//res_baiscnorm 全部拿出来
//xxxx年 xx月 数组
throw
new
NotImplementedException
();
}
/// <summary>
/// 科室医生人均绩效(含科主任)
/// </summary>
/// <returns></returns>
[
Route
(
"doctoravg"
)]
public
ApiResponse
DoctorAvg
()
{
// res_accountdoctor 人数 所有有效绩效 (6,8)
throw
new
NotImplementedException
();
}
/// <summary>
/// 科室护士人均绩效(含护士长)
/// </summary>
/// <returns></returns>
[
Route
(
"nurseavg"
)]
public
ApiResponse
NurseAvg
()
{
// res_accountnurse 人数 所有有效绩效 (6,8)
throw
new
NotImplementedException
();
}
/// <summary>
/// 门诊患者均次费用
/// </summary>
/// <returns></returns>
[
Route
(
"outfeeavg"
)]
public
ApiResponse
OutFeeAvg
()
{
throw
new
NotImplementedException
();
}
/// <summary>
/// 住院患者均次费用
/// </summary>
/// <returns></returns>
[
Route
(
"inpatfeeavg"
)]
public
ApiResponse
InpatFeeAvg
()
{
throw
new
NotImplementedException
();
}
/// <summary>
/// 科室药占比
/// </summary>
/// <returns></returns>
[
Route
(
"medicine"
)]
public
ApiResponse
Medicine
()
{
throw
new
NotImplementedException
();
}
/// <summary>
/// 科室有效收入占比
/// </summary>
/// <returns></returns>
[
Route
(
"income"
)]
public
ApiResponse
Income
()
{
throw
new
NotImplementedException
();
}
/// <summary>
/// 月群体人均绩效
/// </summary>
/// <param name="request"></param>
...
...
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