namespace MES_Model.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")] public string StrategyCode { get; set; } /// /// 策略名称 /// [SugarColumn(ColumnName = "strategy_name")] public string StrategyName { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 是否启动 /// [SugarColumn(ColumnName = "is_active")] public int? IsActive { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }