|
|
@ -386,4 +386,11 @@ public class StationVideoTypeController extends BladeController { |
|
|
|
public R<List<StationVideoTypeEntity>> getVideoByPointCodes(@RequestParam @ApiParam("视频设备编号") String pointCodes) { |
|
|
|
public R<List<StationVideoTypeEntity>> getVideoByPointCodes(@RequestParam @ApiParam("视频设备编号") String pointCodes) { |
|
|
|
return R.data(stationVideoTypeService.getVideoByPointCodes(pointCodes)); |
|
|
|
return R.data(stationVideoTypeService.getVideoByPointCodes(pointCodes)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping ("/listAll") |
|
|
|
|
|
|
|
@ApiOperationSupport(order = 200) |
|
|
|
|
|
|
|
@ApiOperation(value = "获取所有站点视频") |
|
|
|
|
|
|
|
public R<List<StationVideoTypeVO>> listAll() { |
|
|
|
|
|
|
|
return R.data(stationVideoTypeService.listAll()); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|