using DS.WMS.Core.TaskInteraction.Entity; using SqlSugar; namespace DS.WMS.Core.TaskInteraction.Dtos { /// /// 任务步骤 /// public class TaskStepDto { /// /// 步骤类型 /// [SugarColumn(ColumnDescription = "明细类型")] public StepType Type { get; set; } /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 50, IsNullable = true)] public string? Name { get; set; } /// /// 值 /// [SugarColumn(ColumnDescription = "值", IsNullable = true)] public object? Value { get; set; } /// /// 是否已完成 /// [SugarColumn(ColumnDescription = "是否已完成")] public bool IsCompleted { get; set; } } }