From f5a10d5ae1290d8ceefee143815555d59be6ff9a Mon Sep 17 00:00:00 2001 From: Administrator <zhubaomin> Date: 星期四, 23 五月 2024 08:50:58 +0800 Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV --- pipIrr-platform/pipIrr-web/pipIrr-web-irrigate/src/main/java/com/dy/pipIrrIrrigate/project/ProjectCtrl.java | 11 +++-------- 1 files changed, 3 insertions(+), 8 deletions(-) diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-irrigate/src/main/java/com/dy/pipIrrIrrigate/project/ProjectCtrl.java b/pipIrr-platform/pipIrr-web/pipIrr-web-irrigate/src/main/java/com/dy/pipIrrIrrigate/project/ProjectCtrl.java index 9308c6e..6f46207 100644 --- a/pipIrr-platform/pipIrr-web/pipIrr-web-irrigate/src/main/java/com/dy/pipIrrIrrigate/project/ProjectCtrl.java +++ b/pipIrr-platform/pipIrr-web/pipIrr-web-irrigate/src/main/java/com/dy/pipIrrIrrigate/project/ProjectCtrl.java @@ -224,11 +224,9 @@ @SsoAop() public BaseResponse<VoProjectOne> one(@RequestParam Long id) { VoProjectOne irProject = this.projectSv.selectById(id); - if (irProject == null) { - return BaseResponseUtils.buildFail(IrrigateResultCode.NO_PROJECT.getMessage()); - } else { + return BaseResponseUtils.buildSuccess(irProject); - } + } /** @@ -247,12 +245,9 @@ }) @GetMapping(path = "some") @SsoAop() - public BaseResponse<QueryResultVo<List<VoProject>>> getIntakes(QueryVo vo) { + public BaseResponse<QueryResultVo<List<VoProject>>> getProjects(QueryVo vo) { try { QueryResultVo<List<VoProject>> res = projectSv.getProjects(vo); - if (res == null) { - return BaseResponseUtils.buildFail(IrrigateResultCode.NO_PROJECT.getMessage()); - } return BaseResponseUtils.buildSuccess(res); } catch (Exception e) { log.error("鑾峰彇椤圭洰璁板綍寮傚父", e); -- Gitblit v1.8.0