|
@@ -17,13 +17,13 @@ public class DoubleEleven2021Dto {
|
|
|
private BigDecimal totalBuyAmount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "总购买数",required = false)
|
|
|
- private int totalBuyNum;
|
|
|
+ private Integer totalBuyNum;
|
|
|
|
|
|
@ApiModelProperty(value = "人均购买金额",required = false)
|
|
|
private BigDecimal avgBuyAmount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "赠送会员人数",required = false)
|
|
|
- private int giveMemberNum;
|
|
|
+ private Long giveMemberNum;
|
|
|
|
|
|
@ApiModelProperty(value = "1v1 20节课购买金额",required = false)
|
|
|
private BigDecimal vip1V120Amount = BigDecimal.ZERO;
|
|
@@ -35,25 +35,73 @@ public class DoubleEleven2021Dto {
|
|
|
private BigDecimal vip1V140Amount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "1v1 40节课购买人数",required = false)
|
|
|
- private int vip1V140Num;
|
|
|
+ private Integer vip1V140Num;
|
|
|
|
|
|
@ApiModelProperty(value = "1v2 20节课购买金额",required = false)
|
|
|
private BigDecimal vip1V220Amount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "1v2 20节课购买人数",required = false)
|
|
|
- private int vip1V220Num;
|
|
|
+ private Integer vip1V220Num;
|
|
|
|
|
|
@ApiModelProperty(value = "1v2 40节课购买金额",required = false)
|
|
|
private BigDecimal vip1V240Amount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "1v2 40节课购买人数",required = false)
|
|
|
- private int vip1V240Num;
|
|
|
+ private Integer vip1V240Num;
|
|
|
|
|
|
@ApiModelProperty(value = "乐理课购买金额",required = false)
|
|
|
private BigDecimal musicTheoryAmount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "乐理课购买人数",required = false)
|
|
|
- private int musicTheoryNum;
|
|
|
+ private Integer musicTheoryNum;
|
|
|
+
|
|
|
+ public Integer getOrganId() {
|
|
|
+ return organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganId(Integer organId) {
|
|
|
+ this.organId = organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrganName() {
|
|
|
+ return organName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganName(String organName) {
|
|
|
+ this.organName = organName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getTotalBuyAmount() {
|
|
|
+ return totalBuyAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalBuyAmount(BigDecimal totalBuyAmount) {
|
|
|
+ this.totalBuyAmount = totalBuyAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalBuyNum() {
|
|
|
+ return totalBuyNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalBuyNum(Integer totalBuyNum) {
|
|
|
+ this.totalBuyNum = totalBuyNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getAvgBuyAmount() {
|
|
|
+ return avgBuyAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAvgBuyAmount(BigDecimal avgBuyAmount) {
|
|
|
+ this.avgBuyAmount = avgBuyAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getGiveMemberNum() {
|
|
|
+ return giveMemberNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGiveMemberNum(Long giveMemberNum) {
|
|
|
+ this.giveMemberNum = giveMemberNum;
|
|
|
+ }
|
|
|
|
|
|
public BigDecimal getVip1V120Amount() {
|
|
|
return vip1V120Amount;
|
|
@@ -79,11 +127,11 @@ public class DoubleEleven2021Dto {
|
|
|
this.vip1V140Amount = vip1V140Amount;
|
|
|
}
|
|
|
|
|
|
- public int getVip1V140Num() {
|
|
|
+ public Integer getVip1V140Num() {
|
|
|
return vip1V140Num;
|
|
|
}
|
|
|
|
|
|
- public void setVip1V140Num(int vip1V140Num) {
|
|
|
+ public void setVip1V140Num(Integer vip1V140Num) {
|
|
|
this.vip1V140Num = vip1V140Num;
|
|
|
}
|
|
|
|
|
@@ -95,11 +143,11 @@ public class DoubleEleven2021Dto {
|
|
|
this.vip1V220Amount = vip1V220Amount;
|
|
|
}
|
|
|
|
|
|
- public int getVip1V220Num() {
|
|
|
+ public Integer getVip1V220Num() {
|
|
|
return vip1V220Num;
|
|
|
}
|
|
|
|
|
|
- public void setVip1V220Num(int vip1V220Num) {
|
|
|
+ public void setVip1V220Num(Integer vip1V220Num) {
|
|
|
this.vip1V220Num = vip1V220Num;
|
|
|
}
|
|
|
|
|
@@ -111,11 +159,11 @@ public class DoubleEleven2021Dto {
|
|
|
this.vip1V240Amount = vip1V240Amount;
|
|
|
}
|
|
|
|
|
|
- public int getVip1V240Num() {
|
|
|
+ public Integer getVip1V240Num() {
|
|
|
return vip1V240Num;
|
|
|
}
|
|
|
|
|
|
- public void setVip1V240Num(int vip1V240Num) {
|
|
|
+ public void setVip1V240Num(Integer vip1V240Num) {
|
|
|
this.vip1V240Num = vip1V240Num;
|
|
|
}
|
|
|
|
|
@@ -127,59 +175,11 @@ public class DoubleEleven2021Dto {
|
|
|
this.musicTheoryAmount = musicTheoryAmount;
|
|
|
}
|
|
|
|
|
|
- public int getMusicTheoryNum() {
|
|
|
+ public Integer getMusicTheoryNum() {
|
|
|
return musicTheoryNum;
|
|
|
}
|
|
|
|
|
|
- public void setMusicTheoryNum(int musicTheoryNum) {
|
|
|
+ public void setMusicTheoryNum(Integer musicTheoryNum) {
|
|
|
this.musicTheoryNum = musicTheoryNum;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getOrganId() {
|
|
|
- return organId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrganId(Integer organId) {
|
|
|
- this.organId = organId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOrganName() {
|
|
|
- return organName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrganName(String organName) {
|
|
|
- this.organName = organName;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getAvgBuyAmount() {
|
|
|
- return avgBuyAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAvgBuyAmount(BigDecimal avgBuyAmount) {
|
|
|
- this.avgBuyAmount = avgBuyAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getTotalBuyAmount() {
|
|
|
- return totalBuyAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTotalBuyAmount(BigDecimal totalBuyAmount) {
|
|
|
- this.totalBuyAmount = totalBuyAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public int getTotalBuyNum() {
|
|
|
- return totalBuyNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTotalBuyNum(int totalBuyNum) {
|
|
|
- this.totalBuyNum = totalBuyNum;
|
|
|
- }
|
|
|
-
|
|
|
- public int getGiveMemberNum() {
|
|
|
- return giveMemberNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGiveMemberNum(int giveMemberNum) {
|
|
|
- this.giveMemberNum = giveMemberNum;
|
|
|
- }
|
|
|
}
|