岗位业务逻辑完善
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.vetti.hotake.mapper.HotakeInitScreQuestionsReplyRecordInfoMapper">
|
||||
|
||||
<resultMap type="HotakeInitScreQuestionsReplyRecordInfo" id="HotakeInitScreQuestionsReplyRecordInfoResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="roleId" column="role_id" />
|
||||
<result property="candidateId" column="candidate_id" />
|
||||
<result property="questionId" column="question_id" />
|
||||
<result property="answerConnect" column="answer_connect" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectHotakeInitScreQuestionsReplyRecordInfoVo">
|
||||
select id, role_id, candidate_id, question_id, answer_connect, del_flag, create_by, create_time, update_by, update_time, remark from hotake_init_scre_questions_reply_record_info
|
||||
</sql>
|
||||
|
||||
<select id="selectHotakeInitScreQuestionsReplyRecordInfoList" parameterType="HotakeInitScreQuestionsReplyRecordInfo" resultMap="HotakeInitScreQuestionsReplyRecordInfoResult">
|
||||
<include refid="selectHotakeInitScreQuestionsReplyRecordInfoVo"/>
|
||||
<where>
|
||||
<if test="roleId != null "> and role_id = #{roleId}</if>
|
||||
<if test="candidateId != null "> and candidate_id = #{candidateId}</if>
|
||||
<if test="questionId != null "> and question_id = #{questionId}</if>
|
||||
<if test="answerConnect != null and answerConnect != ''"> and answer_connect = #{answerConnect}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectHotakeInitScreQuestionsReplyRecordInfoById" parameterType="Long" resultMap="HotakeInitScreQuestionsReplyRecordInfoResult">
|
||||
<include refid="selectHotakeInitScreQuestionsReplyRecordInfoVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertHotakeInitScreQuestionsReplyRecordInfo" parameterType="HotakeInitScreQuestionsReplyRecordInfo" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into hotake_init_scre_questions_reply_record_info
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="roleId != null">role_id,</if>
|
||||
<if test="candidateId != null">candidate_id,</if>
|
||||
<if test="questionId != null">question_id,</if>
|
||||
<if test="answerConnect != null">answer_connect,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="roleId != null">#{roleId},</if>
|
||||
<if test="candidateId != null">#{candidateId},</if>
|
||||
<if test="questionId != null">#{questionId},</if>
|
||||
<if test="answerConnect != null">#{answerConnect},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateHotakeInitScreQuestionsReplyRecordInfo" parameterType="HotakeInitScreQuestionsReplyRecordInfo">
|
||||
update hotake_init_scre_questions_reply_record_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="roleId != null">role_id = #{roleId},</if>
|
||||
<if test="candidateId != null">candidate_id = #{candidateId},</if>
|
||||
<if test="questionId != null">question_id = #{questionId},</if>
|
||||
<if test="answerConnect != null">answer_connect = #{answerConnect},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteHotakeInitScreQuestionsReplyRecordInfoById" parameterType="Long">
|
||||
delete from hotake_init_scre_questions_reply_record_info where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteHotakeInitScreQuestionsReplyRecordInfoByIds" parameterType="String">
|
||||
delete from hotake_init_scre_questions_reply_record_info where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<insert id="batchInsertHotakeInitScreQuestionsReplyRecordInfo">
|
||||
insert into hotake_init_scre_questions_reply_record_info( id, role_id, candidate_id, question_id, answer_connect, del_flag, create_by, create_time, update_by, update_time, remark) values
|
||||
<foreach item="item" index="index" collection="list" separator=",">
|
||||
( #{item.id}, #{item.roleId}, #{item.candidateId}, #{item.questionId}, #{item.answerConnect}, #{item.delFlag}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark})
|
||||
</foreach>
|
||||
</insert>
|
||||
</mapper>
|
||||
@@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.vetti.hotake.mapper.HotakeInitialScreeningQuestionsInfoMapper">
|
||||
|
||||
<resultMap type="HotakeInitialScreeningQuestionsInfo" id="HotakeInitialScreeningQuestionsInfoResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="roleId" column="role_id" />
|
||||
<result property="recruiterId" column="recruiter_id" />
|
||||
<result property="questionTitle" column="question_title" />
|
||||
<result property="questionType" column="question_type" />
|
||||
<result property="answerOptions" column="answer_options" />
|
||||
<result property="requiredField" column="required_field" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectHotakeInitialScreeningQuestionsInfoVo">
|
||||
select id, role_id, recruiter_id, question_title, question_type, answer_options, required_field, del_flag, create_by, create_time, update_by, update_time, remark from hotake_initial_screening_questions_info
|
||||
</sql>
|
||||
|
||||
<select id="selectHotakeInitialScreeningQuestionsInfoList" parameterType="HotakeInitialScreeningQuestionsInfo" resultMap="HotakeInitialScreeningQuestionsInfoResult">
|
||||
<include refid="selectHotakeInitialScreeningQuestionsInfoVo"/>
|
||||
<where>
|
||||
<if test="roleId != null "> and role_id = #{roleId}</if>
|
||||
<if test="recruiterId != null "> and recruiter_id = #{recruiterId}</if>
|
||||
<if test="questionTitle != null and questionTitle != ''"> and question_title = #{questionTitle}</if>
|
||||
<if test="questionType != null and questionType != ''"> and question_type = #{questionType}</if>
|
||||
<if test="answerOptions != null and answerOptions != ''"> and answer_options = #{answerOptions}</if>
|
||||
<if test="requiredField != null and requiredField != ''"> and required_field = #{requiredField}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectHotakeInitialScreeningQuestionsInfoById" parameterType="Long" resultMap="HotakeInitialScreeningQuestionsInfoResult">
|
||||
<include refid="selectHotakeInitialScreeningQuestionsInfoVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertHotakeInitialScreeningQuestionsInfo" parameterType="HotakeInitialScreeningQuestionsInfo" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into hotake_initial_screening_questions_info
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="roleId != null">role_id,</if>
|
||||
<if test="recruiterId != null">recruiter_id,</if>
|
||||
<if test="questionTitle != null">question_title,</if>
|
||||
<if test="questionType != null">question_type,</if>
|
||||
<if test="answerOptions != null">answer_options,</if>
|
||||
<if test="requiredField != null">required_field,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="roleId != null">#{roleId},</if>
|
||||
<if test="recruiterId != null">#{recruiterId},</if>
|
||||
<if test="questionTitle != null">#{questionTitle},</if>
|
||||
<if test="questionType != null">#{questionType},</if>
|
||||
<if test="answerOptions != null">#{answerOptions},</if>
|
||||
<if test="requiredField != null">#{requiredField},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateHotakeInitialScreeningQuestionsInfo" parameterType="HotakeInitialScreeningQuestionsInfo">
|
||||
update hotake_initial_screening_questions_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="roleId != null">role_id = #{roleId},</if>
|
||||
<if test="recruiterId != null">recruiter_id = #{recruiterId},</if>
|
||||
<if test="questionTitle != null">question_title = #{questionTitle},</if>
|
||||
<if test="questionType != null">question_type = #{questionType},</if>
|
||||
<if test="answerOptions != null">answer_options = #{answerOptions},</if>
|
||||
<if test="requiredField != null">required_field = #{requiredField},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteHotakeInitialScreeningQuestionsInfoById" parameterType="Long">
|
||||
delete from hotake_initial_screening_questions_info where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteHotakeInitialScreeningQuestionsInfoByIds" parameterType="String">
|
||||
delete from hotake_initial_screening_questions_info where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<insert id="batchInsertHotakeInitialScreeningQuestionsInfo">
|
||||
insert into hotake_initial_screening_questions_info( id, role_id, recruiter_id, question_title, question_type, answer_options, required_field, del_flag, create_by, create_time, update_by, update_time, remark) values
|
||||
<foreach item="item" index="index" collection="list" separator=",">
|
||||
( #{item.id}, #{item.roleId}, #{item.recruiterId}, #{item.questionTitle}, #{item.questionType}, #{item.answerOptions}, #{item.requiredField}, #{item.delFlag}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark})
|
||||
</foreach>
|
||||
</insert>
|
||||
</mapper>
|
||||
@@ -6,8 +6,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<resultMap type="HotakeRolesInfo" id="HotakeRolesInfoResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="uuid" column="uuid" />
|
||||
<result property="recruiterId" column="recruiter_id" />
|
||||
<result property="roleName" column="role_name" />
|
||||
<result property="companyName" column="company_name" />
|
||||
<result property="roleType" column="role_type" />
|
||||
<result property="locationType" column="location_type" />
|
||||
<result property="locations" column="locations" />
|
||||
<result property="applied" column="applied" />
|
||||
@@ -24,14 +27,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="descriptionTone" column="description_tone" />
|
||||
<result property="aboutRole" column="about_role" />
|
||||
<result property="responsibilities" column="responsibilities" />
|
||||
<result property="roleBenefits" column="role_benefits" />
|
||||
<result property="roleBenefitsJson" column="role_benefits_json" />
|
||||
<result property="publishingChannelsJson" column="publishing_channels_json" />
|
||||
<result property="publishingScheduleDate" column="publishing_schedule_date" />
|
||||
<result property="publishingScheduleTime" column="publishing_schedule_time" />
|
||||
<result property="applicationDeadline" column="application_deadline" />
|
||||
<result property="posted" column="posted" />
|
||||
<result property="languages" column="languages" />
|
||||
<result property="dataType" column="data_type" />
|
||||
<result property="operStep" column="oper_step" />
|
||||
<result property="status" column="status" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
@@ -41,12 +46,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectHotakeRolesInfoVo">
|
||||
select id, recruiter_id, role_name, location_type, locations, applied, job_Level, job_type, job_experience, salary_start, salary_end, required_skills_json, nice_to_have_skills_json, education_requirements_json, accept_equivalent_work_flag, certifications_licenses_json, description_tone, about_role, responsibilities, role_benefits, publishing_channels_json, publishing_schedule_date, publishing_schedule_time, application_deadline, posted, data_type, oper_step, del_flag, create_by, create_time, update_by, update_time, remark from hotake_roles_info
|
||||
select id, uuid,recruiter_id, role_name,company_name,role_type, location_type, locations, applied, job_Level, job_type, job_experience, salary_start, salary_end, required_skills_json,
|
||||
nice_to_have_skills_json, education_requirements_json, accept_equivalent_work_flag,
|
||||
certifications_licenses_json, description_tone, about_role, responsibilities, role_benefits_json,
|
||||
publishing_channels_json, publishing_schedule_date, publishing_schedule_time, application_deadline, posted, languages,data_type,
|
||||
oper_step, status,del_flag, create_by, create_time, update_by, update_time, remark from hotake_roles_info
|
||||
</sql>
|
||||
|
||||
<select id="selectHotakeRolesInfoList" parameterType="HotakeRolesInfo" resultMap="HotakeRolesInfoResult">
|
||||
<include refid="selectHotakeRolesInfoVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="uuid != null "> and uuid = #{uuid}</if>
|
||||
<if test="recruiterId != null "> and recruiter_id = #{recruiterId}</if>
|
||||
<if test="roleName != null and roleName != ''"> and role_name like concat('%', #{roleName}, '%')</if>
|
||||
<if test="locationType != null and locationType != ''"> and location_type = #{locationType}</if>
|
||||
@@ -65,7 +75,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="descriptionTone != null and descriptionTone != ''"> and description_tone = #{descriptionTone}</if>
|
||||
<if test="aboutRole != null and aboutRole != ''"> and about_role = #{aboutRole}</if>
|
||||
<if test="responsibilities != null and responsibilities != ''"> and responsibilities = #{responsibilities}</if>
|
||||
<if test="roleBenefits != null and roleBenefits != ''"> and role_benefits = #{roleBenefits}</if>
|
||||
<if test="roleBenefitsJson != null and roleBenefitsJson != ''"> and role_benefits_json = #{roleBenefitsJson}</if>
|
||||
<if test="publishingChannelsJson != null and publishingChannelsJson != ''"> and publishing_channels_json = #{publishingChannelsJson}</if>
|
||||
<if test="publishingScheduleDate != null and publishingScheduleDate != ''"> and publishing_schedule_date = #{publishingScheduleDate}</if>
|
||||
<if test="publishingScheduleTime != null and publishingScheduleTime != ''"> and publishing_schedule_time = #{publishingScheduleTime}</if>
|
||||
@@ -73,19 +83,29 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="posted != null and posted != ''"> and posted = #{posted}</if>
|
||||
<if test="dataType != null and dataType != ''"> and data_type = #{dataType}</if>
|
||||
<if test="operStep != null and operStep != ''"> and oper_step = #{operStep}</if>
|
||||
<if test="status != null and status != ''"> and status = #{status}</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
<select id="selectHotakeRolesInfoById" parameterType="Long" resultMap="HotakeRolesInfoResult">
|
||||
<include refid="selectHotakeRolesInfoVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<select id="selectHotakeRolesInfoByUuid" parameterType="String" resultMap="HotakeRolesInfoResult">
|
||||
<include refid="selectHotakeRolesInfoVo"/>
|
||||
where uuid = #{uuid}
|
||||
</select>
|
||||
|
||||
<insert id="insertHotakeRolesInfo" parameterType="HotakeRolesInfo" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into hotake_roles_info
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="uuid != null">uuid,</if>
|
||||
<if test="recruiterId != null">recruiter_id,</if>
|
||||
<if test="roleName != null">role_name,</if>
|
||||
<if test="companyName != null">company_name,</if>
|
||||
<if test="roleType != null">role_type,</if>
|
||||
<if test="locationType != null">location_type,</if>
|
||||
<if test="locations != null">locations,</if>
|
||||
<if test="applied != null">applied,</if>
|
||||
@@ -102,14 +122,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="descriptionTone != null">description_tone,</if>
|
||||
<if test="aboutRole != null">about_role,</if>
|
||||
<if test="responsibilities != null">responsibilities,</if>
|
||||
<if test="roleBenefits != null">role_benefits,</if>
|
||||
<if test="roleBenefitsJson != null">role_benefits_json,</if>
|
||||
<if test="publishingChannelsJson != null">publishing_channels_json,</if>
|
||||
<if test="publishingScheduleDate != null">publishing_schedule_date,</if>
|
||||
<if test="publishingScheduleTime != null">publishing_schedule_time,</if>
|
||||
<if test="applicationDeadline != null">application_deadline,</if>
|
||||
<if test="posted != null">posted,</if>
|
||||
<if test="languages != null">languages,</if>
|
||||
<if test="dataType != null">data_type,</if>
|
||||
<if test="operStep != null">oper_step,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
@@ -118,8 +140,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="uuid != null">#{uuid},</if>
|
||||
<if test="recruiterId != null">#{recruiterId},</if>
|
||||
<if test="roleName != null">#{roleName},</if>
|
||||
<if test="companyName != null">#{companyName},</if>
|
||||
<if test="roleType != null">#{roleType},</if>
|
||||
<if test="locationType != null">#{locationType},</if>
|
||||
<if test="locations != null">#{locations},</if>
|
||||
<if test="applied != null">#{applied},</if>
|
||||
@@ -136,14 +161,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="descriptionTone != null">#{descriptionTone},</if>
|
||||
<if test="aboutRole != null">#{aboutRole},</if>
|
||||
<if test="responsibilities != null">#{responsibilities},</if>
|
||||
<if test="roleBenefits != null">#{roleBenefits},</if>
|
||||
<if test="roleBenefitsJson != null">#{roleBenefitsJson},</if>
|
||||
<if test="publishingChannelsJson != null">#{publishingChannelsJson},</if>
|
||||
<if test="publishingScheduleDate != null">#{publishingScheduleDate},</if>
|
||||
<if test="publishingScheduleTime != null">#{publishingScheduleTime},</if>
|
||||
<if test="applicationDeadline != null">#{applicationDeadline},</if>
|
||||
<if test="posted != null">#{posted},</if>
|
||||
<if test="languages != null">#{languages},</if>
|
||||
<if test="dataType != null">#{dataType},</if>
|
||||
<if test="operStep != null">#{operStep},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
@@ -158,6 +185,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="recruiterId != null">recruiter_id = #{recruiterId},</if>
|
||||
<if test="roleName != null">role_name = #{roleName},</if>
|
||||
<if test="companyName != null">company_name = #{companyName},</if>
|
||||
<if test="roleType != null">role_type = #{roleType},</if>
|
||||
<if test="locationType != null">location_type = #{locationType},</if>
|
||||
<if test="locations != null">locations = #{locations},</if>
|
||||
<if test="applied != null">applied = #{applied},</if>
|
||||
@@ -174,14 +203,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="descriptionTone != null">description_tone = #{descriptionTone},</if>
|
||||
<if test="aboutRole != null">about_role = #{aboutRole},</if>
|
||||
<if test="responsibilities != null">responsibilities = #{responsibilities},</if>
|
||||
<if test="roleBenefits != null">role_benefits = #{roleBenefits},</if>
|
||||
<if test="roleBenefitsJson != null">role_benefits_json = #{roleBenefitsJson},</if>
|
||||
<if test="publishingChannelsJson != null">publishing_channels_json = #{publishingChannelsJson},</if>
|
||||
<if test="publishingScheduleDate != null">publishing_schedule_date = #{publishingScheduleDate},</if>
|
||||
<if test="publishingScheduleTime != null">publishing_schedule_time = #{publishingScheduleTime},</if>
|
||||
<if test="applicationDeadline != null">application_deadline = #{applicationDeadline},</if>
|
||||
<if test="posted != null">posted = #{posted},</if>
|
||||
<if test="languages != null">languages = #{languages},</if>
|
||||
<if test="dataType != null">data_type = #{dataType},</if>
|
||||
<if test="operStep != null">oper_step = #{operStep},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
@@ -192,6 +223,46 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<update id="updateAllHotakeRolesInfo" parameterType="HotakeRolesInfo">
|
||||
update hotake_roles_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
recruiter_id = #{recruiterId},
|
||||
role_name = #{roleName},
|
||||
company_name = #{companyName},
|
||||
role_type = #{roleType},
|
||||
location_type = #{locationType},
|
||||
locations = #{locations},
|
||||
applied = #{applied},
|
||||
job_Level = #{jobLevel},
|
||||
job_type = #{jobType},
|
||||
job_experience = #{jobExperience},
|
||||
salary_start = #{salaryStart},
|
||||
salary_end = #{salaryEnd},
|
||||
required_skills_json = #{requiredSkillsJson},
|
||||
nice_to_have_skills_json = #{niceToHaveSkillsJson},
|
||||
education_requirements_json = #{educationRequirementsJson},
|
||||
accept_equivalent_work_flag = #{acceptEquivalentWorkFlag},
|
||||
certifications_licenses_json = #{certificationsLicensesJson},
|
||||
description_tone = #{descriptionTone},
|
||||
about_role = #{aboutRole},
|
||||
responsibilities = #{responsibilities},
|
||||
role_benefits_json = #{roleBenefitsJson},
|
||||
publishing_channels_json = #{publishingChannelsJson},
|
||||
publishing_schedule_date = #{publishingScheduleDate},
|
||||
publishing_schedule_time = #{publishingScheduleTime},
|
||||
application_deadline = #{applicationDeadline},
|
||||
posted = #{posted},
|
||||
languages = #{languages},
|
||||
data_type = #{dataType},
|
||||
oper_step = #{operStep},
|
||||
status = #{status},
|
||||
update_by = #{updateBy},
|
||||
update_time = #{updateTime},
|
||||
remark = #{remark},
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteHotakeRolesInfoById" parameterType="Long">
|
||||
delete from hotake_roles_info where id = #{id}
|
||||
</delete>
|
||||
@@ -204,9 +275,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</delete>
|
||||
|
||||
<insert id="batchInsertHotakeRolesInfo">
|
||||
insert into hotake_roles_info( id, recruiter_id, role_name, location_type, locations, applied, job_Level, job_type, job_experience, salary_start, salary_end, required_skills_json, nice_to_have_skills_json, education_requirements_json, accept_equivalent_work_flag, certifications_licenses_json, description_tone, about_role, responsibilities, role_benefits, publishing_channels_json, publishing_schedule_date, publishing_schedule_time, application_deadline, posted, data_type, oper_step, del_flag, create_by, create_time, update_by, update_time, remark,) values
|
||||
insert into hotake_roles_info( id, recruiter_id, role_name, location_type, locations, applied, job_Level, job_type, job_experience, salary_start, salary_end, required_skills_json, nice_to_have_skills_json, education_requirements_json, accept_equivalent_work_flag, certifications_licenses_json, description_tone, about_role, responsibilities, role_benefits_json, publishing_channels_json, publishing_schedule_date, publishing_schedule_time, application_deadline, posted, data_type, oper_step, del_flag, create_by, create_time, update_by, update_time, remark) values
|
||||
<foreach item="item" index="index" collection="list" separator=",">
|
||||
( #{item.id}, #{item.recruiterId}, #{item.roleName}, #{item.locationType}, #{item.locations}, #{item.applied}, #{item.jobLevel}, #{item.jobType}, #{item.jobExperience}, #{item.salaryStart}, #{item.salaryEnd}, #{item.requiredSkillsJson}, #{item.niceToHaveSkillsJson}, #{item.educationRequirementsJson}, #{item.acceptEquivalentWorkFlag}, #{item.certificationsLicensesJson}, #{item.descriptionTone}, #{item.aboutRole}, #{item.responsibilities}, #{item.roleBenefits}, #{item.publishingChannelsJson}, #{item.publishingScheduleDate}, #{item.publishingScheduleTime}, #{item.applicationDeadline}, #{item.posted}, #{item.dataType}, #{item.operStep}, #{item.delFlag}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark},)
|
||||
( #{item.id}, #{item.recruiterId}, #{item.roleName}, #{item.locationType}, #{item.locations}, #{item.applied}, #{item.jobLevel}, #{item.jobType}, #{item.jobExperience}, #{item.salaryStart}, #{item.salaryEnd}, #{item.requiredSkillsJson}, #{item.niceToHaveSkillsJson}, #{item.educationRequirementsJson}, #{item.acceptEquivalentWorkFlag}, #{item.certificationsLicensesJson}, #{item.descriptionTone}, #{item.aboutRole}, #{item.responsibilities}, #{item.roleBenefitsJson}, #{item.publishingChannelsJson}, #{item.publishingScheduleDate}, #{item.publishingScheduleTime}, #{item.applicationDeadline}, #{item.posted}, #{item.dataType}, #{item.operStep}, #{item.delFlag}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark})
|
||||
</foreach>
|
||||
</insert>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user