DateTimeParam.cs 456 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace YiSha.Model.Param
  7. {
  8. public class DateTimeParam
  9. {
  10. /// <summary>
  11. /// 搜索条件开始时间
  12. /// </summary>
  13. public DateTime? StartTime { get; set; }
  14. /// <summary>
  15. /// 搜索条件结束时间
  16. /// </summary>
  17. public DateTime? EndTime { get; set; }
  18. }
  19. }