You've already forked FrameTour-BE
bug
This commit is contained in:
@ -59,4 +59,6 @@ public interface SourceMapper {
|
||||
SourceEntity querySameVideo(Long faceSampleId, Long deviceId);
|
||||
|
||||
int hasRelationTo(Long memberId, Long sourceId, int type);
|
||||
|
||||
List<SourceEntity> listVideoByFaceRelation(Long faceId);
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
package com.ycwl.basic.mapper;
|
||||
|
||||
import com.ycwl.basic.model.pc.task.entity.TaskEntity;
|
||||
import com.ycwl.basic.model.pc.video.entity.MemberVideoEntity;
|
||||
import com.ycwl.basic.model.pc.video.entity.VideoEntity;
|
||||
import com.ycwl.basic.model.pc.video.req.VideoReqQuery;
|
||||
@ -32,4 +33,14 @@ public interface VideoMapper {
|
||||
List<VideoRespVO> queryByRelation(VideoReqQuery videoReqQuery);
|
||||
|
||||
List<MemberVideoEntity> userFaceTemplateVideo(Long userId, Long faceId, Long templateId);
|
||||
|
||||
List<TaskEntity> listTaskByFaceRelation(Long userId, Long faceId);
|
||||
|
||||
List<TaskEntity> listTaskByFaceTemplateRelation(Long userId, Long faceId, Long templateId);
|
||||
|
||||
List<TaskEntity> listTaskByScenicRelation(Long userId, Long scenicId);
|
||||
|
||||
MemberVideoEntity queryUserVideo(Long userId, Long videoId);
|
||||
|
||||
int updateRelationWhenTaskSuccess(Long taskId, Long videoId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user