You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
2.8 KiB

1 year ago
  1. package com.spring.ifs.data;
  2. public class WarehouseLocation {
  3. private String site;
  4. private String locationId;
  5. private String locationName;
  6. private String warehouseId;
  7. private String active;
  8. private String createBy;
  9. private String createDate;
  10. private String updateBy;
  11. private String updateDate;
  12. private String locationType;
  13. private String ifsRowId;
  14. private String ifsRowVersion;
  15. public WarehouseLocation() {
  16. super();
  17. }
  18. public String getSite() {
  19. return site;
  20. }
  21. public void setSite(String site) {
  22. this.site = site;
  23. }
  24. public String getLocationId() {
  25. return locationId;
  26. }
  27. public void setLocationId(String locationId) {
  28. this.locationId = locationId;
  29. }
  30. public String getLocationName() {
  31. return locationName;
  32. }
  33. public void setLocationName(String locationName) {
  34. this.locationName = locationName;
  35. }
  36. public String getWarehouseId() {
  37. return warehouseId;
  38. }
  39. public void setWarehouseId(String warehouseId) {
  40. this.warehouseId = warehouseId;
  41. }
  42. public String getActive() {
  43. return active;
  44. }
  45. public void setActive(String active) {
  46. this.active = active;
  47. }
  48. public String getCreateBy() {
  49. return createBy;
  50. }
  51. public void setCreateBy(String createBy) {
  52. this.createBy = createBy;
  53. }
  54. public String getCreateDate() {
  55. return createDate;
  56. }
  57. public void setCreateDate(String createDate) {
  58. this.createDate = createDate;
  59. }
  60. public String getUpdateBy() {
  61. return updateBy;
  62. }
  63. public void setUpdateBy(String updateBy) {
  64. this.updateBy = updateBy;
  65. }
  66. public String getUpdateDate() {
  67. return updateDate;
  68. }
  69. public void setUpdateDate(String updateDate) {
  70. this.updateDate = updateDate;
  71. }
  72. public String getLocationType() {
  73. return locationType;
  74. }
  75. public void setLocationType(String locationType) {
  76. this.locationType = locationType;
  77. }
  78. public String getIfsRowId() {
  79. return ifsRowId;
  80. }
  81. public void setIfsRowId(String ifsRowId) {
  82. this.ifsRowId = ifsRowId;
  83. }
  84. public String getIfsRowVersion() {
  85. return ifsRowVersion;
  86. }
  87. public void setIfsRowVersion(String ifsRowVersion) {
  88. this.ifsRowVersion = ifsRowVersion;
  89. }
  90. @Override
  91. public String toString() {
  92. return "IfsLocationData [site=" + site + ", locationId=" + locationId + ", locationName=" + locationName
  93. + ", warehouseId=" + warehouseId + ", active=" + active + ", createBy=" + createBy + ", createDate="
  94. + createDate + ", updateBy=" + updateBy + ", updateDate=" + updateDate + ", locationType="
  95. + locationType + ", ifsRowVersion=" + ifsRowVersion + "]";
  96. }
  97. }