BasBinMonitorMd.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NX_ModelClassLibrary.BaseModel
  7. {
  8. public class BasBinMonitorMd
  9. {
  10. public string RegionCode { get; set; }
  11. public string RegionName { get; set; }
  12. public string ShelfCode { get; set; }
  13. public string ShelfName { get; set; }
  14. public string DevTypeCode { get; set; }
  15. public string DevTypeName { get; set; }
  16. public string DevCode { get; set; }
  17. public string DevName { get; set; }
  18. public string BinCode { get; set; }
  19. public string BinName { get; set; }
  20. public int BinRow { get; set; }
  21. public int BinColumn { get; set; }
  22. public int BinLayer { get; set; }
  23. public int UsedFlag { get; set; }
  24. public string UsedFlagName { get; set; }
  25. public int BalanceId { get; set; }
  26. public string TrayCode { get; set; }
  27. public string PalletCode { get; set; }
  28. public int TraysType { get; set; }
  29. public string TraysTypeName { get; set; }
  30. public int TrayLoadedType { get; set; }
  31. public string TrayLoadedTypeName { get; set; }
  32. public int BalanceStatus { get; set; }
  33. public string BalanceStatusName { get; set; }
  34. public int TaskNo { get; set; }
  35. public int CmdNo { get; set; }
  36. }
  37. }