| | |
| | | @Autowired |
| | | DataDisplayService dataDisplayService; |
| | | |
| | | @GetMapping("monitorPointDataDisplay") |
| | | public ResultMessage monitorPointDataDisplay(MonitorPointDataDisplayForm form){ |
| | | @PostMapping("monitorPointDataDisplay") |
| | | public ResultMessage monitorPointDataDisplay( @RequestBody MonitorPointDataDisplayForm form){ |
| | | //判断是否缺少参数 |
| | | if (!form.valid()) |
| | | if (form.getMacs()==null && form.getEndTime() ==null && form.getStartTime() ==null && form.getReportType()==null) |
| | | return ResultMessage.fail(ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode(), |
| | | ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); |
| | | |