| | |
| | | return service.addStation(stationName1,stationName2,stationName3); |
| | | } |
| | | |
| | | @ApiOperation(value = "编辑台站") |
| | | @GetMapping("updateStation") |
| | | public Response updateStation(@RequestParam(required = false) String stationName1 |
| | | ,@RequestParam(required = false) String stationName2 |
| | | ,@RequestParam(required = false) String stationName3 |
| | | ,@RequestParam(required = false) String updateStationName1 |
| | | ,@RequestParam(required = false) String updateStationName2 |
| | | ,@RequestParam(required = false) String updateStationName3){ |
| | | return service.updateStation(stationName1,stationName2,stationName3,updateStationName1,updateStationName2,updateStationName3); |
| | | } |
| | | |
| | | @ApiOperation(value = "删除台站") |
| | | @GetMapping("deleteStation") |
| | | public Response deleteStation(@RequestParam(required = false) String stationName1 |
| | | ,@RequestParam(required = false) String stationName2 |
| | | ,@RequestParam(required = false) String stationName3){ |
| | | return service.deleteStation(stationName1,stationName2,stationName3); |
| | | } |
| | | |
| | | @ApiOperation(value = "台站下添加文件") |
| | | @GetMapping("addFileInStation") |
| | | public Response addFileInStation(@RequestParam String stationName,@RequestParam String FilePath){ |