|
@@ -35,7 +35,7 @@
|
|
|
insert into base_job_information_info
|
|
|
(id_,person_id,photo_,service_desc,Intended_industries,Intended_position,
|
|
|
hope_salary,method_,work_experience,education_,status_,create_by,create_time,
|
|
|
- update_by,update_time,del_flag,browse_number,address_,job_status)
|
|
|
+ update_by,update_time,del_flag,browse_number,address_)
|
|
|
values
|
|
|
(
|
|
|
#{id,jdbcType=VARCHAR}
|
|
@@ -56,7 +56,6 @@
|
|
|
,#{delFlag,jdbcType= NUMERIC }
|
|
|
,#{browseNumber,jdbcType= NUMERIC }
|
|
|
,#{address,jdbcType=VARCHAR}
|
|
|
-,#{jobStatus,jdbcType=VARCHAR}
|
|
|
)
|
|
|
]]>
|
|
|
</insert>
|
|
@@ -117,9 +116,6 @@
|
|
|
<if test="address!=null">
|
|
|
address_=#{address,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="jobStatus!=null">
|
|
|
- job_status=#{jobStatus,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
</set>
|
|
|
where id_=#{id}
|
|
|
</update>
|
|
@@ -168,7 +164,8 @@
|
|
|
<![CDATA[
|
|
|
SELECT
|
|
|
a.*,
|
|
|
- b.is_anonymous as is_anonymous
|
|
|
+ b.is_anonymous as is_anonymous,
|
|
|
+ b.job_status as job_status
|
|
|
FROM
|
|
|
base_job_information_info a
|
|
|
left join base_person_info b on a.person_id = b.id_
|
|
@@ -223,8 +220,8 @@
|
|
|
</if>
|
|
|
<if test="searchParams.jobStatus != null">
|
|
|
<![CDATA[
|
|
|
- and ( a.job_status = #{searchParams.jobStatus}
|
|
|
- or a.job_status is null )
|
|
|
+ and ( b.job_status = #{searchParams.jobStatus}
|
|
|
+ or b.job_status is null )
|
|
|
]]>
|
|
|
</if>
|
|
|
</where>
|