| | |
| | | #endregion |
| | | |
| | | }//endClass |
| | | |
| | | public class ProdInBatch |
| | | { |
| | | /// <summary> |
| | | /// 入库单号 |
| | | /// </summary> |
| | | [DisplayName("入库单号")] |
| | | public string ORDER_NO { get; set; } |
| | | /// <summary> |
| | | /// 工单批次号 |
| | | /// </summary> |
| | | [DisplayName("工单批次号")] |
| | | public string BATCH_NO { get; set; } |
| | | /// <summary> |
| | | /// 工单号 |
| | | /// </summary> |
| | | [DisplayName("工单号")] |
| | | public string WORK_ORDER { get; set; } |
| | | /// <summary> |
| | | /// 物料编码 |
| | | /// </summary> |
| | | [DisplayName("物料编码")] |
| | | public string ITEM_CODE { get; set; } |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | [DisplayName("物料名称")] |
| | | public string ITEM_NAME { get; set; } |
| | | /// <summary> |
| | | /// 计划数量 |
| | | /// </summary> |
| | | [DisplayName("计划数量")] |
| | | public double PLAN_QTY { get; set; } |
| | | /// <summary> |
| | | /// 已扫描数量 |
| | | /// </summary> |
| | | [DisplayName("已扫描数量")] |
| | | public double SCAN_QTY { get; set; } |
| | | } |
| | | |
| | | public class InStoreScanInfo |
| | | { |
| | | /// <summary> |
| | | /// 条码 |
| | | /// </summary> |
| | | [DisplayName("条码")] |
| | | public string SN { get; set; } |
| | | [DisplayName("工单批次号")] |
| | | public string BATCH_NO { get; set; } |
| | | /// <summary> |
| | | /// 工单号 |
| | | /// </summary> |
| | | [DisplayName("工单号")] |
| | | public string WORK_ORDER { get; set; } |
| | | /// <summary> |
| | | /// 已扫描数量 |
| | | /// </summary> |
| | | [DisplayName("已扫描数量")] |
| | | public double SCAN_QTY { get; set; } |
| | | } |
| | | |
| | | public class InStoreInfo { |
| | | public BIZ_ERP_PROD_IN_BTH ErpProdInBth { get; set; } |
| | | public ProdInBatch ProdInBatch { get; set; } |
| | | public InStoreScanInfo InStoreScanInfo { get; set; } |
| | | } |
| | | } |