| | |
| | | import com.dy.pipIrrGlobal.excel.CellWriteHandler; |
| | | import com.dy.pipIrrGlobal.excel.ExcelUtil; |
| | | import com.dy.pipIrrGlobal.pojoPr.PrIntake; |
| | | import com.dy.pipIrrGlobal.voPr.VoAllIntake; |
| | | import com.dy.pipIrrGlobal.voPr.VoIntake; |
| | | import com.dy.pipIrrGlobal.voPr.VoOnLineIntake; |
| | | import com.dy.pipIrrGlobal.voSe.VoActiveCard; |
| | | import com.dy.pipIrrProject.intake.qo.OnLineIntakesQO; |
| | | import com.dy.pipIrrProject.result.ProjectResultCode; |
| | | import com.taobao.api.ApiException; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | |
| | | }) |
| | | @GetMapping(path = "all") |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<PrIntake>>> all() { |
| | | public BaseResponse<QueryResultVo<List<VoAllIntake>>> all() { |
| | | try { |
| | | QueryResultVo<List<PrIntake>> res = this.intakeSv.selectAll(); |
| | | QueryResultVo<List<VoAllIntake>> res = this.intakeSv.selectAll(); |
| | | if (res == null) { |
| | | return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage()); |
| | | } else { |
| | |
| | | schema = @Schema(implementation = PrIntake.class))} |
| | | ) |
| | | }) |
| | | @GetMapping(path = "one/{id}") |
| | | @GetMapping(path = "one") |
| | | @SsoAop() |
| | | public BaseResponse<PrIntake> one(@PathVariable("id") Long id) { |
| | | public BaseResponse<VoAllIntake> one(@RequestParam("id") Long id) { |
| | | if (this.intakeSv.selectById(id) == null) { |
| | | return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage()); |
| | | } else { |
| | |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<VoIntake>>> getIntakes(QueryVo vo) { |
| | | try { |
| | | QueryResultVo<List<VoIntake>> res = intakeSv.getIntakes(vo); |
| | | if (res == null) { |
| | | return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage()); |
| | | } |
| | | return BaseResponseUtils.buildSuccess(res); |
| | | return BaseResponseUtils.buildSuccess(intakeSv.getIntakes(vo)); |
| | | } catch (Exception e) { |
| | | log.error("获取取水口记录异常", e); |
| | | return BaseResponseUtils.buildException(e.getMessage()); |
| | |
| | | } |
| | | |
| | | /** |
| | | * 此功能已經移植到remote模塊的MonitroCtrl中 |
| | | * 获取取水口列表(在线和不在线) |
| | | * |
| | | * @param qo |
| | | * @return |
| | | */ |
| | | @GetMapping(path = "all_intakes") |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<VoOnLineIntake>>> getAllIntakes(OnLineIntakesQO qo) { |
| | | @GetMapping(path = "all_intakes") |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<VoOnLineIntake>>> getAllIntakes(OnLineIntakesQO qo) { |
| | | try { |
| | | QueryResultVo<List<VoOnLineIntake>> res = intakeSv.selectOnLineIntakes(qo); |
| | | return BaseResponseUtils.buildSuccess(res); |
| | |
| | | log.error("查询取水口异常", e); |
| | | return BaseResponseUtils.buildException(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | } |
| | | */ |
| | | /** |
| | | * 根据操作员获取常用取水口(在线和不在线) |
| | | * |