using System; using System.Collections.Generic; #nullable disable namespace DTO { /// /// 签到管理 /// public partial class AdmSignInDTO { public string Id { get; set; } public string UserId { get; set; } public DateTime SgninDate { get; set; } public DateTime? MorningIn { get; set; } public DateTime? MorningOut { get; set; } public DateTime? AfternoonIn { get; set; } public DateTime? AfternoonOut { get; set; } public DateTime? OvertimeIn { get; set; } public DateTime? OvertimeOut { get; set; } public string RecStatus { get; set; } public string Creater { get; set; } public DateTime Createtime { get; set; } public string Modifier { get; set; } public DateTime Modifytime { get; set; } } public partial class SigninListDTO { public string Id { get; set; } public string UserId { get; set; } public string UserName { get; set; } public string DeptName { get; set; } public string UserDept { get; set; } public string SgninDate { get; set; } public string Afternoon { get; set; } public string Morning { get; set; } public string Overtime { get; set; } } public partial class AdmSignInDTOSearch : SearchEntity { public string userId { get; set; } public int Year { get; set; } public int Month { get; set; } } /// /// 请假 /// public partial class AdmAskLeaveDTO { public string Id { get; set; } public string SigninId { get; set; } public string Lavetype { get; set; } public DateTime StratTime { get; set; } public DateTime EndTime { get; set; } public int LaveDay { get; set; } public int LavehHour { get; set; } public string Remark { get; set; } public string RecStatus { get; set; } public string Creater { get; set; } public DateTime Createtime { get; set; } public string Modifier { get; set; } public DateTime Modifytime { get; set; } } /// /// 销假 /// public partial class AdmAskLeaveOffDTO { public string Id { get; set; } public string SigninId { get; set; } public string Lavetype { get; set; } public DateTime StratTime { get; set; } public DateTime EndTime { get; set; } public string MedicalRecord { get; set; } public string Remark { get; set; } public string RecStatus { get; set; } public string Creater { get; set; } public DateTime Createtime { get; set; } public string Modifier { get; set; } public DateTime Modifytime { get; set; } public string[] attachmentid { get; set; } public string[] Filepath { get; set; } public string[] Filefullname { get; set; } } }