MonthlySalesGrowthEntity.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. public class MonthlySalesGrowthEntity implements Serializable {
  5. private String merchSn;
  6. private String merchName;
  7. //销售总额
  8. private String totalSales;
  9. // 销售数量
  10. private String totalNumber;
  11. // 客单数
  12. private String totalCustomers;
  13. private String yearAndMonth;
  14. private String yearAndWeek;
  15. public String getYearAndWeek() {
  16. return yearAndWeek;
  17. }
  18. public void setYearAndWeek(String yearAndWeek) {
  19. this.yearAndWeek = yearAndWeek;
  20. }
  21. private String goodsName; // 产品名称
  22. private String goodsSpecificationNameValue; // 产品规格
  23. private String sales; // 销售数量
  24. private String brand; // 品牌
  25. private String supplier; // 供应商
  26. public String getMerchSn() {
  27. return merchSn;
  28. }
  29. public void setMerchSn(String merchSn) {
  30. this.merchSn = merchSn;
  31. }
  32. public String getMerchName() {
  33. return merchName;
  34. }
  35. public void setMerchName(String merchName) {
  36. this.merchName = merchName;
  37. }
  38. public String getTotalSales() {
  39. return totalSales;
  40. }
  41. public void setTotalSales(String totalSales) {
  42. this.totalSales = totalSales;
  43. }
  44. public String getTotalNumber() {
  45. return totalNumber;
  46. }
  47. public void setTotalNumber(String totalNumber) {
  48. this.totalNumber = totalNumber;
  49. }
  50. public String getTotalCustomers() {
  51. return totalCustomers;
  52. }
  53. public void setTotalCustomers(String totalCustomers) {
  54. this.totalCustomers = totalCustomers;
  55. }
  56. public String getYearAndMonth() {
  57. return yearAndMonth;
  58. }
  59. public void setYearAndMonth(String yearAndMonth) {
  60. this.yearAndMonth = yearAndMonth;
  61. }
  62. public String getGoodsName() {
  63. return goodsName;
  64. }
  65. public void setGoodsName(String goodsName) {
  66. this.goodsName = goodsName;
  67. }
  68. public String getGoodsSpecificationNameValue() {
  69. return goodsSpecificationNameValue;
  70. }
  71. public void setGoodsSpecificationNameValue(String goodsSpecificationNameValue) {
  72. this.goodsSpecificationNameValue = goodsSpecificationNameValue;
  73. }
  74. public String getSales() {
  75. return sales;
  76. }
  77. public void setSales(String sales) {
  78. this.sales = sales;
  79. }
  80. public String getBrand() {
  81. return brand;
  82. }
  83. public void setBrand(String brand) {
  84. this.brand = brand;
  85. }
  86. public String getSupplier() {
  87. return supplier;
  88. }
  89. public void setSupplier(String supplier) {
  90. this.supplier = supplier;
  91. }
  92. }