123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace NXWMS.Model.AppModels.Result.Balance
- {
- public class WmsAwitInventoryPalletMd
- {
- public int INVENTORY_ID { get; set; }
- public int INVENTORY_STATUS { get; set; }
- public string TRAY_CODE { get; set; }
- public string PALLET_CODE { get; set; }
- public string REGION_CODE { get; set; }
- public string REGION_NAME { get; set; }
- public string BIN_NAME { get; set; }
- public string BIN_CODE { get; set; }
- public int BALANCE_STATUS { get; set; }
- public int? PUTDOWN_STATUS { get; set; }
- }
- }
|