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.

45 lines
1.3 KiB
C#

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