|
@@ -22,6 +22,8 @@
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="intention" column="intention_" />
|
|
<result property="intention" column="intention_" />
|
|
|
|
+ <result property="isAnonymous" column="is_anonymous" />
|
|
|
|
+ <result property="jobStatus" column="job_status" />
|
|
</resultMap>
|
|
</resultMap>
|
|
<insert id="insert" parameterType="com.jpsoft.employment.modules.base.entity.PersonInfo">
|
|
<insert id="insert" parameterType="com.jpsoft.employment.modules.base.entity.PersonInfo">
|
|
<!--
|
|
<!--
|
|
@@ -33,7 +35,7 @@
|
|
insert into base_person_info
|
|
insert into base_person_info
|
|
(id_,user_name,password_,real_name,phone_,id_card,open_id,photo_,gender_,age_,
|
|
(id_,user_name,password_,real_name,phone_,id_card,open_id,photo_,gender_,age_,
|
|
enterprise_id,status_,create_by,create_time,update_by,update_time,del_flag,
|
|
enterprise_id,status_,create_by,create_time,update_by,update_time,del_flag,
|
|
- intention_)
|
|
|
|
|
|
+ intention_,is_anonymous,job_status)
|
|
values
|
|
values
|
|
(
|
|
(
|
|
#{id,jdbcType=VARCHAR}
|
|
#{id,jdbcType=VARCHAR}
|
|
@@ -54,6 +56,8 @@
|
|
,#{updateTime,jdbcType= TIMESTAMP }
|
|
,#{updateTime,jdbcType= TIMESTAMP }
|
|
,#{delFlag,jdbcType= NUMERIC }
|
|
,#{delFlag,jdbcType= NUMERIC }
|
|
,#{intention,jdbcType=VARCHAR}
|
|
,#{intention,jdbcType=VARCHAR}
|
|
|
|
+,#{isAnonymous,jdbcType= NUMERIC }
|
|
|
|
+,#{jobStatus,jdbcType=VARCHAR}
|
|
)
|
|
)
|
|
]]>
|
|
]]>
|
|
</insert>
|
|
</insert>
|
|
@@ -114,6 +118,12 @@
|
|
<if test="intention!=null">
|
|
<if test="intention!=null">
|
|
intention_=#{intention,jdbcType=VARCHAR},
|
|
intention_=#{intention,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="isAnonymous!=null">
|
|
|
|
+ is_anonymous=#{isAnonymous,jdbcType= NUMERIC },
|
|
|
|
+ </if>
|
|
|
|
+ <if test="jobStatus!=null">
|
|
|
|
+ job_status=#{jobStatus,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
</set>
|
|
</set>
|
|
where id_=#{id}
|
|
where id_=#{id}
|
|
</update>
|
|
</update>
|