|
@@ -4,6 +4,8 @@ import com.ym.mec.biz.dal.entity.MusicGroupStudentFee;
|
|
|
import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
public class CourseListDto {
|
|
|
|
|
|
@ApiModelProperty(value = "班级类型", required = true)
|
|
@@ -75,12 +77,22 @@ public class CourseListDto {
|
|
|
|
|
|
private String practiceRenewUrl;
|
|
|
|
|
|
+ private Date courseExpireDate;
|
|
|
+
|
|
|
@ApiModelProperty(value = "是否有陪练报告")
|
|
|
private Boolean hasReport = false;
|
|
|
|
|
|
@ApiModelProperty(value = "陪练报告地址")
|
|
|
private String studyReportUrl;
|
|
|
|
|
|
+ public Date getCourseExpireDate() {
|
|
|
+ return courseExpireDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseExpireDate(Date courseExpireDate) {
|
|
|
+ this.courseExpireDate = courseExpireDate;
|
|
|
+ }
|
|
|
+
|
|
|
public String getPracticeRenewUrl() {
|
|
|
return practiceRenewUrl;
|
|
|
}
|