|
@@ -105,7 +105,7 @@ public class VipGroup {
|
|
private String stopReason;
|
|
private String stopReason;
|
|
|
|
|
|
@ApiModelProperty(value = "月度消耗百分数")
|
|
@ApiModelProperty(value = "月度消耗百分数")
|
|
- private Double monthConsumeRate;
|
|
|
|
|
|
+ private Integer monthConsumeRate;
|
|
|
|
|
|
@ApiModelProperty(value = "开课时间")
|
|
@ApiModelProperty(value = "开课时间")
|
|
private Date courseStartDate;
|
|
private Date courseStartDate;
|
|
@@ -128,11 +128,11 @@ public class VipGroup {
|
|
this.courseStartDate = courseStartDate;
|
|
this.courseStartDate = courseStartDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getMonthConsumeRate() {
|
|
|
|
|
|
+ public Integer getMonthConsumeRate() {
|
|
return monthConsumeRate;
|
|
return monthConsumeRate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMonthConsumeRate(Double monthConsumeRate) {
|
|
|
|
|
|
+ public void setMonthConsumeRate(Integer monthConsumeRate) {
|
|
this.monthConsumeRate = monthConsumeRate;
|
|
this.monthConsumeRate = monthConsumeRate;
|
|
}
|
|
}
|
|
|
|
|