StoreGoodsDto.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. public String getBatchSn() {
  27. return batchSn;
  28. }
  29. public void setBatchSn(String batchSn) {
  30. this.batchSn = batchSn;
  31. }
  32. public String getBottomLinePrice() {
  33. return bottomLinePrice;
  34. }
  35. public void setBottomLinePrice(String bottomLinePrice) {
  36. this.bottomLinePrice = bottomLinePrice;
  37. }
  38. public String getStoreName() {
  39. return storeName;
  40. }
  41. public void setStoreName(String storeName) {
  42. this.storeName = storeName;
  43. }
  44. public String getSpecification() {
  45. return specification;
  46. }
  47. public void setSpecification(String specification) {
  48. this.specification = specification;
  49. }
  50. public String getStockNum() {
  51. return stockNum;
  52. }
  53. public void setStockNum(String stockNum) {
  54. this.stockNum = stockNum;
  55. }
  56. public String getGoodsSn() {
  57. return goodsSn;
  58. }
  59. public void setGoodsSn(String goodsSn) {
  60. this.goodsSn = goodsSn;
  61. }
  62. public String getRetailPrice() {
  63. return retailPrice;
  64. }
  65. public void setRetailPrice(String retailPrice) {
  66. this.retailPrice = retailPrice;
  67. }
  68. public String getMarketPrice() {
  69. return marketPrice;
  70. }
  71. public void setMarketPrice(String marketPrice) {
  72. this.marketPrice = marketPrice;
  73. }
  74. public String getGoodsBizType() {
  75. return goodsBizType;
  76. }
  77. public void setGoodsBizType(String goodsBizType) {
  78. this.goodsBizType = goodsBizType;
  79. }
  80. public String getCategoryName() {
  81. return categoryName;
  82. }
  83. public void setCategoryName(String categoryName) {
  84. this.categoryName = categoryName;
  85. }
  86. public String getAttributeCategory() {
  87. return attributeCategory;
  88. }
  89. public void setAttributeCategory(String attributeCategory) {
  90. this.attributeCategory = attributeCategory;
  91. }
  92. public String getBrandName() {
  93. return brandName;
  94. }
  95. public void setBrandName(String brandName) {
  96. this.brandName = brandName;
  97. }
  98. public String getFreightName() {
  99. return freightName;
  100. }
  101. public void setFreightName(String freightName) {
  102. this.freightName = freightName;
  103. }
  104. public String getSupplierThirdCode() {
  105. return supplierThirdCode;
  106. }
  107. public void setSupplierThirdCode(String supplierThirdCode) {
  108. this.supplierThirdCode = supplierThirdCode;
  109. }
  110. public String getUniqueIdentifier() {
  111. return uniqueIdentifier;
  112. }
  113. public void setUniqueIdentifier(String uniqueIdentifier) {
  114. this.uniqueIdentifier = uniqueIdentifier;
  115. }
  116. }