using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DocumentServiceAPI.Application.ProjectInfo.ViewMode { public class DocumentEmployeeInfoDTO { /// /// 员工ID /// public int EmployeeId { get; set; } /// /// 员工名称 /// public string EmployeeName { get; set; } /// /// 工作职位 /// public string Job { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 是否在工作 /// public int? IsWork { get; set; } /// /// 离开时间 /// public DateTime? LeaveTime { get; set; } /// /// 证件正面 /// public string CardPositive { get; set; } /// /// 证件正面版本号 /// public string CardPositiveVersionNo { get; set; } /// /// 证件正面大小 /// public int? CardPositiveSize { get; set; } /// /// 最后更新时间 /// public DateTime? LastUpdateTime { get; set; } /// /// 最后更新人 /// public string LastUpdateName { get; set; } /// /// 用户名 /// /// /// 用户名 手机号验证 必填 /// [Required] [DataValidation(ValidationTypes.PhoneNumber,ErrorMessage ="员工账户请输入有效的电话号码")] public string UserName { get; set; } /// /// 用户密码 /// public string UserPassWord { get; set; } /// /// 登录时间 /// public DateTime? LoginTime { get; set; } /// /// 是否登录 /// public bool? IsLogin { get; set; } /// /// 建议标志 /// public int? AdviseFlag { get; set; } /// /// 用户ID /// public int? UserId { get; set; } public string IsWorkName { get; set; } public string LeaveTimeName { get; set; } public string BMRID { get; set; } public string BSZZRID { get; set; } public string TBRID { get; set; } } }