| | |
| | | @Api(tags="告警管理-设备告警历史查询") |
| | | @RestController |
| | | @RequestMapping("DevalarmDataHistoryAction") |
| | | public class DevalarmDataHistoryController { |
| | | public class DevalarmDataHistoryController extends BaseController{ |
| | | |
| | | @Autowired |
| | | private DevalarmDataHistoryService service; |
| | |
| | | //设备告警历史查询 |
| | | @ApiOperation(value = "设备告警历史查询") |
| | | @PostMapping("serchByCondition") |
| | | public Response serchByCondition(@RequestBody DevAlarmPar param) throws ParseException { |
| | | public Response serchByCondition(@RequestBody DevAlarmPar param) throws ParseException, InterruptedException { |
| | | //return service.serchByCondition(par); |
| | | return service.getPageInfo(param); |
| | | } |