|
@@ -86,6 +86,9 @@ public class TeacherClassGroupDto {
|
|
|
@ApiModelProperty(value = "是否已有报告")
|
|
|
private Boolean hasReport=false;
|
|
|
|
|
|
+ @ApiModelProperty(value = "购买月数")
|
|
|
+ private Integer buyMonths;
|
|
|
+
|
|
|
public Date getCourseStartDate() {
|
|
|
return courseStartDate;
|
|
|
}
|
|
@@ -285,4 +288,12 @@ public class TeacherClassGroupDto {
|
|
|
public void setHasReport(Boolean hasReport) {
|
|
|
this.hasReport = hasReport;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getBuyMonths() {
|
|
|
+ return buyMonths;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBuyMonths(Integer buyMonths) {
|
|
|
+ this.buyMonths = buyMonths;
|
|
|
+ }
|
|
|
}
|