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.

27 lines
731 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 GetTollCollectorFeeReportInAsbitemRequestDto
  8. {
  9. /// <summary>
  10. /// 收费员ID 集合
  11. /// </summary>
  12. public List<Guid> UserIds { get; set; } = new List<Guid>();
  13. /// <summary>
  14. /// 开始日期
  15. /// </summary>
  16. [Required(ErrorMessage = "开始日期不能为空")]
  17. public string StartDate { get; set; }
  18. /// <summary>
  19. /// 结束日期
  20. /// </summary>
  21. [Required(ErrorMessage = "结束日期不能为空")]
  22. public string EndDate { get; set; }
  23. }
  24. }