| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 物料回报数据模型 |
| | | /// </summary> |
| | | public partial class MesItemBackModel |
| | | { |
| | | /// <summary> |
| | | /// 到货时间 |
| | | /// </summary> |
| | | [JsonProperty("arricalTime")] |
| | | public string ArricalTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 库位编号 |
| | | /// </summary> |
| | | [JsonProperty("locationNum")] |
| | | public string LocationNum { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | [JsonProperty("result")] |
| | | public string Result { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// mes任务号 |
| | | /// </summary> |
| | | [JsonProperty("taskNumber")] |
| | | public string TaskNumber { get; set; } |
| | | /// <summary> |
| | | ///Wms任务号 |
| | | /// </summary> |
| | | [JsonProperty("wmsTaskNumber")] |
| | | public string WmsTaskNumber { get; set; } |
| | | |
| | | [JsonProperty("list")] |
| | | public List<MesItemBackInfoModel> List { get; set; } |
| | | |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 物料到位回报明细 |
| | | /// </summary> |
| | | public partial class MesItemBackInfoModel |
| | | { |
| | | /// <summary> |
| | | /// 子库 |
| | | /// </summary> |
| | | [JsonProperty("subpool")] |
| | | public string Subpool { get; set; } |
| | | /// <summary> |
| | | /// wms |
| | | /// </summary> |
| | | [JsonProperty("wmsLot")] |
| | | public string WmsLot { get; set; } |
| | | /// <summary> |
| | | /// 收获批次 |
| | | /// </summary> |
| | | [JsonProperty("receiveLot")] |
| | | public string ReceiveLot { get; set; } |
| | | /// <summary> |
| | | /// 重量 |
| | | /// </summary> |
| | | [JsonProperty("qty")] |
| | | public string Qty { get; set; } |
| | | /// <summary> |
| | | ///供应商 |
| | | /// </summary> |
| | | [JsonProperty("supplier")] |
| | | public string Supplier { get; set; } |
| | | /// <summary> |
| | | /// 轮型 |
| | | /// </summary> |
| | | [JsonProperty("tyreType")] |
| | | public string TyreType { get; set; } |
| | | /// <summary> |
| | | /// 生产时间 |
| | | /// </summary> |
| | | [JsonProperty("produceTime")] |
| | | public string ProduceTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料编码 |
| | | /// </summary> |
| | | [JsonProperty("partNumber")] |
| | | public string PartNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工装编号 |
| | | /// </summary> |
| | | [JsonProperty("rfid")] |
| | | public string Rfid { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料批次信息 |
| | | /// </summary> |
| | | [JsonProperty("lotNumber")] |
| | | public string LotNumber { get; set; } |
| | | |
| | | |
| | | } |
| | | /// <summary> |
| | | /// 任务上报 |
| | | /// </summary> |
| | | public class GTWMSData |