修改岗位详情-添加岗位联系人

This commit is contained in:
sh
2025-12-04 17:52:22 +08:00
parent 5c02fb16ca
commit 879bd8c009
3 changed files with 14 additions and 6 deletions

View File

@@ -34,6 +34,7 @@
<result property="explainUrl" column="explain_url" />
<result property="cover" column="cover" />
<result property="jobType" column="job_type" />
<result property="jobAddress" column="job_address" />
</resultMap>
@@ -77,6 +78,7 @@
<result property="scale" column="scale" />
<result property="companyNature" column="company_nature" />
<result property="code" column="code" />
<result property="jobAddress" column="job_address" />
<association property="companyVo" resultMap="CompanyResult"/>
</resultMap>
@@ -95,7 +97,7 @@
</resultMap>
<sql id="selectJobVo">
select job_id, job_title, min_salary, max_salary, education, experience, company_name, job_location, posting_date, vacancies, del_flag, create_by, create_time, update_by, update_time, remark, latitude, longitude, "view", company_id , is_hot ,apply_num,is_publish, description,job_location_area_code,data_source,job_url,job_category,is_explain,explain_url,cover,job_type from job
select job_id, job_title, min_salary, max_salary, education, experience, company_name, job_location, posting_date, vacancies, del_flag, create_by, create_time, update_by, update_time, remark, latitude, longitude, "view", company_id , is_hot ,apply_num,is_publish, description,job_location_area_code,data_source,job_url,job_category,is_explain,explain_url,cover,job_type,job_address from job
</sql>
<insert id="insertBatchRowWork">
INSERT INTO row_work (
@@ -125,7 +127,7 @@
job_title, min_salary, max_salary, education, experience, company_name, job_location,
job_location_area_code, posting_date, vacancies, latitude, longitude, "view", company_id,
is_hot, apply_num, description, is_publish, data_source, job_url, remark, del_flag,
create_by, create_time, row_id, job_category,jobType
create_by, create_time, row_id, job_category,jobType,job_address
) VALUES
<foreach collection="list" item="job" separator=",">
(
@@ -134,7 +136,7 @@
#{job.vacancies}, #{job.latitude}, #{job.longitude}, #{job.view}, #{job.companyId},
#{job.isHot}, #{job.applyNum}, #{job.description}, #{job.isPublish}, #{job.dataSource},
#{job.jobUrl}, #{job.remark}, #{job.delFlag}, #{job.createBy}, #{job.createTime},
#{job.rowId}, #{job.jobCategory},#{job.jobType}
#{job.rowId}, #{job.jobCategory},#{job.jobType},#{job.jobAddress}
)
</foreach>
</insert>