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.

35 lines
920 B
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 任务编排流程参数表
///</summary>
[SugarTable("task_flow_param", "任务编排流程参数表")]
public class TaskFlowParam : 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? FieldValue { get; set; }
}
}