AI 优化修改点逻辑处理

This commit is contained in:
2026-01-18 11:21:34 +08:00
parent 7ceeb37b92
commit 6fa40308ee
6 changed files with 149 additions and 48 deletions

View File

@@ -25,6 +25,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="analyzedAttachmentJson" column="analyzed_attachment_json" />
<result property="dataType" column="data_type" />
<result property="delFlag" column="del_flag" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
@@ -35,7 +37,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<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,experience,ai_match_score,ai_match_score_percentage,cv_optimize_json,analyzed_attachment_json,
status,cv_template_json,cv_score,cv_md5,experience,ai_match_score,ai_match_score_percentage,
cv_optimize_json,analyzed_attachment_json,data_type,
del_flag, create_by, create_time, update_by, update_time, remark from hotake_cv_info
</sql>
@@ -48,6 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="cvUrl != null and cvUrl != ''"> and cv_url = #{cvUrl}</if>
<if test="cvFileSuffix != null and cvFileSuffix != ''"> and cv_file_suffix = #{cvFileSuffix}</if>
<if test="status != null and status != ''"> and status = #{status}</if>
<if test="dataType != null and dataType != ''"> and data_type = #{dataType}</if>
<if test="delFlag != null and delFlag != ''"> and del_flag = #{delFlag}</if>
</where>
</select>
@@ -78,6 +82,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="analyzedAttachmentJson != null">analyzed_attachment_json,</if>
<if test="dataType != null">data_type,</if>
<if test="delFlag != null">del_flag,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
@@ -103,6 +109,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="cvOptimizeJson != null">#{cvOptimizeJson},</if>
<if test="analyzedAttachmentJson != null">#{analyzedAttachmentJson},</if>
<if test="dataType != null">#{dataType},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="createBy != null">#{createBy},</if>
@@ -135,6 +142,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="analyzedAttachmentJson != null">analyzed_attachment_json = #{analyzedAttachmentJson},</if>
<if test="dataType != null">data_type = #{dataType},</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>