| | |
| | | public class WcsCheckTask : EntityBaseData |
| | | { |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "TaskNo", ColumnDescription = "任务号", Length = 20)] |
| | | public string? TaskNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// WMS下发单号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "OrderNo", ColumnDescription = "WMS下发单号", Length = 20)] |
| | | public string? OrderNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 机器人类型 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RoboatType", ColumnDescription = "机器人类型", Length = 5)] |
| | | public PLCTypeEnum? RoboatType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 机器人编号 |
| | | /// </summary> |
| | |
| | | /// <summary> |
| | | /// 分拣线编号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LineNO", ColumnDescription = "分拣线编号", Length = 5)] |
| | | public string? LineNO { get; set; } |
| | | [SugarColumn(ColumnName = "LineNo", ColumnDescription = "分拣线编号", Length = 5)] |
| | | public string? LineNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 码盘工位号 |
| | |
| | | public string? Port { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 批次号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LotNo", ColumnDescription = "批次号", Length = 50)] |
| | | public string? LotNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料编码 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "SkuNo", ColumnDescription = "物料编码", Length = 20)] |
| | | public string? SkuNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "SkuName", ColumnDescription = "物料名称", Length = 50)] |
| | | public string? SkuName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 规格 |
| | |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "Status", ColumnDescription = "工位绑定状态", Length = 2)] |
| | | public string? Status { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// DB区域 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "DbNumber", ColumnDescription = "DB区域", Length = 10)] |
| | | public string DbNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 抓箱品种偏移量 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PlcPos", ColumnDescription = "抓箱品种偏移量", Length = 10)] |
| | | public string PlcPos { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流程字类型 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PosType", ColumnDescription = "流程字类型")] |
| | | public PLCDataTypeEnum PosType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 批次偏移量 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PosLot", ColumnDescription = "批次偏移量", Length = 10)] |
| | | public string PosLot { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 批次流程字类型 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PosTypeLot", ColumnDescription = "批次流程字类型")] |
| | | public PLCDataTypeEnum PosTypeLot { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 品种号 |
| | | /// </summary> |
| | |
| | | /// <summary> |
| | | /// 插码数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "BoxInsert", ColumnDescription = "插码数量", Length = 20)] |
| | | public string? BoxInsert { get; set; } |
| | | [SugarColumn(ColumnName = "BoxInsert", ColumnDescription = "插码数量")] |
| | | public int? BoxInsert { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 托盘上箱数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "BoxCount", ColumnDescription = "托盘上箱数量", Length = 20)] |
| | | public string? BoxCount { get; set; } |
| | | [SugarColumn(ColumnName = "BoxCount", ColumnDescription = "托盘上箱数量")] |
| | | public int? BoxCount { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 总箱数/计划箱数/预估箱数 |
| | |
| | | public DateTime? BindTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 绑定人 |
| | | /// 绑定者Id |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "BindUser", ColumnDescription = "绑定人")] |
| | | public int? BindUser { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建人 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CreateUser", ColumnDescription = "创建人")] |
| | | public int? CreateUser { get; set; } |
| | | [SugarColumn(ColumnName = "BindUserId", ColumnDescription = "绑定者Id")] |
| | | public long? BindUserId { get; set; } |
| | | |
| | | } |