using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务编排流程表 /// [SugarTable("task_flow_config", "任务编排流程表")] public class TaskFlowConfig : BaseModel { /// /// 流程名称 /// [SugarColumn(ColumnDescription = "流程名称", IsNullable = true , Length = 64 ) ] public string? Name { get; set; } /// /// 所属任务类型 /// [SugarColumn(ColumnDescription = "所属任务类型", IsNullable = true , Length = 255 ) ] public string? TaskType { get; set; } /// /// 是否为主入口流程 /// [SugarColumn(ColumnDescription = "是否为主入口流程", IsNullable = false , Length = 1 ) ] public bool IsMain { get; set; } /// /// 执行模块主键 /// [SugarColumn(ColumnDescription = "执行模块主键", IsNullable = true ) ] public long? ExecuteModuleId { get; set; } /// /// 下一执行流程主键 /// [SugarColumn(ColumnDescription = "下一执行流程主键", IsNullable = true ) ] public long? NextExecuteConfigId { get; set; } /// /// 发生异常时是否继续执行 /// [SugarColumn(ColumnDescription = "发生异常时是否继续执行", IsNullable = false , Length = 1 ) ] public bool ExceptionContinue { get; set; } } }