You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务编排流程条件表
|
|
///</summary>
|
|
[SugarTable("task_flow_condition", "任务编排流程条件表")]
|
|
public class TaskFlowCondition : BaseModelV2<long>
|
|
{
|
|
/// <summary>
|
|
/// 流程主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "流程主键", IsNullable = false)]
|
|
public long ConfigId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条件类型 1=用于匹配要执行的流程 2=用于判断流程内部要执行的节点
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "条件类型 1=用于匹配要执行的流程 2=用于判断流程内部要执行的节点", IsNullable = false)]
|
|
public int Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条件表达式
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "条件表达式", IsNullable = false, ColumnDataType = "text")]
|
|
public string? Content { get; set; }
|
|
}
|
|
|
|
} |