WmsInPutAwayResult.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Model.AppModels.Result.Instock
  6. {
  7. public class WmsInPutAwayResult
  8. {
  9. public int PUTAWAY_ID { get; set; }
  10. public string NEWID { get; set; }
  11. public string PUTAWAY_NO { get; set; }
  12. public string SOURCE_NO { get; set; }
  13. public int PUTAWAY_TYPE { get; set; }
  14. public string PUTAWAY_TYPE_NAME { get; set; }
  15. public string TRAY_CODE { get; set; }
  16. public string PALLET_CODE { get; set; }
  17. public string SBIN_CODE { get; set; }
  18. public string EBIN_CODE { get; set; }
  19. public int PUTAWAY_PRIORITY { get; set; }
  20. public int PUTAWAY_STATUS { get; set; }
  21. public string PUTAWAY_STATUS_NAME { get; set; }
  22. public string DESCRIBE { get; set; }
  23. public int CREATE_BY { get; set; }
  24. public string CREATE_NAME { get; set; }
  25. public DateTime CREATE_TIME { get; set; }
  26. public int UPDATE_BY { get; set; }
  27. public string UPDATE_NAME { get; set; }
  28. public DateTime UPDATE_TIME { get; set; }
  29. public int DATA_VERSION { get; set; }
  30. public string REMARKS1 { get; set; }
  31. public string REMARKS2 { get; set; }
  32. public string REMARKS3 { get; set; }
  33. public string REMARKS4 { get; set; }
  34. public string REMARKS5 { get; set; }
  35. public List<WmsInPutAwayDtlResult> WmsInPutAwayDtlList { get; set; }
  36. }
  37. }