using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AX.FireTrainingSys.DTOs
{
///
/// 学习记录查询条件。
///
public class StudyRecordQueryOptions : QueryOptions
{
///
/// 用户帐号(身份证号)。
///
[Required]
public string Name { get; set; }
///
/// 开始时间。
///
public DateTimeOffset? StartTime { get; set; }
///
/// 结束时间。
///
public DateTimeOffset? EndTime { get; set; }
///
/// 职务名称。
///
public string PostName { get; set; }
///
/// 目录。
///
public string Catalog { get; set; }
}
}