|
|
|
@ -58,9 +58,9 @@ public class ShowAlarmController extends BladeController {
|
|
|
|
|
@GetMapping("/alarmVideos") |
|
|
|
|
@ApiOperationSupport(order = 4) |
|
|
|
|
@ApiOperation(value = "站点") |
|
|
|
|
public R<List<AlarmVideoVo>> alarmVideos(@ApiParam("站点编号") @RequestParam String stationCode, |
|
|
|
|
@ApiParam("设备编号") @RequestParam String deviceCode, |
|
|
|
|
@ApiParam("监测点ID") @RequestParam String realId) { |
|
|
|
|
public R<List<AlarmVideoVo>> alarmVideos(@ApiParam("站点编号") @RequestParam(required = false) String stationCode, |
|
|
|
|
@ApiParam("设备编号") @RequestParam(required = false) String deviceCode, |
|
|
|
|
@ApiParam("监测点ID") @RequestParam(required = false) String realId) { |
|
|
|
|
return R.data(alarmService.alarmVideos(stationCode,deviceCode,realId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|