|
@@ -20,6 +20,17 @@ public class VideoLessonStudentVo extends BaseEntity {
|
|
|
@ApiModelProperty(value = "true已买,false未买")
|
|
|
private Boolean alreadyBuy;
|
|
|
|
|
|
+ @ApiModelProperty(value = "true 自己的课,false 其他老师的课程")
|
|
|
+ private Boolean myself;
|
|
|
+
|
|
|
+ public Boolean getMyself() {
|
|
|
+ return myself;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMyself(Boolean myself) {
|
|
|
+ this.myself = myself;
|
|
|
+ }
|
|
|
+
|
|
|
public VideoLessonGroupVo getLessonGroup() {
|
|
|
return lessonGroup;
|
|
|
}
|