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
705 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 GetSummaryOfDepartmentalFeesReportRequestDto
  8. {
  9. /// <summary>
  10. /// 项目类别ID
  11. /// </summary>
  12. public Guid? ItemTypeId { get; set; }
  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. }