周箭河 пре 5 година
родитељ
комит
d519ac5f4c

+ 33 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CourseScheduleEvaluate.java

@@ -47,6 +47,15 @@ public class CourseScheduleEvaluate {
 
     private String month;
 
+    @ApiModelProperty(value = "乐理")
+    private String musicTheory;
+
+    @ApiModelProperty(value = "乐曲")
+    private String song;
+
+    @ApiModelProperty(value = "教材")
+    private String teachingMaterial;
+
     @ApiModelProperty(value = "报告版本")
     private Integer version;
 
@@ -186,4 +195,28 @@ public class CourseScheduleEvaluate {
     public void setVersion(Integer 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;
+    }
 }

+ 3 - 0
mec-biz/src/main/resources/config/mybatis/CourseScheduleEvaluateMapper.xml

@@ -14,6 +14,9 @@
         <result column="subject_name_" jdbcType="VARCHAR" property="subjectName"/>
         <result column="is_pushed_" jdbcType="INTEGER" property="isPushed"/>
         <result column="month_" jdbcType="VARCHAR" property="month"/>
+        <result column="music_theory_" jdbcType="VARCHAR" property="musicTheory"/>
+        <result column="song_" jdbcType="VARCHAR" property="song"/>
+        <result column="teaching_material_" jdbcType="VARCHAR" property="teachingMaterial"/>
         <result column="version_" jdbcType="INTEGER" property="version"/>
     </resultMap>
     <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.CourseScheduleEvaluate" useGeneratedKeys="true"