|
@@ -30,23 +30,23 @@ public class IndexCloudStudySumDto {
|
|
|
private Integer againBuyNum = 0;
|
|
|
|
|
|
//重复购买率
|
|
|
- private double againBuyRate;
|
|
|
+ private Double againBuyRate;
|
|
|
|
|
|
//购买率
|
|
|
- private double buyRate;
|
|
|
+ private Double buyRate;
|
|
|
|
|
|
@ApiModelProperty("云教练今日使用人数")
|
|
|
- private int cloudStudyTodayUseStudentNum;
|
|
|
+ private Integer cloudStudyTodayUseStudentNum;
|
|
|
|
|
|
- public int getCloudStudyTodayUseStudentNum() {
|
|
|
+ public Integer getCloudStudyTodayUseStudentNum() {
|
|
|
return cloudStudyTodayUseStudentNum;
|
|
|
}
|
|
|
|
|
|
- public void setCloudStudyTodayUseStudentNum(int cloudStudyTodayUseStudentNum) {
|
|
|
+ public void setCloudStudyTodayUseStudentNum(Integer cloudStudyTodayUseStudentNum) {
|
|
|
this.cloudStudyTodayUseStudentNum = cloudStudyTodayUseStudentNum;
|
|
|
}
|
|
|
|
|
|
- public double getAgainBuyRate() {
|
|
|
+ public Double getAgainBuyRate() {
|
|
|
return againBuyRate;
|
|
|
}
|
|
|
|
|
@@ -54,11 +54,11 @@ public class IndexCloudStudySumDto {
|
|
|
this.againBuyRate = againBuyRate;
|
|
|
}
|
|
|
|
|
|
- public double getBuyRate() {
|
|
|
+ public Double getBuyRate() {
|
|
|
return buyRate;
|
|
|
}
|
|
|
|
|
|
- public void setBuyRate(double buyRate) {
|
|
|
+ public void setBuyRate(Double buyRate) {
|
|
|
this.buyRate = buyRate;
|
|
|
}
|
|
|
|