liusheng
2024-05-12 f243bb8af00a2464d16536d42150a4107f87b4ae
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));
    }
    /**