liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrTaskTemplateTargetoptionController.java
@@ -34,7 +34,7 @@
     * 查询随访任务模板指标选项库列表
     */
    @ApiOperation("查询随访任务模板指标选项库列表")
    @PreAuthorize("@ss.hasPermi('system:targetoption:list')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:list')")
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody IvrTaskTemplateTargetoption ivrTaskTemplateTargetoption) {
        startPage();
@@ -45,7 +45,7 @@
    /**
     * 导出随访任务模板指标选项库列表
     */
    @PreAuthorize("@ss.hasPermi('system:targetoption:export')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:export')")
    @ApiOperation("导出随访任务模板指标选项库列表")
    @PostMapping("/export")
    public void export(HttpServletResponse response, IvrTaskTemplateTargetoption ivrTaskTemplateTargetoption) {
@@ -58,7 +58,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(ivrTaskTemplateTargetoptionService.selectIvrTaskTemplateTargetoptionById(id));
@@ -67,7 +67,7 @@
    /**
     * 新增随访任务模板指标选项库
     */
    @PreAuthorize("@ss.hasPermi('system:targetoption:add')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:add')")
    @ApiOperation("新增随访任务模板指标选项库")
    @PostMapping("/add")
    public AjaxResult add(@RequestBody IvrTaskTemplateTargetoption ivrTaskTemplateTargetoption) {
@@ -77,7 +77,7 @@
    /**
     * 修改随访任务模板指标选项库
     */
    @PreAuthorize("@ss.hasPermi('system:targetoption:edit')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:edit')")
    @ApiOperation("修改随访任务模板指标选项库")
    @PostMapping("/edit")
    public AjaxResult edit(@RequestBody IvrTaskTemplateTargetoption ivrTaskTemplateTargetoption) {
@@ -87,7 +87,7 @@
    /**
     * 删除随访任务模板指标选项库
     */
    @PreAuthorize("@ss.hasPermi('system:targetoption:remove')")
    //@PreAuthorize("@ss.hasPermi('system:targetoption:remove')")
    @ApiOperation("删除随访任务模板指标选项库")
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {