Explorar o código

add 未找到该场景

xiewj hai 1 ano
pai
achega
c5f67c8241

+ 1 - 1
src/main/java/com/fdkankan/openApi/controller/www/SceneController.java

@@ -139,7 +139,7 @@ public class SceneController extends BaseController {
     public ResultData getSceneRaw(@RequestBody @Validated BaseSceneParamVo param) {
         ScenePlus scenePlus = scenePlusService.getByNumAndUserId(this.getUserId(), param.getSceneCode());
         if (ObjectUtils.isEmpty(scenePlus)) {
-            throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
+            throw new BusinessException(ErrorCode.FAILURE_CODE_5005,"未找到该场景");
         }
         SceneEntity sceneEntity = sceneService.findBySceneCode(param.getSceneCode());
         return sceneDataDownloadService.sceneDownloadDepthMapAndPly(param.getSceneCode(),this.getUserId(),sceneEntity);