using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 任务编排模块表
///
[SugarTable("task_flow_module", "任务编排模块表")]
public class TaskFlowModule : BaseModelV2
{
///
/// 模块名称
///
[SugarColumn(ColumnDescription = "模块名称", IsNullable = true, Length = 64)]
public string? Name { get; set; }
///
/// 所属任务类型
///
[SugarColumn(ColumnDescription = "所属任务类型", IsNullable = true, Length = 255)]
public string? TaskType { get; set; }
///
/// Assembly名称
///
[SugarColumn(ColumnDescription = "Assembly名称", IsNullable = true, Length = 255)]
public string? AssemblyName { get; set; }
///
/// Interface名称
///
[SugarColumn(ColumnDescription = "Interface名称", IsNullable = true, Length = 255)]
public string? InterfaceName { get; set; }
///
/// Method名称
///
[SugarColumn(ColumnDescription = "Method名称", IsNullable = true, Length = 255)]
public string? MethodName { get; set; }
}
}