You've already forked FrameTour-BE
feat(face):人脸上传接口增加scene参数
- 在AioDeviceController中调用faceUpload时添加空字符串scene参数 - 在LyCompatibleController中调用faceUpload时添加空字符串scene参数- 在AppFaceController中增加scene请求参数并传递给faceService - 修改FaceService接口和实现类faceUpload方法签名,添加scene参数- 移除多个控制器和服务中未使用的导入依赖 - 调整代码格式以符合规范
This commit is contained in:
@@ -28,7 +28,7 @@ public interface FaceService {
|
||||
ApiResponse<Integer> deleteById(Long id);
|
||||
ApiResponse<Integer> deleteByIds(List<Long> ids);
|
||||
|
||||
FaceRecognizeResp faceUpload(MultipartFile file, Long scenicId, Long userId);
|
||||
FaceRecognizeResp faceUpload(MultipartFile file, Long scenicId, Long userId, String scene);
|
||||
|
||||
List<FaceRespVO> listByUser(Long userId, String scenicId);
|
||||
SearchFaceRespVo matchFaceId(Long faceId);
|
||||
|
||||
Reference in New Issue
Block a user