|
@@ -7,10 +7,12 @@
|
|
<result column="servant_code" property="servant_code" jdbcType="INTEGER" />
|
|
<result column="servant_code" property="servant_code" jdbcType="INTEGER" />
|
|
<result column="resume_code" property="resume_code" jdbcType="INTEGER" />
|
|
<result column="resume_code" property="resume_code" jdbcType="INTEGER" />
|
|
<result column="resume_path" property="resume_path" jdbcType="VARCHAR" />
|
|
<result column="resume_path" property="resume_path" jdbcType="VARCHAR" />
|
|
|
|
+ <result column="rqcode_path" property="rqcode_path" jdbcType="VARCHAR" />
|
|
|
|
+ <result column="resume_comment" property="resume_comment" jdbcType="VARCHAR" />
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List" >
|
|
<sql id="Base_Column_List" >
|
|
- id, servant_code, resume_code,resume_path
|
|
|
|
|
|
+ id, servant_code, module_code,resume_path,rqcode_path,resume_comment
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<!-- 得到所有的简历信息 -->
|
|
<!-- 得到所有的简历信息 -->
|
|
@@ -44,7 +46,10 @@
|
|
resume_code,
|
|
resume_code,
|
|
</if>
|
|
</if>
|
|
<if test="resume_path != null" >
|
|
<if test="resume_path != null" >
|
|
- resume_path
|
|
|
|
|
|
+ resume_path,
|
|
|
|
+ </if>
|
|
|
|
+ <if test="rqcode_path != null" >
|
|
|
|
+ rqcode_path
|
|
</if>
|
|
</if>
|
|
</trim>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
@@ -55,7 +60,10 @@
|
|
#{resume_code,jdbcType=INTEGER},
|
|
#{resume_code,jdbcType=INTEGER},
|
|
</if>
|
|
</if>
|
|
<if test="resume_path != null" >
|
|
<if test="resume_path != null" >
|
|
- #{resume_path,jdbcType=VARCHAR}
|
|
|
|
|
|
+ #{resume_path,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="rqcode_path != null" >
|
|
|
|
+ #{rqcode_path,jdbcType=VARCHAR}
|
|
</if>
|
|
</if>
|
|
</trim>
|
|
</trim>
|
|
</insert>
|
|
</insert>
|
|
@@ -73,6 +81,9 @@
|
|
<if test="resume_path != null" >
|
|
<if test="resume_path != null" >
|
|
resume_path = #{resume_path,jdbcType=VARCHAR}
|
|
resume_path = #{resume_path,jdbcType=VARCHAR}
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="rqcode_path != null" >
|
|
|
|
+ rqcode_path = #{rqcode_path,jdbcType=VARCHAR}
|
|
|
|
+ </if>
|
|
</set>
|
|
</set>
|
|
where id = #{id,jdbcType=INTEGER}
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
</update>
|