liusheng
2024-04-24 01c9667cfb06970564e837dc343d5cee0eb3aed7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTemplateTargetController.java
@@ -60,9 +60,9 @@
     */
    @ApiOperation("获取模版问题指标库详细信息")
    @PreAuthorize("@ss.hasPermi('system:target:query')")
    @GetMapping(value = "/getInfo/{ID}")
    public AjaxResult getInfo(@PathVariable("ID") Long ID) {
        return success(ivrLibaTemplateTargetService.selectIvrLibaTemplateTargetByID(ID));
    @GetMapping(value = "/getInfo/{id}")
    public AjaxResult getInfo(@PathVariable("ID") Long id) {
        return success(ivrLibaTemplateTargetService.selectIvrLibaTemplateTargetByID(id));
    }
    /**