|
|
@@ -7,6 +7,7 @@
|
|
|
<id property="id" column="id_" />
|
|
|
<result property="wishInfoId" column="wish_info_id" />
|
|
|
<result property="name" column="name_" />
|
|
|
+ <result property="studentName" column="student_name" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
@@ -21,12 +22,13 @@
|
|
|
-->
|
|
|
<![CDATA[
|
|
|
insert into base_student_aspirations
|
|
|
- (id_,wish_info_id,name_,create_by,create_time,update_by,update_time,del_flag)
|
|
|
+ (id_,wish_info_id,name_,student_name,create_by,create_time,update_by,update_time,del_flag)
|
|
|
values
|
|
|
(
|
|
|
#{id,jdbcType=VARCHAR}
|
|
|
,#{wishInfoId,jdbcType=VARCHAR}
|
|
|
,#{name,jdbcType=VARCHAR}
|
|
|
+,#{studentName,jdbcType=VARCHAR}
|
|
|
,#{createBy,jdbcType=VARCHAR}
|
|
|
,#{createTime,jdbcType= TIMESTAMP }
|
|
|
,#{updateBy,jdbcType=VARCHAR}
|
|
|
@@ -47,6 +49,9 @@
|
|
|
<if test="name!=null">
|
|
|
name_=#{name,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="studentName!=null">
|
|
|
+ student_name=#{studentName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="createBy!=null">
|
|
|
create_by=#{createBy,jdbcType=VARCHAR},
|
|
|
</if>
|