forked from ard/ruoyi-api

zhangnaisong
2024-03-01 6c804d6af91dc76456db5602e87500bd503d1543
app查询兴趣点改为post方式提交
1 files modified
4 ■■■■ changed files
ard-work/src/main/java/com/ruoyi/alarmpoints/well/controller/ArdAlarmpointsWellController.java 4 ●●●● patch | view | raw | blame | history
ard-work/src/main/java/com/ruoyi/alarmpoints/well/controller/ArdAlarmpointsWellController.java
@@ -243,7 +243,7 @@
        return AjaxResult.success(result);
    }
    @GetMapping("/getWellDataByPatrolplanIdAndPosition")
    @PostMapping("/getWellDataByPatrolplanIdAndPosition")
    @ApiOperation("查询最近巡检设备动静态属性")
    public AjaxResult getWellDataByPatrolplanIdAndPosition(@RequestBody Map<String,Object> para){
        SysConfig config = new SysConfig();
@@ -253,7 +253,7 @@
        return AjaxResult.success(result);
    }
    @GetMapping("/getWellById")
    @PostMapping("/getWellById")
    @ApiOperation("根据查询兴趣点基本属性")
    public AjaxResult getWellById(@RequestBody Map<String,String> para){
        ArdAlarmpointsWell result = ardAlarmpointsWellService.getWellById(para.get("id"));