|
@@ -21,6 +21,7 @@
|
|
|
<result column="expect_student_num_" property="expectStudentNum"/>
|
|
|
<result column="total_class_times_" property="totalClassTimes"/>
|
|
|
<result column="img_" property="img"/>
|
|
|
+ <result column="memo_" property="memo"/>
|
|
|
<result column="current_class_times_" property="currentClassTimes"/>
|
|
|
</resultMap>
|
|
|
|
|
@@ -55,6 +56,7 @@
|
|
|
<if test="totalClassTimes!=null">total_class_times_,</if>
|
|
|
<if test="currentClassTimes!=null">current_class_times_,</if>
|
|
|
<if test="img!=null">img_,</if>
|
|
|
+ <if test="img!=null">memo_,</if>
|
|
|
<if test="delFlag!=null">del_flag_,</if>
|
|
|
</trim>
|
|
|
VALUES
|
|
@@ -72,6 +74,7 @@
|
|
|
<if test="totalClassTimes!=null">#{totalClassTimes},</if>
|
|
|
<if test="currentClassTimes!=null">#{currentClassTimes},</if>
|
|
|
<if test="img!=null">#{img},</if>
|
|
|
+ <if test="memo!=null">#{memo},</if>
|
|
|
<if test="delFlag!=null">#{delFlag},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
@@ -133,6 +136,9 @@
|
|
|
<if test="img!=null">
|
|
|
img_=#{img},
|
|
|
</if>
|
|
|
+ <if test="memo!=null">
|
|
|
+ memo_=#{memo},
|
|
|
+ </if>
|
|
|
<if test="delFlag != null">
|
|
|
del_flag_ = #{delFlag},
|
|
|
</if>
|
|
@@ -1141,6 +1147,9 @@
|
|
|
<if test="classGroup.img!=null">
|
|
|
img_=#{classGroup.img},
|
|
|
</if>
|
|
|
+ <if test="classGroup.memo!=null">
|
|
|
+ memo_=#{classGroup.memo},
|
|
|
+ </if>
|
|
|
<if test="classGroup.delFlag != null">
|
|
|
del_flag_ = #{classGroup.delFlag},
|
|
|
</if>
|