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.
39 lines
1.2 KiB
C#
39 lines
1.2 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>
|
|
/// 条件字段名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "条件字段名称", IsNullable = true, Length = 255)]
|
|
public string? FieldName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 符合条件情况下字段的值
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "符合条件情况下字段的值", IsNullable = true, Length = 255)]
|
|
public string? MatchValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 匹配类型 1=完全相等 2=包含 3=起始 4=结尾
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "匹配类型 1=完全相等 2=包含 3=起始 4=结尾", IsNullable = false)]
|
|
public int MatchType { get; set; }
|
|
}
|
|
|
|
} |