using Edu.Common.Enum.User; using Edu.Model.Entity.User; using System; using System.Collections.Generic; using VT.FW.DB; namespace Edu.Model.ViewModel.User { /// /// Rb_workdayseting Entity Model /// [Serializable] [DB(ConnectionName = "DefaultConnection")] public class Rb_Workflow_Condition_Extend : Rb_Workflow_Condition { /// /// 审批人列表 /// public List AuditList { get; set; } /// /// 抄送人列表 /// public List AuditUserList { get; set; } /// /// 模版的类型 1请假 2出差 3 外出 4 补卡 /// public int TemplateType { get; set; } /// /// 模版名称 /// public string TemplateTypeName { get; set; } /// /// 条件的描述 /// public string Description { get; set; } /// /// 请假类型列表 /// public List aftList { get; set; } /// /// 分条件排序列表 /// public List ConditionSortList { get; set; } } /// /// 请假类型列表 /// public class AskforleaveTypeList { /// /// id /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 是否勾选 1勾选 0未勾选 /// public int Is_show { get; set; } } /// /// 条件列表排序 /// public class WorkflowConditionSortList { /// /// 条件id /// public int ConditionId { get; set; } /// /// 排序(优先级 0排除默认 从小到大依次优先级越高) /// public int Sort { get; set; } } }