1
0

StoreGoodsDto.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package com.kmall.admin.dto;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * @author Scott
  6. * @email
  7. * @date 2019-10-18 10:41:08
  8. */
  9. public class StoreGoodsDto implements Serializable {
  10. private static final long serialVersionUID = 1L;
  11. private String storeName;
  12. private String specification;
  13. private String stockNum;
  14. private String goodsSn;
  15. private String retailPrice;
  16. private String marketPrice;
  17. private String goodsBizType;
  18. private String categoryName;
  19. private String attributeCategory;
  20. private String brandName;
  21. private String freightName;
  22. private String supplierThirdCode;
  23. private String bottomLinePrice;//底线价
  24. private String batchSn;//批次编号
  25. private String uniqueIdentifier;
  26. /**
  27. * 出区数
  28. */
  29. private String exitRegionNumber;
  30. public String getBatchSn() {
  31. return batchSn;
  32. }
  33. public void setBatchSn(String batchSn) {
  34. this.batchSn = batchSn;
  35. }
  36. public String getBottomLinePrice() {
  37. return bottomLinePrice;
  38. }
  39. public void setBottomLinePrice(String bottomLinePrice) {
  40. this.bottomLinePrice = bottomLinePrice;
  41. }
  42. public String getStoreName() {
  43. return storeName;
  44. }
  45. public void setStoreName(String storeName) {
  46. this.storeName = storeName;
  47. }
  48. public String getSpecification() {
  49. return specification;
  50. }
  51. public void setSpecification(String specification) {
  52. this.specification = specification;
  53. }
  54. public String getStockNum() {
  55. return stockNum;
  56. }
  57. public void setStockNum(String stockNum) {
  58. this.stockNum = stockNum;
  59. }
  60. public String getGoodsSn() {
  61. return goodsSn;
  62. }
  63. public void setGoodsSn(String goodsSn) {
  64. this.goodsSn = goodsSn;
  65. }
  66. public String getRetailPrice() {
  67. return retailPrice;
  68. }
  69. public void setRetailPrice(String retailPrice) {
  70. this.retailPrice = retailPrice;
  71. }
  72. public String getMarketPrice() {
  73. return marketPrice;
  74. }
  75. public void setMarketPrice(String marketPrice) {
  76. this.marketPrice = marketPrice;
  77. }
  78. public String getGoodsBizType() {
  79. return goodsBizType;
  80. }
  81. public void setGoodsBizType(String goodsBizType) {
  82. this.goodsBizType = goodsBizType;
  83. }
  84. public String getCategoryName() {
  85. return categoryName;
  86. }
  87. public void setCategoryName(String categoryName) {
  88. this.categoryName = categoryName;
  89. }
  90. public String getAttributeCategory() {
  91. return attributeCategory;
  92. }
  93. public void setAttributeCategory(String attributeCategory) {
  94. this.attributeCategory = attributeCategory;
  95. }
  96. public String getBrandName() {
  97. return brandName;
  98. }
  99. public void setBrandName(String brandName) {
  100. this.brandName = brandName;
  101. }
  102. public String getFreightName() {
  103. return freightName;
  104. }
  105. public void setFreightName(String freightName) {
  106. this.freightName = freightName;
  107. }
  108. public String getSupplierThirdCode() {
  109. return supplierThirdCode;
  110. }
  111. public void setSupplierThirdCode(String supplierThirdCode) {
  112. this.supplierThirdCode = supplierThirdCode;
  113. }
  114. public String getUniqueIdentifier() {
  115. return uniqueIdentifier;
  116. }
  117. public void setUniqueIdentifier(String uniqueIdentifier) {
  118. this.uniqueIdentifier = uniqueIdentifier;
  119. }
  120. public String getExitRegionNumber() {
  121. return exitRegionNumber;
  122. }
  123. public void setExitRegionNumber(String exitRegionNumber) {
  124. this.exitRegionNumber = exitRegionNumber;
  125. }
  126. }