|
@@ -2,6 +2,7 @@ package com.yonge.cooleshow.biz.dal.vo;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.yonge.cooleshow.biz.dal.entity.CourseTimeEntity;
|
|
import com.yonge.cooleshow.biz.dal.entity.CourseTimeEntity;
|
|
|
|
+import com.yonge.cooleshow.common.enums.YesOrNoEnum;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
@@ -25,6 +26,17 @@ public class LiveCourseInfoVo extends CourseGroupVo implements Serializable {
|
|
@ApiModelProperty(value = "true 自己的课,false 其他老师的课程")
|
|
@ApiModelProperty(value = "true 自己的课,false 其他老师的课程")
|
|
private Boolean myself;
|
|
private Boolean myself;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否审核时可见 (0:否 1:是)")
|
|
|
|
+ private YesOrNoEnum auditVersion = YesOrNoEnum.NO;
|
|
|
|
+
|
|
|
|
+ public YesOrNoEnum getAuditVersion() {
|
|
|
|
+ return auditVersion;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAuditVersion(YesOrNoEnum auditVersion) {
|
|
|
|
+ this.auditVersion = auditVersion;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Boolean getMyself() {
|
|
public Boolean getMyself() {
|
|
return myself;
|
|
return myself;
|
|
}
|
|
}
|