|
@@ -64,6 +64,15 @@ public class StudentCourseScheduleRecordDto {
|
|
|
@ApiModelProperty(value = "是否达标1是0否")
|
|
|
private Integer qualifiedFlag = 1;
|
|
|
|
|
|
+ @ApiModelProperty(value = "教学内容")
|
|
|
+ private String teachingContent;
|
|
|
+
|
|
|
+ @ApiModelProperty("教学要点")
|
|
|
+ private String teachingPoint;
|
|
|
+
|
|
|
+ @ApiModelProperty("直播课回放记录")
|
|
|
+ private Boolean hasVideoRecord;
|
|
|
+
|
|
|
public Integer getQualifiedFlag() {
|
|
|
return qualifiedFlag;
|
|
|
}
|
|
@@ -191,4 +200,28 @@ public class StudentCourseScheduleRecordDto {
|
|
|
public void setTeachingAddress(String teachingAddress) {
|
|
|
this.teachingAddress = teachingAddress;
|
|
|
}
|
|
|
+
|
|
|
+ public String getTeachingContent() {
|
|
|
+ return teachingContent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeachingContent(String teachingContent) {
|
|
|
+ this.teachingContent = teachingContent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTeachingPoint() {
|
|
|
+ return teachingPoint;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeachingPoint(String teachingPoint) {
|
|
|
+ this.teachingPoint = teachingPoint;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getHasVideoRecord() {
|
|
|
+ return hasVideoRecord;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHasVideoRecord(Boolean hasVideoRecord) {
|
|
|
+ this.hasVideoRecord = hasVideoRecord;
|
|
|
+ }
|
|
|
}
|