using Admin.NET.Core;
|
namespace WCS.Application;
|
|
/// <summary>
|
/// 任务表
|
/// </summary>
|
[SugarTable("WCSTask","任务表")]
|
public class WcsTask : EntityBaseData
|
{
|
/// <summary>
|
/// 任务号
|
/// </summary>
|
[SugarColumn(ColumnName = "TaskNo", ColumnDescription = "任务号", Length = 20)]
|
public string? TaskNo { get; set; }
|
|
/// <summary>
|
/// 任务类型
|
/// </summary>
|
[SugarColumn(ColumnName = "TaskType", ColumnDescription = "任务类型")]
|
public TaskTypeEnum? TaskType { get; set; }
|
|
/// <summary>
|
/// 状态
|
/// </summary>
|
[SugarColumn(ColumnName = "Status", ColumnDescription = "状态")]
|
public TaskStatusEnum? Status { get; set; }
|
|
/// <summary>
|
/// 是否回馈成功
|
/// </summary>
|
[SugarColumn(ColumnName = "IsSuccess", ColumnDescription = "是否回馈成功")]
|
public TaskSuccessEnum? IsSuccess { get; set; }
|
|
/// <summary>
|
/// 异常信息
|
/// </summary>
|
[SugarColumn(ColumnName = "Information", ColumnDescription = "异常信息", Length = 32)]
|
public string? Information { get; set; }
|
|
/// <summary>
|
/// 来源
|
/// </summary>
|
[SugarColumn(ColumnName = "Origin", ColumnDescription = "来源", Length = 20)]
|
public string? Origin { get; set; }
|
|
/// <summary>
|
/// 起始位置
|
/// </summary>
|
[SugarColumn(ColumnName = "StartLocate", ColumnDescription = "起始位置", Length = 20)]
|
public string? StartLocate { get; set; }
|
|
/// <summary>
|
/// 起始巷道
|
/// </summary>
|
[SugarColumn(ColumnName = "StartRoadway", ColumnDescription = "起始巷道", Length = 20)]
|
public string? StartRoadway { get; set; }
|
|
/// <summary>
|
/// 结束位置
|
/// </summary>
|
[SugarColumn(ColumnName = "EndLocate", ColumnDescription = "结束位置", Length = 20)]
|
public string? EndLocate { get; set; }
|
|
/// <summary>
|
/// 目标巷道
|
/// </summary>
|
[SugarColumn(ColumnName = "EndRoadway", ColumnDescription = "目标巷道", Length = 20)]
|
public string? EndRoadway { get; set; }
|
|
/// <summary>
|
/// 托盘号
|
/// </summary>
|
[SugarColumn(ColumnName = "PalletNo", ColumnDescription = "托盘号", Length = 20)]
|
public string? PalletNo { get; set; }
|
|
/// <summary>
|
/// 批次号
|
/// </summary>
|
[SugarColumn(ColumnName = "LotNo", ColumnDescription = "批次号", Length = 20)]
|
public string? LotNo { get; set; }
|
|
/// <summary>
|
/// 供货批次
|
/// </summary>
|
[SugarColumn(ColumnName = "SupplierLot", ColumnDescription = "供货批次", Length = 20)]
|
public string? SupplierLot { get; set; }
|
|
/// <summary>
|
/// 物料编码
|
/// </summary>
|
[SugarColumn(ColumnName = "SkuNo", ColumnDescription = "物料编码", Length = 20)]
|
public string? SkuNo { get; set; }
|
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
[SugarColumn(ColumnName = "SkuName", ColumnDescription = "物料名称", Length = 20)]
|
public string? SkuName { get; set; }
|
|
/// <summary>
|
/// 数量
|
/// </summary>
|
[SugarColumn(ColumnName = "Qty", ColumnDescription = "数量")]
|
public int? Qty { get; set; }
|
|
/// <summary>
|
/// 拆垛数量
|
/// </summary>
|
[SugarColumn(ColumnName = "CompleteQty", ColumnDescription = "拆垛数量")]
|
public int? CompleteQty { get; set; }
|
|
/// <summary>
|
/// 拣货方式
|
/// </summary>
|
[SugarColumn(ColumnName = "UnstackingMode", ColumnDescription = "拣货方式", Length = 10)]
|
public UnstackingModeEnum? UnstackingMode { get; set; }
|
|
/// <summary>
|
/// 取消时间
|
/// </summary>
|
[SugarColumn(ColumnName = "CancelDate", ColumnDescription = "取消时间")]
|
public DateTime? CancelDate { get; set; }
|
|
/// <summary>
|
/// 完成时间
|
/// </summary>
|
[SugarColumn(ColumnName = "FinishDate", ColumnDescription = "完成时间")]
|
public DateTime? FinishDate { get; set; }
|
|
/// <summary>
|
/// 最后写入流程控制字值
|
/// </summary>
|
[SugarColumn(ColumnName = "WcsPosValue", ColumnDescription = "最后写入流程控制字值", Length = 20)]
|
public string? WcsPosValue { get; set; }
|
|
/// <summary>
|
/// 优先级
|
/// </summary>
|
[SugarColumn(ColumnName = "Levels", ColumnDescription = "优先级")]
|
public int? Levels { get; set; }
|
|
}
|