简历读取基础逻辑添加以及用户语音配置信息字段添加

This commit is contained in:
2025-11-05 15:33:51 +08:00
parent 86e2fe238b
commit 6f2689fd1e
14 changed files with 143 additions and 22 deletions

View File

@@ -81,6 +81,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
delete from hotake_problem_base_info where id = #{id}
</delete>
<delete id="deleteHotakeProblemBaseInfoByUserId" parameterType="Long">
delete from hotake_problem_base_info where user_id = #{userId}
</delete>
<delete id="deleteHotakeProblemBaseInfoByIds" parameterType="String">
delete from hotake_problem_base_info where id in
<foreach item="id" collection="array" open="(" separator="," close=")">