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.

37 lines
963 B

2 years ago
  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 GetPersonalFeeDetailsReportInFeeDetailsRequestDto
  8. {
  9. /// <summary>
  10. /// 收费员ID 集合
  11. /// </summary>
  12. public List<Guid> UserIds { get; set; } = new List<Guid>();
  13. /// <summary>
  14. /// 档案号
  15. /// </summary>
  16. public string PatientNo { get; set; }
  17. /// <summary>
  18. /// 姓名
  19. /// </summary>
  20. public string PatientName { get; set; }
  21. /// <summary>
  22. /// 开始日期
  23. /// </summary>
  24. [Required(ErrorMessage = "开始日期不能为空")]
  25. public string StartDate { get; set; }
  26. /// <summary>
  27. /// 结束日期
  28. /// </summary>
  29. [Required(ErrorMessage = "结束日期不能为空")]
  30. public string EndDate { get; set; }
  31. }
  32. }