liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTemplateTargetoptionController.java
@@ -34,7 +34,7 @@
     * 查询模板指标选项库列表
     */
    @ApiOperation("查询模板指标选项库列表")
    @PreAuthorize("@ss.hasPermi('system:targetoption:list')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:list')")
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody IvrLibaTemplateTargetoption ivrLibaTemplateTargetoption) {
        startPage();
@@ -46,7 +46,7 @@
     * 导出模板指标选项库列表
     */
    @ApiOperation("导出模板指标选项库列表")
    @PreAuthorize("@ss.hasPermi('system:targetoption:export')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:export')")
    @Log(title = "模板指标选项库", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, IvrLibaTemplateTargetoption ivrLibaTemplateTargetoption) {
@@ -59,7 +59,7 @@
     * 获取模板指标选项库详细信息
     */
    @ApiOperation("获取模板指标选项库详细信息")
    @PreAuthorize("@ss.hasPermi('system:targetoption:query')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:query')")
    @GetMapping(value = "/getInfo/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return success(ivrLibaTemplateTargetoptionService.selectIvrLibaTemplateTargetoptionById(id));
@@ -69,7 +69,7 @@
     * 新增模板指标选项库
     */
    @ApiOperation("新增模板指标选项库")
    @PreAuthorize("@ss.hasPermi('system:targetoption:add')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:add')")
    @Log(title = "模板指标选项库", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    public AjaxResult add(@RequestBody IvrLibaTemplateTargetoption ivrLibaTemplateTargetoption) {
@@ -80,7 +80,7 @@
     * 修改模板指标选项库
     */
    @ApiOperation("修改模板指标选项库")
    @PreAuthorize("@ss.hasPermi('system:targetoption:edit')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:edit')")
    @Log(title = "模板指标选项库", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    public AjaxResult edit(@RequestBody IvrLibaTemplateTargetoption ivrLibaTemplateTargetoption) {
@@ -91,7 +91,7 @@
     * 删除模板指标选项库
     */
    @ApiOperation("删除模板指标选项库")
    @PreAuthorize("@ss.hasPermi('system:targetoption:remove')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:remove')")
    @Log(title = "模板指标选项库", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {