From 2ecf5dfa71bf0c553c30ced6f68a81fa3be6a93f Mon Sep 17 00:00:00 2001 From: xiaoyang <xiaoyang@hnkhzn.com> Date: 星期五, 08 十一月 2024 20:03:58 +0800 Subject: [PATCH] 11.08-1 --- Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResultTrayCellsStatus.cs | 73 +++++++++++++++++++++++++++++++++++- 1 files changed, 71 insertions(+), 2 deletions(-) diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResultTrayCellsStatus.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResultTrayCellsStatus.cs index 29851d1..b83fc36 100644 --- a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResultTrayCellsStatus.cs +++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResultTrayCellsStatus.cs @@ -2,15 +2,84 @@ { public class ResultTrayCellsStatus : BasicResult { + /// <summary> + /// 鎵樼洏缂栧彿 + /// </summary> public string TrayBarcode { get; set; } + + /// <summary> + /// 鐢佃姱鍒楄〃 + /// </summary> + public List<SerialNoDto> SerialNos { get; set; } = new List<SerialNoDto>(); public string BindCode { get; set; } - public List<TrayCellsSerialNos> SerialNos { get; set; } + + public string TrayStatus { get; set; } + /// <summary> + /// 鏂欐灞炴�у垪琛� + /// </summary> + public List<TrayBarcodePropertyDto> TrayBarcodePropertys { get; set; } = new List<TrayBarcodePropertyDto>(); } - public class TrayCellsSerialNos + /// <summary> + /// 鐢佃姱淇℃伅妯″瀷 + /// </summary> + public class SerialNoDto { + /// <summary> + /// 鐢佃姱鍙� + /// </summary> public string SerialNo { get; set; } + + /// <summary> + /// 閫氶亾鍙� + /// </summary> public int PositionNo { get; set; } + + public string BindCode { get; set; } + + /// <summary> + /// 鐢佃姱鐘舵�� + /// </summary> public int SerialNoStatus { get; set; } } + + /// <summary> + /// 鏂欐灞炴�фā鍨� + /// </summary> + public class TrayBarcodePropertyDto + { + /// <summary> + /// 鏂欐灞炴�� + /// </summary> + public string TrayBarcodeProperty { get; set; } + + /// <summary> + /// 宸ュ簭 + /// </summary> + public List<ProcessCodes> ProcessCodes { get; set; } = new List<ProcessCodes>(); + + public double Capacity { get; set; } + + + /// <summary> + /// 閫傜敤鐗╂枡缂栫爜/宸ヨ壓鍨嬪彿 + /// </summary> + public List<ProductTypes> ProductType { get; set; } = new List<ProductTypes>(); + } + + public class ProcessCodes + { + + /// <summary> + /// 宸ュ簭 + /// </summary> + public string ProcessCode { get; set; } + } + + public class ProductTypes + { + + public string ProductType { get; set; } + + } } \ No newline at end of file -- Gitblit v1.9.3