|
@@ -0,0 +1,65 @@
|
|
|
+package com.kmall.admin.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+public class MonthlySalesGrowthEntity implements Serializable {
|
|
|
+
|
|
|
+ private String merchSn;
|
|
|
+ private String merchName;
|
|
|
+ //销售总额
|
|
|
+ private BigDecimal totalSales;
|
|
|
+ // 销售数量
|
|
|
+ private Integer totalNumber;
|
|
|
+ // 客单数
|
|
|
+ private Integer taotalCustomers;
|
|
|
+ private String yearAndMonth;
|
|
|
+
|
|
|
+ public String getMerchSn() {
|
|
|
+ return merchSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchSn(String merchSn) {
|
|
|
+ this.merchSn = merchSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMerchName() {
|
|
|
+ return merchName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchName(String merchName) {
|
|
|
+ this.merchName = merchName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getTotalSales() {
|
|
|
+ return totalSales;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalSales(BigDecimal totalSales) {
|
|
|
+ this.totalSales = totalSales;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalNumber() {
|
|
|
+ return totalNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalNumber(Integer totalNumber) {
|
|
|
+ this.totalNumber = totalNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTaotalCustomers() {
|
|
|
+ return taotalCustomers;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaotalCustomers(Integer taotalCustomers) {
|
|
|
+ this.taotalCustomers = taotalCustomers;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getYearAndMonth() {
|
|
|
+ return yearAndMonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYearAndMonth(String yearAndMonth) {
|
|
|
+ this.yearAndMonth = yearAndMonth;
|
|
|
+ }
|
|
|
+}
|