1
0

StoreGoodsDto.java 2.7 KB

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