You've already forked FrameTour-BE
乱七八糟的修改,其他外围流程逻辑完善
This commit is contained in:
@ -23,7 +23,7 @@ public interface FaceMapper {
|
||||
int deleteByIds(@Param("list") List<Long> ids);
|
||||
int update(FaceEntity face);
|
||||
|
||||
FaceRespVO getByMemberId(Long userId);
|
||||
FaceRespVO getByMemberId(@Param("userId") Long userId, @Param("scenicId") Long scenicId);
|
||||
|
||||
int finishedJourney(Long faceId);
|
||||
}
|
||||
|
@ -18,6 +18,8 @@ public interface SourceMapper {
|
||||
|
||||
SourceRespVO getById(Long id);
|
||||
|
||||
List<SourceEntity> listBySampleIds(List<Long> sourceIds);
|
||||
|
||||
int add(SourceEntity source);
|
||||
|
||||
int deleteById(Long id);
|
||||
@ -37,4 +39,6 @@ public interface SourceMapper {
|
||||
* @return
|
||||
*/
|
||||
int countByMemberId(String userId);
|
||||
|
||||
List<SourceEntity> listVideoBySampleIds(List<Long> sampleId);
|
||||
}
|
||||
|
@ -50,4 +50,8 @@ public interface TaskMapper {
|
||||
void deassign(@Param("taskId") Long taskId);
|
||||
|
||||
int countTask(TaskReqQuery taskReqQuery);
|
||||
|
||||
int setStart(TaskEntity taskUpdate);
|
||||
int setSuccess(TaskEntity taskUpdate);
|
||||
int setFail(TaskEntity taskUpdate);
|
||||
}
|
||||
|
@ -32,4 +32,5 @@ public interface TemplateMapper {
|
||||
int updateConfigById(TemplateConfigEntity templateConfigEntity);
|
||||
int deleteConfigByTemplateId(Long templateId);
|
||||
int deleteConfigById(Long id);
|
||||
List<TemplateEntity> listByScenicId(Long scenicId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user