using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Dto.Employee; /// /// 获取职员列表(分页). /// [SuppressSniffer] public class EmployeeListOutput { /// /// 主键id. /// public string? id { get; set; } /// /// 工号. /// public string? enCode { get; set; } /// /// 姓名. /// public string? fullName { get; set; } /// /// 性别ID. /// public string? gender { get; set; } /// /// 部门. /// public string? departmentName { get; set; } /// /// 岗位. /// public string? positionName { get; set; } /// /// 用工性质. /// public string? workingNature { get; set; } /// /// 身份证. /// public string? idNumber { get; set; } /// /// 联系电话. /// public string? telephone { get; set; } /// /// 生日. /// public DateTime? birthday { get; set; } /// /// 参加工作时间. /// public DateTime? attendWorkTime { get; set; } /// /// 学历. /// public string? education { get; set; } /// /// 所学专业. /// public string? major { get; set; } /// /// 毕业院校. /// public string? graduationAcademy { get; set; } /// /// 毕业时间. /// public DateTime? graduationTime { get; set; } /// /// 创建时间. /// public DateTime? creatorTime { get; set; } }