MonthlySalesGrowthEntity.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. public String getMerchSn() {
  22. return merchSn;
  23. }
  24. public void setMerchSn(String merchSn) {
  25. this.merchSn = merchSn;
  26. }
  27. public String getMerchName() {
  28. return merchName;
  29. }
  30. public void setMerchName(String merchName) {
  31. this.merchName = merchName;
  32. }
  33. public String getTotalSales() {
  34. return totalSales;
  35. }
  36. public void setTotalSales(String totalSales) {
  37. this.totalSales = totalSales;
  38. }
  39. public String getTotalNumber() {
  40. return totalNumber;
  41. }
  42. public void setTotalNumber(String totalNumber) {
  43. this.totalNumber = totalNumber;
  44. }
  45. public String getTotalCustomers() {
  46. return totalCustomers;
  47. }
  48. public void setTotalCustomers(String totalCustomers) {
  49. this.totalCustomers = totalCustomers;
  50. }
  51. public String getYearAndMonth() {
  52. return yearAndMonth;
  53. }
  54. public void setYearAndMonth(String yearAndMonth) {
  55. this.yearAndMonth = yearAndMonth;
  56. }
  57. }