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.

32 lines
845 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 GetProjectFeesReportRequestDto
  8. {
  9. /// <summary>
  10. /// 项目类别ID
  11. /// </summary>
  12. public Guid? ItemTypeId { get; set; }
  13. /// <summary>
  14. /// 组合项目 可以多个
  15. /// </summary>
  16. public List<Guid> Asbitems { get; set; } = new List<Guid>();
  17. /// <summary>
  18. /// 开始日期
  19. /// </summary>
  20. [Required(ErrorMessage = "开始日期不能为空")]
  21. public string StartDate { get; set; }
  22. /// <summary>
  23. /// 结束日期
  24. /// </summary>
  25. [Required(ErrorMessage = "结束日期不能为空")]
  26. public string EndDate { get; set; }
  27. }
  28. }