namespace MDM.Model.Process { /// /// 控制策略字典 /// [SugarTable("process_control_strategy_dict", "控制策略字典")] public class ProcessControlStrategyDict { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "strategy_id")] public int StrategyId { get; set; } /// /// 策略code /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "strategy_code",Length =50)] public string StrategyCode { get; set; } /// /// 策略名称 /// [SugarColumn(ColumnName = "strategy_name", Length = 50)] public string StrategyName { get; set; } /// /// 描述 /// [SugarColumn( Length = 50)] public string Description { get; set; } /// /// 是否启动 /// [SugarColumn(ColumnName = "is_active")] public int? IsActive { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY", Length = 50)] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY", Length = 50)] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }