|
@@ -47,6 +47,15 @@ public class CourseScheduleEvaluate {
|
|
|
|
|
|
private String month;
|
|
private String month;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "乐理")
|
|
|
|
+ private String musicTheory;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "乐曲")
|
|
|
|
+ private String song;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "教材")
|
|
|
|
+ private String teachingMaterial;
|
|
|
|
+
|
|
@ApiModelProperty(value = "报告版本")
|
|
@ApiModelProperty(value = "报告版本")
|
|
private Integer version;
|
|
private Integer version;
|
|
|
|
|
|
@@ -186,4 +195,28 @@ public class CourseScheduleEvaluate {
|
|
public void setVersion(Integer version) {
|
|
public void setVersion(Integer version) {
|
|
this.version = version;
|
|
this.version = version;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getMusicTheory() {
|
|
|
|
+ return musicTheory;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMusicTheory(String musicTheory) {
|
|
|
|
+ this.musicTheory = musicTheory;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSong() {
|
|
|
|
+ return song;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSong(String song) {
|
|
|
|
+ this.song = song;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getTeachingMaterial() {
|
|
|
|
+ return teachingMaterial;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeachingMaterial(String teachingMaterial) {
|
|
|
|
+ this.teachingMaterial = teachingMaterial;
|
|
|
|
+ }
|
|
}
|
|
}
|