using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hotline.Share.Dtos.Snapshot; /// /// 随手拍统计输出Dto /// public class SnapshotStatisticsOutDto { /// /// 随手拍来件数 /// public int SuiShouPaiLaiJianShu { get; set; } } /// /// 随手拍统计输入Dto /// public class SnapshotStatisticsInDto { /// /// 开始时间 /// [Required] public DateTime StartTime { get; set; } /// /// 结束时间 /// [Required] public DateTime EndTime { get; set; } } public class StatisticsDto { }