| | |
| | | return paramService.updateXmlByFileParam(fileParam,filePath); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("通过修改属性窗口值来修改文件值(json)") |
| | | @PostMapping("updateXmlByParamMap") |
| | | public Response updateXmlByParamMap(@RequestBody JSONObject paramJson, @RequestParam String filePath){ |
| | |
| | | return paramService.updateXmlByParamMap(map,filePath); |
| | | } |
| | | |
| | | @ApiOperation("根据fileId通过修改属性窗口值来修改数据库属性") |
| | | @PostMapping("updateFileParamByFileId") |
| | | public Response updateFileParamByFileId(@RequestBody FileParam fileParam,@RequestParam String fileId){ |
| | | return paramService.updateFileParamByFileId(fileParam,fileId); |
| | | } |
| | | |
| | | @ApiOperation("更改台站下公用参数") |
| | | @PostMapping("updateFileParamByStationId") |
| | | public Response updateFileParamByStationId(@RequestBody FileParam fileParam,@RequestParam int stationId){ |
| | | return paramService.updateFileParamByStationId(fileParam,stationId); |
| | | } |
| | | |
| | | @ApiOperation("对比时下拉选择站点下挂在的文件信息") |
| | | @GetMapping("selectFileInStation") |
| | | public Response selectFileInStation(){ |