简历以及招聘人基础逻辑修改

This commit is contained in:
2025-12-09 20:09:46 +08:00
parent 8d76eda22f
commit 65255bafb9
18 changed files with 635 additions and 64 deletions

View File

@@ -0,0 +1,49 @@
package com.vetti.hotake.domain;
import lombok.Data;
import lombok.experimental.Accessors;
import io.swagger.annotations.ApiModelProperty;
import com.vetti.common.annotation.Excel;
import com.vetti.common.core.domain.BaseEntity;
/**
* 候选人面试记录信息对象 hotake_candidate_interview_record_info
*
* @author wangxiangshun
* @date 2025-12-08
*/
@Data
@Accessors(chain = true)
public class HotakeCandidateInterviewRecordInfo extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键ID */
@ApiModelProperty("主键ID")
private Long id;
/** 用户ID */
@ApiModelProperty("用户ID")
private Long userId;
/** 简历ID */
@ApiModelProperty("简历ID")
private Long cvId;
/** 招聘人ID */
@ApiModelProperty("招聘人ID")
private Long recruiterId;
/** 候选人状态Hot、Warm、Cold、Pending */
@ApiModelProperty("候选人状态Hot、Warm、Cold、Pending")
private String candidateStatus;
/** 当前阶段 */
@ApiModelProperty("当前阶段(Applied、Shortlisted、Interview、Offer、Hired)")
private String stage;
/** 最后联系时间 */
@ApiModelProperty("最后联系时间")
private String lastContact;
}

View File

@@ -62,6 +62,15 @@ public class HotakeCvInfo extends BaseEntity
@ApiModelProperty("简历内容MD5 Hash")
private String cvMd5;
@ApiModelProperty("工作经验")
private String experience;
@ApiModelProperty("AI评分")
private String aiMatchScore;
@ApiModelProperty("AI评分百分比")
private String aiMatchScorePercentage;
@ApiModelProperty("简历详细信息-固定模版")
private HotakeCvInfoDto cvInfoDto;

View File

@@ -0,0 +1,69 @@
package com.vetti.hotake.mapper;
import java.util.List;
import com.vetti.hotake.domain.HotakeCandidateInterviewRecordInfo;
/**
* 候选人面试记录信息Mapper接口
*
* @author wangxiangshun
* @date 2025-12-08
*/
public interface HotakeCandidateInterviewRecordInfoMapper
{
/**
* 查询候选人面试记录信息
*
* @param id 候选人面试记录信息主键
* @return 候选人面试记录信息
*/
public HotakeCandidateInterviewRecordInfo selectHotakeCandidateInterviewRecordInfoById(Long id);
/**
* 查询候选人面试记录信息列表
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 候选人面试记录信息集合
*/
public List<HotakeCandidateInterviewRecordInfo> selectHotakeCandidateInterviewRecordInfoList(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
public int insertHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 修改候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
public int updateHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 删除候选人面试记录信息
*
* @param id 候选人面试记录信息主键
* @return 结果
*/
public int deleteHotakeCandidateInterviewRecordInfoById(Long id);
/**
* 批量删除候选人面试记录信息
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteHotakeCandidateInterviewRecordInfoByIds(Long[] ids);
/**
* 批量新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfoList 候选人面试记录信息列表
* @return 结果
*/
public int batchInsertHotakeCandidateInterviewRecordInfo(List<HotakeCandidateInterviewRecordInfo> hotakeCandidateInterviewRecordInfoList);
}

View File

@@ -2,6 +2,7 @@ package com.vetti.hotake.mapper;
import java.util.List;
import com.vetti.hotake.domain.HotakeCvInfo;
import org.apache.ibatis.annotations.Param;
/**
* 简历信息Mapper接口
@@ -66,4 +67,13 @@ public interface HotakeCvInfoMapper
*/
public int batchInsertHotakeCvInfo(List<HotakeCvInfo> hotakeCvInfoList);
/**
* 删除简历信息
*
* @param userId 用户信息ID
* @return 结果
*/
public int deleteHotakeCvInfoByUserIdAndType(@Param("userId") Long userId,@Param("cvFileType") String cvFileType);
}

View File

