using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys; /// /// 请假申请 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2018-01-23 . /// [SugarTable("WFORM_LEAVEAPPLY")] [Tenant(ClaimConst.TENANTID)] public class LeaveApplyEntity : EntityBase { /// /// 流程主键. /// [SugarColumn(ColumnName = "F_FLOWID")] public string FlowId { get; set; } /// /// 流程标题. /// [SugarColumn(ColumnName = "F_FLOWTITLE")] public string FlowTitle { get; set; } /// /// 紧急程度. /// [SugarColumn(ColumnName = "F_FLOWURGENT")] public int? FlowUrgent { get; set; } /// /// 单据编码. /// [SugarColumn(ColumnName = "F_BILLNO")] public string BillNo { get; set; } /// /// 申请人员. /// [SugarColumn(ColumnName = "F_APPLYUSER")] public string ApplyUser { get; set; } /// /// 申请日期. /// [SugarColumn(ColumnName = "F_APPLYDATE")] public DateTime? ApplyDate { get; set; } /// /// 申请部门. /// [SugarColumn(ColumnName = "F_APPLYDEPT")] public string ApplyDept { get; set; } /// /// 申请职位. /// [SugarColumn(ColumnName = "F_APPLYPOST")] public string ApplyPost { get; set; } /// /// 请假类别. /// [SugarColumn(ColumnName = "F_LEAVETYPE")] public string LeaveType { get; set; } /// /// 请假原因. /// [SugarColumn(ColumnName = "F_LEAVEREASON")] public string LeaveReason { get; set; } /// /// 请假时间. /// [SugarColumn(ColumnName = "F_LEAVESTARTTIME")] public DateTime? LeaveStartTime { get; set; } /// /// 结束时间. /// [SugarColumn(ColumnName = "F_LEAVEENDTIME")] public DateTime? LeaveEndTime { get; set; } /// /// 请假天数. /// [SugarColumn(ColumnName = "F_LEAVEDAYCOUNT")] public string LeaveDayCount { get; set; } /// /// 请假小时. /// [SugarColumn(ColumnName = "F_LEAVEHOUR")] public string LeaveHour { get; set; } /// /// 相关附件. /// [SugarColumn(ColumnName = "F_FILEJSON")] public string FileJson { get; set; } /// /// 备注. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } }