Commit 61d57ce8 by 799284587@qq.com

接口清单

parent 466eb8a9
using System; using FluentValidation.AspNetCore;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using FluentValidation.AspNetCore;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Performance.DtoModels; using Performance.DtoModels;
using Performance.Services; using Performance.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Performance.Api.Controllers namespace Performance.Api.Controllers
{ {
...@@ -19,6 +19,86 @@ public ReportController(ReportService reportService) ...@@ -19,6 +19,86 @@ public ReportController(ReportService reportService)
} }
/// <summary> /// <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> /// </summary>
/// <param name="request"></param> /// <param name="request"></param>
......
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