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.

40 lines
984 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.CustomerReports
  5. {
  6. public class CustomerOrgInputDto
  7. {
  8. /// <summary>
  9. /// 单位ID 需要包含查出子级ID
  10. /// </summary>
  11. public Guid CustomerOrgId { get; set; }
  12. /// <summary>
  13. /// 单位体检次数ID
  14. /// </summary>
  15. public Guid CustomerOrgRegisterId { get; set; }
  16. /// <summary>
  17. ///
  18. /// </summary>
  19. public List<Guid> CustomerOrgGroupId { get; set; } = new List<Guid>();
  20. /// <summary>
  21. /// 日期类型(1、登记日期 2、体检日期 3、总检日期)
  22. /// </summary>
  23. public char DateType { get; set; }
  24. /// <summary>
  25. /// 开始日期
  26. /// </summary>
  27. public string StartDate { get; set; }
  28. /// <summary>
  29. /// 结束日期
  30. /// </summary>
  31. public string EndDate { get; set; }
  32. }
  33. }