StatisticsDto.cs 784 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Hotline.Share.Dtos.Snapshot;
  8. /// <summary>
  9. /// 随手拍统计输出Dto
  10. /// </summary>
  11. public class SnapshotStatisticsOutDto
  12. {
  13. /// <summary>
  14. /// 随手拍来件数
  15. /// </summary>
  16. public int SuiShouPaiLaiJianShu { get; set; }
  17. }
  18. /// <summary>
  19. /// 随手拍统计输入Dto
  20. /// </summary>
  21. public class SnapshotStatisticsInDto
  22. {
  23. /// <summary>
  24. /// 开始时间
  25. /// </summary>
  26. [Required]
  27. public DateTime StartTime { get; set; }
  28. /// <summary>
  29. /// 结束时间
  30. /// </summary>
  31. [Required]
  32. public DateTime EndTime { get; set; }
  33. }
  34. public class StatisticsDto
  35. {
  36. }