|
@@ -228,7 +228,19 @@ public class CourseSchedule extends BaseEntity{
|
|
|
@ApiModelProperty(value = "直播课通知标记")
|
|
|
private Integer liveRemind;
|
|
|
|
|
|
- public Integer getLiveRemind() {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否连堂课 continuous_coourse_")
|
|
|
+ private Boolean continuousCourse;
|
|
|
+
|
|
|
+ public Boolean getContinuousCourse() {
|
|
|
+ return continuousCourse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContinuousCourse(Boolean continuousCourse) {
|
|
|
+ this.continuousCourse = continuousCourse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLiveRemind() {
|
|
|
return liveRemind;
|
|
|
}
|
|
|
|