@@ -0,0 +1,70 @@
package com.vetti.hotake.service;
import java.util.List;
import com.vetti.hotake.domain.HotakeCandidateInterviewRecordInfo;
/**
* 候选人面试记录信息Service接口
*
* @author wangxiangshun
* @date 2025-12-08
*/
public interface IHotakeCandidateInterviewRecordInfoService
{
/**
* 查询候选人面试记录信息
*
* @param id 候选人面试记录信息主键
* @return 候选人面试记录信息
*/
public HotakeCandidateInterviewRecordInfo selectHotakeCandidateInterviewRecordInfoById(Long id);
/**
* 查询候选人面试记录信息列表
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 候选人面试记录信息集合
*/
public List<HotakeCandidateInterviewRecordInfo> selectHotakeCandidateInterviewRecordInfoList(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
public int insertHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 修改候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
public int updateHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 批量删除候选人面试记录信息
*
* @param ids 需要删除的候选人面试记录信息主键集合
* @return 结果
*/
public int deleteHotakeCandidateInterviewRecordInfoByIds(Long[] ids);
/**
* 删除候选人面试记录信息信息
*
* @param id 候选人面试记录信息主键
* @return 结果
*/
public int deleteHotakeCandidateInterviewRecordInfoById(Long id);
/**
* 批量新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfoList 候选人面试记录信息列表
* @return 结果
*/
public int batchInsertHotakeCandidateInterviewRecordInfo(List<HotakeCandidateInterviewRecordInfo> hotakeCandidateInterviewRecordInfoList);
}

View File

@@ -0,0 +1,116 @@
package com.vetti.hotake.service.impl;
import java.util.List;
import com.vetti.common.core.service.BaseServiceImpl;
import com.vetti.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.vetti.hotake.mapper.HotakeCandidateInterviewRecordInfoMapper;
import com.vetti.hotake.domain.HotakeCandidateInterviewRecordInfo;
import com.vetti.hotake.service.IHotakeCandidateInterviewRecordInfoService;
/**
* 候选人面试记录信息Service业务层处理
*
* @author wangxiangshun
* @date 2025-12-08
*/
@SuppressWarnings("all")
@Service
public class HotakeCandidateInterviewRecordInfoServiceImpl extends BaseServiceImpl implements IHotakeCandidateInterviewRecordInfoService
{
@Autowired
private HotakeCandidateInterviewRecordInfoMapper hotakeCandidateInterviewRecordInfoMapper;
/**
* 查询候选人面试记录信息
*
* @param id 候选人面试记录信息主键
* @return 候选人面试记录信息
*/
@Transactional(readOnly = true)
@Override
public HotakeCandidateInterviewRecordInfo selectHotakeCandidateInterviewRecordInfoById(Long id)
{
return hotakeCandidateInterviewRecordInfoMapper.selectHotakeCandidateInterviewRecordInfoById(id);
}
/**
* 查询候选人面试记录信息列表
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 候选人面试记录信息
*/
@Transactional(readOnly = true)
@Override
public List<HotakeCandidateInterviewRecordInfo> selectHotakeCandidateInterviewRecordInfoList(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo)
{
return hotakeCandidateInterviewRecordInfoMapper.selectHotakeCandidateInterviewRecordInfoList(hotakeCandidateInterviewRecordInfo);
}
/**
* 新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
@Transactional(rollbackFor=Exception.class)
@Override
public int insertHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo)
{
return hotakeCandidateInterviewRecordInfoMapper.insertHotakeCandidateInterviewRecordInfo(hotakeCandidateInterviewRecordInfo);
}
/**
* 修改候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
@Transactional(rollbackFor=Exception.class)
@Override
public int updateHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo)
{
return hotakeCandidateInterviewRecordInfoMapper.updateHotakeCandidateInterviewRecordInfo(hotakeCandidateInterviewRecordInfo);
}
/**
* 批量删除候选人面试记录信息
*
* @param ids 需要删除的候选人面试记录信息主键
* @return 结果
*/
@Transactional(rollbackFor=Exception.class)
@Override
public int deleteHotakeCandidateInterviewRecordInfoByIds(Long[] ids)
{
return hotakeCandidateInterviewRecordInfoMapper.deleteHotakeCandidateInterviewRecordInfoByIds(ids);
}
/**
* 删除候选人面试记录信息信息
*
* @param id 候选人面试记录信息主键
* @return 结果
*/
@Transactional(rollbackFor=Exception.class)
@Override
public int deleteHotakeCandidateInterviewRecordInfoById(Long id)
{
return hotakeCandidateInterviewRecordInfoMapper.deleteHotakeCandidateInterviewRecordInfoById(id);
}
/**
* 批量新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfoList 候选人面试记录信息列表
* @return 结果
*/
@Transactional(rollbackFor=Exception.class)
@Override
public int batchInsertHotakeCandidateInterviewRecordInfo(List<HotakeCandidateInterviewRecordInfo> hotakeCandidateInterviewRecordInfoList){
return hotakeCandidateInterviewRecordInfoMapper.batchInsertHotakeCandidateInterviewRecordInfo(hotakeCandidateInterviewRecordInfoList);
}
}

View File

@@ -112,6 +112,8 @@ public class HotakeCvInfoServiceImpl extends BaseServiceImpl implements IHotakeC
@Transactional(rollbackFor = Exception.class)
@Override
public HotakeCvInfo insertHotakeCvInfo(HotakeCvInfo hotakeCvInfo) {
//删除原先的CV简历信息
hotakeCvInfoMapper.deleteHotakeCvInfoByUserIdAndType(SecurityUtils.getUserId(),"cv");
fill(FillTypeEnum.INSERT.getCode(), hotakeCvInfo);
String fileSuffix = FileUtil.getSuffix(hotakeCvInfo.getCvUrl());
if (StrUtil.isNotEmpty(fileSuffix)) {
@@ -247,12 +249,14 @@ public class HotakeCvInfoServiceImpl extends BaseServiceImpl implements IHotakeC
.object(cvInfo.getCvUrl())
.build());
String contents = FileContentUtil.readFileContent(inputStream, cvInfo.getCvFileSuffix());
log.info("简历信息:{}",contents);
//验证文件内容是否改变,如果未改变不进行模型解析直接返回原有结果
String md5Hash = MD5.create().digestHex16(contents);
if(StrUtil.isNotEmpty(md5Hash) && md5Hash.equals(cvInfo.getCvMd5())){
//直接返回简历结果
return cvInfo;
}
cvInfo.setCvMd5(md5Hash);
//生成简历模版数据信息
HotakeCvInfoDto cvInfoDto = handleAnalysisCvInfo(contents);
cvInfo.setCvInfoDto(cvInfoDto);
@@ -285,7 +289,7 @@ public class HotakeCvInfoServiceImpl extends BaseServiceImpl implements IHotakeC
List<Map<String,String>> list = new LinkedList();
Map<String,String> entity = new HashMap<>();
entity.put("role","user");
entity.put("content","从下面提供的文本中提取所有能识别到的简历信息只提取原文中存在的内容不要补充、不推测、不总结。需要提取的字段包括name姓名或人名、phone电话号码、email电子邮件地址、position岗位或者简历中自己期望的职位等、location地点或者地址、家庭住址、links所有链接地址、currentWork(当前工作公司)、about关于我/自我介绍、skills_tools关键资格许可证、注册/会员资格、认证、languages语言能力,主要就是Languages下面的语言、experience工作经历,除了title、company、location、durationStart、durationEnd,其他的都放到description里面,并且description里面要根据换行符分成不同的content),日期要拆分成开始时间(durationStart)和结束时间(durationEnd)、education教育经历,日期要拆分成开始时间(durationStart)和结束时间(durationEnd))。请将提取结果以结构化 JSON 格式返回,格式如下:{ \\\"name\\\": \\\"\\\", \\\"phone\\\": \\\"\\\", \\\"email\\\": \\\"\\\", \\\"links\\\": [{\\\"content\\\":\\\"\\\"}], \\\"about\\\": \\\"\\\", \\\"skillsTools\\\": [{\\\"content\\\":\\\"\\\"}], \\\"languages\\\": [{\\\"content\\\":\\\"\\\"}], \\\"experience\\\": [{\\\"title\\\": \\\"\\\", \\\"company\\\": \\\"\\\",\\\"location\\\": \\\"\\\",\\\"durationStart\\\": \\\"\\\",\\\"durationEnd\\\": \\\"\\\",\\\"description\\\": [{\\\"content\\\":\\\"\\\"}]}], \\\"education\\\": [{\\\"degree\\\": \\\"\\\",\\\"institution\\\": \\\"\\\",\\\"durationStart\\\": \\\"\\\",\\\"durationEnd\\\": \\\"\\\"}] }。字段不存在则返回 null 或空数组。只返回标准可解析的 JSON结构 ,不要多余的```json等信息不要解释说明不要改写内容。以下为待处理文本"+contents);
entity.put("content","从下面提供的文本中提取所有能识别到的简历信息只提取原文中存在的内容不要补充、不推测、不总结。需要提取的字段包括name姓名或人名、phone电话号码、email电子邮件地址、position岗位或者简历中自己期望的职位等、location地点或者地址、家庭住址、links所有链接地址、currentWork(当前工作公司)、about关于我/自我介绍、skills_tools关键资格许可证、注册/会员资格、认证、languages语言能力,主要就是Languages下面的语言、experience工作经历,除了title、company、location、durationStart、durationEnd,其他的都放到description里面,并且description里面要根据换行符分成不同的content),日期要拆分成开始时间(durationStart)和结束时间(durationEnd)、education教育经历,日期要拆分成开始时间(durationStart)和结束时间(durationEnd))。请将提取结果以结构化 JSON 格式返回,格式如下:{ \\\"name\\\": \\\"\\\", \\\"phone\\\": \\\"\\\", \\\"currentWork\\\": \\\"\\\", \\\"position\\\": \\\"\\\", \\\"location\\\": \\\"\\\", \\\"email\\\": \\\"\\\", \\\"links\\\": [{\\\"content\\\":\\\"\\\"}], \\\"about\\\": \\\"\\\", \\\"skillsTools\\\": [{\\\"content\\\":\\\"\\\"}], \\\"languages\\\": [{\\\"content\\\":\\\"\\\"}], \\\"experience\\\": [{\\\"title\\\": \\\"\\\", \\\"company\\\": \\\"\\\",\\\"location\\\": \\\"\\\",\\\"durationStart\\\": \\\"\\\",\\\"durationEnd\\\": \\\"\\\",\\\"description\\\": [{\\\"content\\\":\\\"\\\"}]}], \\\"education\\\": [{\\\"degree\\\": \\\"\\\",\\\"institution\\\": \\\"\\\",\\\"durationStart\\\": \\\"\\\",\\\"durationEnd\\\": \\\"\\\"}] }。字段不存在则返回 null 或空数组。只返回标准可解析的 JSON结构 ,不要多余的```json等信息不要解释说明不要改写内容。以下为待处理文本"+contents);
//根据AI做
list.add(entity);
String resultCv = chatGPTClient.handleAiChat(JSONUtil.toJsonStr(list), "JX");

View File

@@ -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.HotakeCandidateInterviewRecordInfoMapper">
<resultMap type="HotakeCandidateInterviewRecordInfo" id="HotakeCandidateInterviewRecordInfoResult">
<result property="id" column="id" />
<result property="userId" column="user_id" />
<result property="cvId" column="cv_id" />
<result property="recruiterId" column="recruiter_id" />
<result property="candidateStatus" column="candidate_status" />
<result property="stage" column="stage" />
<result property="lastContact" column="last_contact" />
<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="selectHotakeCandidateInterviewRecordInfoVo">
select id, user_id, cv_id, recruiter_id, candidate_status, stage, last_contact, del_flag, create_by, create_time, update_by, update_time, remark from hotake_candidate_interview_record_info
</sql>
<select id="selectHotakeCandidateInterviewRecordInfoList" parameterType="HotakeCandidateInterviewRecordInfo" resultMap="HotakeCandidateInterviewRecordInfoResult">
<include refid="selectHotakeCandidateInterviewRecordInfoVo"/>
<where>
<if test="userId != null "> and user_id = #{userId}</if>
<if test="cvId != null "> and cv_id = #{cvId}</if>
<if test="recruiterId != null "> and recruiter_id = #{recruiterId}</if>
<if test="candidateStatus != null and candidateStatus != ''"> and candidate_status = #{candidateStatus}</if>
<if test="stage != null and stage != ''"> and stage = #{stage}</if>
<if test="lastContact != null and lastContact != ''"> and last_contact = #{lastContact}</if>
</where>
</select>
<select id="selectHotakeCandidateInterviewRecordInfoById" parameterType="Long" resultMap="HotakeCandidateInterviewRecordInfoResult">
<include refid="selectHotakeCandidateInterviewRecordInfoVo"/>
where id = #{id}
</select>
<insert id="insertHotakeCandidateInterviewRecordInfo" parameterType="HotakeCandidateInterviewRecordInfo" useGeneratedKeys="true" keyProperty="id">
insert into hotake_candidate_interview_record_info
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="userId != null">user_id,</if>
<if test="cvId != null">cv_id,</if>
<if test="recruiterId != null">recruiter_id,</if>
<if test="candidateStatus != null">candidate_status,</if>
<if test="stage != null">stage,</if>
<if test="lastContact != null">last_contact,</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="userId != null">#{userId},</if>
<if test="cvId != null">#{cvId},</if>
<if test="recruiterId != null">#{recruiterId},</if>
<if test="candidateStatus != null">#{candidateStatus},</if>
<if test="stage != null">#{stage},</if>
<if test="lastContact != null">#{lastContact},</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="updateHotakeCandidateInterviewRecordInfo" parameterType="HotakeCandidateInterviewRecordInfo">
update hotake_candidate_interview_record_info
<trim prefix="SET" suffixOverrides=",">
<if test="userId != null">user_id = #{userId},</if>
<if test="cvId != null">cv_id = #{cvId},</if>
<if test="recruiterId != null">recruiter_id = #{recruiterId},</if>
<if test="candidateStatus != null">candidate_status = #{candidateStatus},</if>
<if test="stage != null">stage = #{stage},</if>
<if test="lastContact != null">last_contact = #{lastContact},</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="deleteHotakeCandidateInterviewRecordInfoById" parameterType="Long">
delete from hotake_candidate_interview_record_info where id = #{id}
</delete>
<delete id="deleteHotakeCandidateInterviewRecordInfoByIds" parameterType="String">
delete from hotake_candidate_interview_record_info where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
<insert id="batchInsertHotakeCandidateInterviewRecordInfo">
insert into hotake_candidate_interview_record_info( id, user_id, cv_id, recruiter_id, candidate_status, stage, last_contact, del_flag, create_by, create_time, update_by, update_time, remark,) values
<foreach item="item" index="index" collection="list" separator=",">
( #{item.id}, #{item.userId}, #{item.cvId}, #{item.recruiterId}, #{item.candidateStatus}, #{item.stage}, #{item.lastContact}, #{item.delFlag}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark},)
</foreach>
</insert>
</mapper>

View File

@@ -16,6 +16,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="cvTemplateJson" column="cv_template_json" />
<result property="cvScore" column="cv_score" />
<result property="cvMd5" column="cv_md5" />
<result property="experience" column="experience" />
<result property="aiMatchScore" column="ai_match_score" />
<result property="aiMatchScorePercentage" column="ai_match_score_percentage" />
<result property="delFlag" column="del_flag" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
@@ -25,7 +30,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
<sql id="selectHotakeCvInfoVo">
select id, user_id, cv_name, cv_file_type, cv_url,file_size_show,cv_file_suffix, status,cv_template_json,cv_score,cv_md5,
select id, user_id, cv_name, cv_file_type, cv_url,file_size_show,cv_file_suffix,
status,cv_template_json,cv_score,cv_md5,experience,ai_match_score,ai_match_score_percentage,
del_flag, create_by, create_time, update_by, update_time, remark from hotake_cv_info
</sql>
@@ -60,6 +66,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="cvTemplateJson != null">cv_template_json,</if>
<if test="cvScore != null">cv_score,</if>
<if test="cvMd5 != null">cv_md5,</if>
<if test="experience != null">experience,</if>
<if test="aiMatchScore != null">ai_match_score,</if>
<if test="aiMatchScorePercentage != null">ai_match_score_percentage,</if>
<if test="delFlag != null">del_flag,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
@@ -78,6 +89,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="cvTemplateJson != null">#{cvTemplateJson},</if>
<if test="cvScore != null">#{cvScore},</if>
<if test="cvMd5 != null">#{cvMd5},</if>
<if test="experience != null">#{experience},</if>
<if test="aiMatchScore != null">#{aiMatchScore},</if>
<if test="aiMatchScorePercentage != null">#{aiMatchScorePercentage},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
@@ -100,6 +116,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="cvTemplateJson != null">cv_template_json = #{cvTemplateJson},</if>
<if test="cvScore != null">cv_score = #{cvScore},</if>
<if test="cvMd5 != null">cv_md5 = #{cvMd5},</if>
<if test="experience != null">experience = #{experience},</if>
<if test="aiMatchScore != null">ai_match_score = #{aiMatchScore},</if>
<if test="aiMatchScorePercentage != null">ai_match_score_percentage = #{aiMatchScorePercentage},</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>
@@ -114,6 +135,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
delete from hotake_cv_info where id = #{id}
</delete>
<delete id="deleteHotakeCvInfoByUserIdAndType" >
delete from hotake_cv_info where user_id = #{userId} and cv_file_type = #{cvFileType}
</delete>
<delete id="deleteHotakeCvInfoByIds" parameterType="String">
delete from hotake_cv_info where id in
<foreach item="id" collection="array" open="(" separator="," close=")">