Merge branch 'uat-temp-castle-2501090929-44791' into dev

dev-temp-nht-202502180000-customprint
臧学普 4 months ago
commit d1fbcb8ee7

@ -83,12 +83,13 @@ public class MesEarlyWarningKanBanController {
*/ */
@GetMapping(path = "/get/{id}/{organizeCode}") @GetMapping(path = "/get/{id}/{organizeCode}")
public ResultBean getKanbanData(@PathVariable Long id,@PathVariable String organizeCode){ public ResultBean getKanbanData(@PathVariable Long id,@PathVariable String organizeCode){
MesEarlyWarningKanBan kanbanData;
try { try {
mesEarlyWarningService.getKanbanData(id,organizeCode); kanbanData = mesEarlyWarningService.getKanbanData(id, organizeCode);
} catch (Exception e) { } catch (Exception e) {
return ResultBean.fail(e.getMessage()); return ResultBean.fail(e.getMessage());
} }
return ResultBean.success("删除成功"); return ResultBean.success("查询成功").setResultObject(kanbanData);
} }

Loading…
Cancel
Save