BasBinMd.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using NX_ModelClassLibrary.CustomEnum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NX_ModelClassLibrary.BaseModel
  8. {
  9. public class BasBinMd
  10. {
  11. public int BinId {get;set; }
  12. public string Newid { get; set; }
  13. public string BinCode { get; set; }
  14. public string BinName { get; set; }
  15. public BasBinTypeEnum BinType { get; set; }
  16. public string AreaCode { get; set; }
  17. public string AreaName { get; set; }
  18. public string WareHouseCode { get; set; }
  19. public string WareHouseName { get; set; }
  20. public string RegionCode { get; set; }
  21. public string RegionName { get; set; }
  22. public string ShelfCode { get; set; }
  23. public string ShelfName { get; set; }
  24. public int BinRow { get; set; }
  25. public int BinColumn { get; set; }
  26. public int BinLayer { get; set; }
  27. public string EXTENSION_GROUP { get; set; }
  28. public int EXTENSION_IDX { get; set; }
  29. public decimal Length { get; set; }
  30. public decimal Width { get; set; }
  31. public decimal Height { get; set; }
  32. public int PutShelfOrder { get; set; }
  33. public int DownShelfOrder { get; set; }
  34. public decimal VolumeLimit { get; set; }
  35. public decimal WeightLimit { get; set; }
  36. public decimal NumberLimit { get; set; }
  37. public decimal TrayLimit { get; set; }
  38. public string BlendProdouctFlag { get; set; }
  39. public string BlendBatchFlag { get; set; }
  40. public string Describe { get; set; }
  41. public UsedFlagEnum UsedFlag { get; set; }
  42. public DelFlagEnum DelFlag { get; set; }
  43. public int CreateBy { get; set; }
  44. public string CreateCode { get; set; }
  45. public string CreateName { get; set; }
  46. public DateTime CreateTime { get; set; }
  47. public int UpdateBy { get; set; }
  48. public string UpdateCode { get; set; }
  49. public string UpdateName { get; set; }
  50. public DateTime UpdateTime { get; set; }
  51. public int DataVersion { get; set; }
  52. public string Remarks1 { get; set; }
  53. public string Remarks2 { get; set; }
  54. public string Remarks3 { get; set; }
  55. public string Remarks4 { get; set; }
  56. public string Remarks5 { get; set; }
  57. }
  58. }