StoreGoodsDto.java 3.1 KB

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