ProjectCountDayPageInput.cs 723 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. #region <<版本注释>>
  7. /* ---------------------------
  8. * 版权所有 (c) 2023 Frank 保留所有权利。
  9. * CLR版本:4.0.30319.42000
  10. * 机器名称:FRANK-WIN
  11. * 命名空间:ZhonTai.Admin.Services.DiTuiAPI.Dto
  12. * 唯一标识:10119964-ad03-4991-a515-4344e9a5d92c
  13. *
  14. * 创建者:Frank
  15. * 电子邮箱: cfrank227@gmail.com
  16. * 创建时间:2023/5/18 10:22:57
  17. --------------------------*/
  18. #endregion <<版本注释>>
  19. namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
  20. {
  21. public class ProjectCountDayPageInput
  22. {
  23. public long ProjectId { get; set; }
  24. public string Date { get; set; }
  25. }
  26. }