生成视频时发送通知,其他调整

This commit is contained in:
2025-01-06 18:44:53 +08:00
parent 9b32c2fd75
commit 00d53dd197
30 changed files with 403 additions and 83 deletions

View File

@ -115,6 +115,11 @@
from member_video mv
where mv.member_id = #{userId} and mv.face_id = #{faceId}
</select>
<select id="listRelationByTask" resultType="com.ycwl.basic.model.pc.video.entity.MemberVideoEntity">
select mv.*
from member_video mv
where mv.task_id = #{taskId}
</select>
<select id="listRelationByFaceAndTemplate" resultType="com.ycwl.basic.model.pc.video.entity.MemberVideoEntity">
select mv.*
from member_video mv
@ -132,4 +137,10 @@
where member_id = #{userId} and video_id = #{videoId}
limit 1
</select>
<select id="queryRelationByMemberTask" resultType="com.ycwl.basic.model.pc.video.entity.MemberVideoEntity">
select *
from member_video
where member_id = #{userId} and task_id = #{taskId}
limit 1
</select>
</mapper>