You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
986 B

2 years ago
6 months ago
2 years ago
6 months ago
2 years ago
  1. using Shentun.Peis.PeisReports;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Text;
  7. namespace Shentun.Peis.CustomerReports
  8. {
  9. public class GetDiseaseCountStatisticsReportRequestDto
  10. {
  11. /// <summary>
  12. /// 单位相关
  13. /// </summary>
  14. public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
  15. /// <summary>
  16. /// 诊断ID 集合 这里的诊断需要增加一个是否为疾病的条件 前台拉取的数据就需要筛选
  17. /// </summary>
  18. public List<Guid> DiagnosisIds { get; set; } = new List<Guid>();
  19. /// <summary>
  20. /// 完成标志(0 预登记 1正式登记 2部分已检 3已总检) 不传查所有
  21. /// </summary>
  22. public List<char> CompleteFlags { get; set; } = new List<char>();
  23. }
  24. }