7 changed files with 255 additions and 2 deletions
-
26src/Shentun.Peis.Application.Contracts/CardRegisters/CardRegisterRechargeDto.cs
-
44src/Shentun.Peis.Application.Contracts/InternalReports/GetDoctorPersonnelWorkLoadReportDto.cs
-
25src/Shentun.Peis.Application.Contracts/InternalReports/GetDoctorPersonnelWorkLoadReportRequestDto.cs
-
24src/Shentun.Peis.Application.Contracts/InternalReports/GetSumCheckDoctorWorkLoadReportDto.cs
-
24src/Shentun.Peis.Application.Contracts/InternalReports/GetSumCheckDoctorWorkLoadReportRequestDto.cs
-
42src/Shentun.Peis.Application/CardRegisters/CardRegisterAppService.cs
-
72src/Shentun.Peis.Application/InternalReports/InternalReportAppService.cs
@ -0,0 +1,26 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.CardRegisters |
|||
{ |
|||
public class CardRegisterRechargeDto |
|||
{ |
|||
/// <summary>
|
|||
/// 会员卡ID
|
|||
/// </summary>
|
|||
public Guid CardRegisterId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 支付方式
|
|||
/// </summary>
|
|||
public string PayModeId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 充值金额
|
|||
/// </summary>
|
|||
public decimal RechargeAmount { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,44 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.InternalReports |
|||
{ |
|||
public class GetDoctorPersonnelWorkLoadReportDto |
|||
{ |
|||
/// <summary>
|
|||
/// 医生名称
|
|||
/// </summary>
|
|||
public string DoctorName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目名称
|
|||
/// </summary>
|
|||
public string AsbitemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 检查人数
|
|||
/// </summary>
|
|||
public int CheckCount { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 标准均价
|
|||
/// </summary>
|
|||
public decimal AvgStandardPrice { get; set; } |
|||
/// <summary>
|
|||
/// 实收均价
|
|||
/// </summary>
|
|||
public decimal AvgChargePrice { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 标准价格总金额
|
|||
/// </summary>
|
|||
public decimal SumStandardPrice { get; set; } |
|||
/// <summary>
|
|||
/// 实收价格总金额
|
|||
/// </summary>
|
|||
public decimal SumChargePrice { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.InternalReports |
|||
{ |
|||
|
|||
public class GetDoctorPersonnelWorkLoadReportRequestDto |
|||
{ |
|||
/// <summary>
|
|||
/// 医生ID 集合
|
|||
/// </summary>
|
|||
public List<Guid> UserIds { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 开始检查日期
|
|||
/// </summary>
|
|||
public string StartDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 结束检查日期
|
|||
/// </summary>
|
|||
public string EndDate { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.InternalReports |
|||
{ |
|||
public class GetSumCheckDoctorWorkLoadReportDto |
|||
{ |
|||
/// <summary>
|
|||
/// 人员名称
|
|||
/// </summary>
|
|||
public string PersonnelName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 登记数量
|
|||
/// </summary>
|
|||
public int RegisterCount { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 占百分比
|
|||
/// </summary>
|
|||
public string Percentage { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.InternalReports |
|||
{ |
|||
public class GetSumCheckDoctorWorkLoadReportRequestDto |
|||
{ |
|||
/// <summary>
|
|||
/// 总检医生ID 集合
|
|||
/// </summary>
|
|||
public List<Guid> UserIds { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 开始登记日期
|
|||
/// </summary>
|
|||
public string StartDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 结束登记日期
|
|||
/// </summary>
|
|||
public string EndDate { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue