支持默认获取人脸

This commit is contained in:
2024-12-16 19:01:52 +08:00
parent dab3f4356f
commit d527a8fdce
11 changed files with 40 additions and 7 deletions

View File

@ -43,4 +43,6 @@ public interface AppScenicService {
ApiResponse<List<ContentPageVO>> contentList(Long scenicId);
ApiResponse<ScenicLoginRespVO> login(ScenicLoginReq scenicLoginReq) throws Exception;
ApiResponse<List<ContentPageVO>> contentListUseDefaultFace();
}

View File

@ -46,7 +46,8 @@ public interface GoodsService {
* @param userId
* @return
*/
ApiResponse<Integer> getAllTaskStatus(Long userId ,Long scenicId);
ApiResponse<Integer> getAllTaskStatus(Long userId ,Long faceId);
ApiResponse<Integer> getAllTaskStatus(Long userId);
ApiResponse<Integer> getTemplateTaskStatus(Long userId, Long templateId);
}