增加腾讯音视频上传完成回调成功日志及修改mapper

This commit is contained in:
pserimal
2023-06-26 14:21:29 +08:00
parent 14d9066a6e
commit 9abdbfcb2a
6 changed files with 23 additions and 6 deletions

View File

@@ -478,4 +478,15 @@
WHERE interview_plan_id = #{interviewPlanId}
</select>
<!-- 根据 room_id 添加 process_info -->
<update id="addVideoUrl">
UPDATE hy_partner_interview
SET process_info = IF(process_info IS NULL, #{videoUrl}, CONCAT(process_info, ',' ,#{videoUrl}))
WHERE interview_plan_id = (
SELECT id
FROM hy_partner_interview_plan
WHERE room_id = #{roomId}
)
</update>
</mapper>