10 changed files with 388 additions and 62 deletions
-
70src/Shentun.Peis.Application.Contracts/CustomerOrgGroups/CustomerOrgGroupForPatientRegisterDto.cs
-
11src/Shentun.Peis.Application.Contracts/Patients/PatientIdInputDto.cs
-
12src/Shentun.Peis.Application.Contracts/Patients/PatientWithAsbitemIdInputDto.cs
-
1src/Shentun.Peis.Application.Contracts/SumSummaryReports/HorizontalComparisonAsbitemListDto.cs
-
2src/Shentun.Peis.Application.Contracts/SumSummaryReports/SumSummaryReportDetailResultDto.cs
-
46src/Shentun.Peis.Application.Contracts/SumSummaryReports/SumSummaryReportHorizontalComparisonDto.cs
-
43src/Shentun.Peis.Application/CustomerOrgGroups/CustomerOrgGroupAppService.cs
-
14src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs
-
175src/Shentun.Peis.Application/SumSummaryReports/SumSummaryReportAppService.cs
-
52test/Shentun.Peis.Application.Tests/SumSummaryReportAppServiceTest.cs
@ -0,0 +1,70 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.CustomerOrgGroups |
|||
{ |
|||
public class CustomerOrgGroupForPatientRegisterDto |
|||
{ |
|||
public Guid Id { get; set; } |
|||
/// <summary>
|
|||
/// 分组名称
|
|||
/// </summary>
|
|||
public string DisplayName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 价格
|
|||
/// </summary>
|
|||
public decimal Price { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用性别
|
|||
/// </summary>
|
|||
public char ForSexId { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用婚姻状况
|
|||
/// </summary>
|
|||
public char MaritalStatusId { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用年龄下限
|
|||
/// </summary>
|
|||
public short AgeLowerLimit { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用年龄上限
|
|||
/// </summary>
|
|||
public short AgeUpperLimit { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用职务
|
|||
/// </summary>
|
|||
public string? JobPost { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用职称
|
|||
/// </summary>
|
|||
public string? JobTitle { get; set; } |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
/// <summary>
|
|||
/// 显示顺序
|
|||
/// </summary>
|
|||
public int DisplayOrder { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 体检次数ID
|
|||
/// </summary>
|
|||
public Guid CustomerOrgRegisterId { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.Patients |
|||
{ |
|||
public class PatientIdInputDto |
|||
{ |
|||
public Guid PatientId { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.Patients |
|||
{ |
|||
public class PatientWithAsbitemIdInputDto |
|||
{ |
|||
public Guid PatientId { get; set; } |
|||
public Guid AsbitemId { get; set;} |
|||
} |
|||
} |
|||
@ -0,0 +1,46 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.SumSummaryReports |
|||
{ |
|||
public class SumSummaryReportHorizontalComparisonDto |
|||
{ |
|||
public Guid RegsterCheckId { get; set; } |
|||
public DateTime CheckDate { get; set; } |
|||
public List<SumSummaryReportHorizontalComparisonWithCheckSummaryDto> Summarys { get; set; } |
|||
public List<SumSummaryReportHorizontalComparisonWithCheckItemResultDto> RegisterCheckItems { get; set; } |
|||
} |
|||
|
|||
public class SumSummaryReportHorizontalComparisonWithCheckSummaryDto |
|||
{ |
|||
public string Summary { get; set; } |
|||
} |
|||
|
|||
public class SumSummaryReportHorizontalComparisonWithCheckItemResultDto |
|||
{ |
|||
/// 项目名字
|
|||
/// </summary>
|
|||
public string ItemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 单位
|
|||
/// </summary>
|
|||
public string UnitName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 参考范围
|
|||
/// </summary>
|
|||
public string ReferenceRangeValue { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 检查结果
|
|||
/// </summary>
|
|||
public string ResultValue { get; set; } |
|||
/// <summary>
|
|||
/// 报告字体色
|
|||
/// </summary>
|
|||
|
|||
public int ReportFontColor { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue