WmsAwitInventoryPalletMd.cs 676 B

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