using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 任务编排流程条件表
///
[SugarTable("task_flow_condition", "任务编排流程条件表")]
public class TaskFlowCondition : BaseModelV2
{
///
/// 流程主键
///
[SugarColumn(ColumnDescription = "流程主键", IsNullable = false)]
public long ConfigId { get; set; }
///
/// 条件类型 1=用于匹配要执行的流程 2=用于判断流程内部要执行的节点
///
[SugarColumn(ColumnDescription = "条件类型 1=用于匹配要执行的流程 2=用于判断流程内部要执行的节点", IsNullable = false)]
public int Type { get; set; }
///
/// 条件表达式
///
[SugarColumn(ColumnDescription = "条件表达式", IsNullable = false, ColumnDataType = "text")]
public string? Content { get; set; }
}
}