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.

31 lines
887 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace Shentun.Peis.CustomerReports
  6. {
  7. public class GetCustomerOrgPhysicalExaminationStatisticsInputDto
  8. {
  9. public List<Guid> CustomerOrgIds { get; set; }
  10. /// <summary>
  11. /// 日期类型(1、登记日期 2、体检日期 3、总检日期)
  12. /// </summary>
  13. [Required(ErrorMessage = "日期类型不能为空")]
  14. public char DateType { get; set; }
  15. /// <summary>
  16. /// 开始日期
  17. /// </summary>
  18. [Required(ErrorMessage = "开始日期不能为空")]
  19. public string StartDate { get; set; }
  20. /// <summary>
  21. /// 结束日期
  22. /// </summary>
  23. [Required(ErrorMessage = "结束日期不能为空")]
  24. public string EndDate { get; set; }
  25. }
  26. }