|
@@ -7,33 +7,25 @@ public class IndexCloudStudySumDto {
|
|
|
private String organName;
|
|
|
|
|
|
//在读学员数
|
|
|
- private int totalStudentNum;
|
|
|
+ private Integer totalStudentNum = 0;
|
|
|
|
|
|
//会员总数
|
|
|
- private int vipStudentNum;
|
|
|
+ private Integer vipStudentNum = 0;
|
|
|
|
|
|
//会员人数占比
|
|
|
- private double vipStudentRate;
|
|
|
+ private Double vipStudentRate = 0d;
|
|
|
|
|
|
//生效中的学员数
|
|
|
- private int effectiveVipStudentNum;
|
|
|
+ private Integer effectiveVipStudentNum = 0;
|
|
|
|
|
|
//待激活学员数
|
|
|
- private int waitActivateVipStudentNum;
|
|
|
+ private Integer waitActivateVipStudentNum = 0;
|
|
|
|
|
|
//活跃人数
|
|
|
- private int activeStudentNum;
|
|
|
+ private Integer activeStudentNum = 0;
|
|
|
|
|
|
//重复购买人数
|
|
|
- private int againBuyNum;
|
|
|
-
|
|
|
- public int getAgainBuyNum() {
|
|
|
- return againBuyNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAgainBuyNum(int againBuyNum) {
|
|
|
- this.againBuyNum = againBuyNum;
|
|
|
- }
|
|
|
+ private Integer againBuyNum = 0;
|
|
|
|
|
|
public Integer getOrganId() {
|
|
|
return organId;
|
|
@@ -51,52 +43,59 @@ public class IndexCloudStudySumDto {
|
|
|
this.organName = organName;
|
|
|
}
|
|
|
|
|
|
- public int getTotalStudentNum() {
|
|
|
+ public Integer getTotalStudentNum() {
|
|
|
return totalStudentNum;
|
|
|
}
|
|
|
|
|
|
- public void setTotalStudentNum(int totalStudentNum) {
|
|
|
+ public void setTotalStudentNum(Integer totalStudentNum) {
|
|
|
this.totalStudentNum = totalStudentNum;
|
|
|
}
|
|
|
|
|
|
- public int getVipStudentNum() {
|
|
|
+ public Integer getVipStudentNum() {
|
|
|
return vipStudentNum;
|
|
|
}
|
|
|
|
|
|
- public void setVipStudentNum(int vipStudentNum) {
|
|
|
+ public void setVipStudentNum(Integer vipStudentNum) {
|
|
|
this.vipStudentNum = vipStudentNum;
|
|
|
}
|
|
|
|
|
|
- public double getVipStudentRate() {
|
|
|
+ public Double getVipStudentRate() {
|
|
|
return vipStudentRate;
|
|
|
}
|
|
|
|
|
|
- public void setVipStudentRate(double vipStudentRate) {
|
|
|
+ public void setVipStudentRate(Double vipStudentRate) {
|
|
|
this.vipStudentRate = vipStudentRate;
|
|
|
}
|
|
|
|
|
|
- public int getEffectiveVipStudentNum() {
|
|
|
+ public Integer getEffectiveVipStudentNum() {
|
|
|
return effectiveVipStudentNum;
|
|
|
}
|
|
|
|
|
|
- public void setEffectiveVipStudentNum(int effectiveVipStudentNum) {
|
|
|
+ public void setEffectiveVipStudentNum(Integer effectiveVipStudentNum) {
|
|
|
this.effectiveVipStudentNum = effectiveVipStudentNum;
|
|
|
}
|
|
|
|
|
|
- public int getWaitActivateVipStudentNum() {
|
|
|
+ public Integer getWaitActivateVipStudentNum() {
|
|
|
return waitActivateVipStudentNum;
|
|
|
}
|
|
|
|
|
|
- public void setWaitActivateVipStudentNum(int waitActivateVipStudentNum) {
|
|
|
+ public void setWaitActivateVipStudentNum(Integer waitActivateVipStudentNum) {
|
|
|
this.waitActivateVipStudentNum = waitActivateVipStudentNum;
|
|
|
}
|
|
|
|
|
|
- public int getActiveStudentNum() {
|
|
|
+ public Integer getActiveStudentNum() {
|
|
|
return activeStudentNum;
|
|
|
}
|
|
|
|
|
|
- public void setActiveStudentNum(int activeStudentNum) {
|
|
|
+ public void setActiveStudentNum(Integer activeStudentNum) {
|
|
|
this.activeStudentNum = activeStudentNum;
|
|
|
}
|
|
|
|
|
|
+ public Integer getAgainBuyNum() {
|
|
|
+ return againBuyNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAgainBuyNum(Integer againBuyNum) {
|
|
|
+ this.againBuyNum = againBuyNum;
|
|
|
+ }
|
|
|
}
|