MonthlySalesGrowthEntity.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 BigDecimal totalSales;
  9. // 销售数量
  10. private Integer totalNumber;
  11. // 客单数
  12. private Integer taotalCustomers;
  13. private String yearAndMonth;
  14. public String getMerchSn() {
  15. return merchSn;
  16. }
  17. public void setMerchSn(String merchSn) {
  18. this.merchSn = merchSn;
  19. }
  20. public String getMerchName() {
  21. return merchName;
  22. }
  23. public void setMerchName(String merchName) {
  24. this.merchName = merchName;
  25. }
  26. public BigDecimal getTotalSales() {
  27. return totalSales;
  28. }
  29. public void setTotalSales(BigDecimal totalSales) {
  30. this.totalSales = totalSales;
  31. }
  32. public Integer getTotalNumber() {
  33. return totalNumber;
  34. }
  35. public void setTotalNumber(Integer totalNumber) {
  36. this.totalNumber = totalNumber;
  37. }
  38. public Integer getTaotalCustomers() {
  39. return taotalCustomers;
  40. }
  41. public void setTaotalCustomers(Integer taotalCustomers) {
  42. this.taotalCustomers = taotalCustomers;
  43. }
  44. public String getYearAndMonth() {
  45. return yearAndMonth;
  46. }
  47. public void setYearAndMonth(String yearAndMonth) {
  48. this.yearAndMonth = yearAndMonth;
  49. }
  50. }