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.

22 lines
598 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace Shentun.Peis.ChargeReports
  6. {
  7. public class GetSummaryOfPhysicalExaminationPersonnelReportRequestDto
  8. {
  9. /// <summary>
  10. /// 开始日期
  11. /// </summary>
  12. [Required(ErrorMessage = "开始日期不能为空")]
  13. public string StartDate { get; set; }
  14. /// <summary>
  15. /// 结束日期
  16. /// </summary>
  17. [Required(ErrorMessage = "结束日期不能为空")]
  18. public string EndDate { get; set; }
  19. }
  20. }