4 changed files with 214 additions and 2 deletions
-
61src/Shentun.Peis.Application.Contracts/CustomerReports/GetSummaryOfUnitCostsReportDto.cs
-
24src/Shentun.Peis.Application.Contracts/CustomerReports/GetSummaryOfUnitCostsReportInputDto.cs
-
127src/Shentun.Peis.Application/CustomerReports/CustomerReportAppService.cs
-
4src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs
@ -0,0 +1,61 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.CustomerReports |
||||
|
{ |
||||
|
public class GetSummaryOfUnitCostsReportDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 单位名称
|
||||
|
/// </summary>
|
||||
|
public string CustomerOrgName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 体检开始日期
|
||||
|
/// </summary>
|
||||
|
public string MedicalStartDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 登记人数
|
||||
|
/// </summary>
|
||||
|
public int RegisterCount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实检人数 有一项检查就算
|
||||
|
/// </summary>
|
||||
|
public int CheckCount { get; set;} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 登记总金额 标准价
|
||||
|
/// </summary>
|
||||
|
public decimal RegisterStandardAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 登记折后总金额 实收价
|
||||
|
/// </summary>
|
||||
|
public decimal RegisterChargeAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实检总金额 有一项检查就算 标准价
|
||||
|
/// </summary>
|
||||
|
public decimal CheckStandardAmount { get; set; } |
||||
|
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实检折后总金额 实收价
|
||||
|
/// </summary>
|
||||
|
public decimal CheckChargeAmount { get; set; } |
||||
|
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实检项目金额 标准价
|
||||
|
/// </summary>
|
||||
|
public decimal CheckItemStandardAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实检项目折后总金额 实收价
|
||||
|
/// </summary>
|
||||
|
public decimal CheckItemChargeAmount { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.CustomerReports |
||||
|
{ |
||||
|
public class GetSummaryOfUnitCostsReportInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 开始日期
|
||||
|
/// </summary>
|
||||
|
public string StartDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 结束日期
|
||||
|
/// </summary>
|
||||
|
public string EndDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 单位ID集合
|
||||
|
/// </summary>
|
||||
|
public List<Guid> CustomerOrgIds { get; set; } = new List<Guid>(); |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue