using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace AX.FireTrainingSys.DTOs { /// /// 学习统计查询条件。 /// public class StudyStatisticsQueryOptions { /// /// 用户帐号(身份证号)。 /// [Required] public string Name { get; set; } /// /// 开始时间。 /// public DateTimeOffset? StartTime { get; set; } /// /// 结束时间。 /// public DateTimeOffset? EndTime { get; set; } } }