WmsAwitInventoryPalletMd.cs 650 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NXWMS.Model.AppModels.Result.Balance
  5. {
  6. public class WmsAwitInventoryPalletMd
  7. {
  8. public int INVENTORY_ID { get; set; }
  9. public int INVENTORY_STATUS { get; set; }
  10. public string TRAY_CODE { get; set; }
  11. public string PALLET_CODE { get; set; }
  12. public string REGION_CODE { get; set; }
  13. public string REGION_NAME { get; set; }
  14. public string BIN_NAME { get; set; }
  15. public string BIN_CODE { get; set; }
  16. public int BALANCE_STATUS { get; set; }
  17. public int? PUTDOWN_STATUS { get; set; }
  18. }
  19. }