岗位表添加岗位特征字段

This commit is contained in:
chenshaohua
2026-07-24 17:28:06 +08:00
parent 7ce8ea524d
commit d65f8d0d5c
3 changed files with 11 additions and 2 deletions

View File

@@ -173,4 +173,7 @@ public class ESJobDocument
@ApiModelProperty("重点人群-1农民工、2团场职工、3失业人员、4零就业家庭、5零工人员、6退役军人") @ApiModelProperty("重点人群-1农民工、2团场职工、3失业人员、4零就业家庭、5零工人员、6退役军人")
private String keyPopulations; private String keyPopulations;
@ApiModelProperty("岗位特征行政、后勤、管理、技术、销售等字典job_feature添加")
private String jobFeature;
} }

View File

@@ -254,6 +254,9 @@ public class Job extends BaseEntity
@ApiModelProperty("状态 0上架1下架") @ApiModelProperty("状态 0上架1下架")
private String jobStatus; private String jobStatus;
@ApiModelProperty("岗位特征行政、后勤、管理、技术、销售等字典job_feature添加")
private String jobFeature;
@TableField(exist = false) @TableField(exist = false)
@ApiModelProperty("户外招聘会岗位审核状态") @ApiModelProperty("户外招聘会岗位审核状态")
private String fairReviewStatus; private String fairReviewStatus;

View File

@@ -45,6 +45,7 @@
<result property="reviewStatus" column="review_status" /> <result property="reviewStatus" column="review_status" />
<result property="isKeyPopulations" column="is_key_populations" /> <result property="isKeyPopulations" column="is_key_populations" />
<result property="keyPopulations" column="key_populations" /> <result property="keyPopulations" column="key_populations" />
<result property="jobFeature" column="job_feature" />
</resultMap> </resultMap>
@@ -94,6 +95,7 @@
<result property="jobStatus" column="job_status" /> <result property="jobStatus" column="job_status" />
<result property="isKeyPopulations" column="is_key_populations" /> <result property="isKeyPopulations" column="is_key_populations" />
<result property="keyPopulations" column="key_populations" /> <result property="keyPopulations" column="key_populations" />
<result property="jobFeature" column="job_feature" />
<association property="companyVo" resultMap="CompanyResult"/> <association property="companyVo" resultMap="CompanyResult"/>
<association property="jobContactList" resultMap="JomContactResult"/> <association property="jobContactList" resultMap="JomContactResult"/>
@@ -155,7 +157,7 @@
job_location_area_code, posting_date, vacancies, latitude, longitude, "view", company_id, job_location_area_code, posting_date, vacancies, latitude, longitude, "view", company_id,
is_hot, is_urgent, apply_num, description, is_publish, data_source, job_url, remark, del_flag, is_hot, is_urgent, apply_num, description, is_publish, data_source, job_url, remark, del_flag,
create_by, create_time, row_id, job_category,job_type,job_address,job_status,is_key_populations, create_by, create_time, row_id, job_category,job_type,job_address,job_status,is_key_populations,
key_populations key_populations,job_feature
) VALUES ) VALUES
<foreach collection="list" item="job" separator=","> <foreach collection="list" item="job" separator=",">
( (
@@ -164,7 +166,8 @@
#{job.vacancies}, #{job.latitude}, #{job.longitude}, #{job.view}, #{job.companyId}, #{job.vacancies}, #{job.latitude}, #{job.longitude}, #{job.view}, #{job.companyId},
#{job.isHot}, #{job.isUrgent}, #{job.applyNum}, #{job.description}, #{job.isPublish}, #{job.dataSource}, #{job.isHot}, #{job.isUrgent}, #{job.applyNum}, #{job.description}, #{job.isPublish}, #{job.dataSource},
#{job.jobUrl}, #{job.remark}, #{job.delFlag}, #{job.createBy}, #{job.createTime}, #{job.jobUrl}, #{job.remark}, #{job.delFlag}, #{job.createBy}, #{job.createTime},
#{job.rowId}, #{job.jobCategory},#{job.jobType},#{job.jobAddress},#{job.jobStatus},#{job.isKeyPopulations},#{job.keyPopulations} #{job.rowId}, #{job.jobCategory},#{job.jobType},#{job.jobAddress},#{job.jobStatus},#{job.isKeyPopulations},
#{job.keyPopulations},#{job.jobFeature}
) )
</foreach> </foreach>
</insert> </insert>