liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/SvyLibTemplateTargetoptionWjxController.java
@@ -31,7 +31,7 @@
    /**
     * 查询问卷问题指标选项库列表
     */
    @PreAuthorize("@ss.hasPermi('system:wjx:list')")
    //@PreAuthorize("@ss.hasPermi('system:wjx:list')")
    @GetMapping("/list")
    public TableDataInfo list(SvyLibTemplateTargetoptionWjx svyLibTemplateTargetoptionWjx)
    {
@@ -43,7 +43,7 @@
    /**
     * 导出问卷问题指标选项库列表
     */
    @PreAuthorize("@ss.hasPermi('system:wjx:export')")
    //@PreAuthorize("@ss.hasPermi('system:wjx:export')")
    @Log(title = "问卷问题指标选项库", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, SvyLibTemplateTargetoptionWjx svyLibTemplateTargetoptionWjx)
@@ -56,7 +56,7 @@
    /**
     * 获取问卷问题指标选项库详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:wjx:query')")
    //@PreAuthorize("@ss.hasPermi('system:wjx:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {
@@ -66,7 +66,7 @@
    /**
     * 新增问卷问题指标选项库
     */
    @PreAuthorize("@ss.hasPermi('system:wjx:add')")
    //@PreAuthorize("@ss.hasPermi('system:wjx:add')")
    @Log(title = "问卷问题指标选项库", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody SvyLibTemplateTargetoptionWjx svyLibTemplateTargetoptionWjx)
@@ -77,7 +77,7 @@
    /**
     * 修改问卷问题指标选项库
     */
    @PreAuthorize("@ss.hasPermi('system:wjx:edit')")
    //@PreAuthorize("@ss.hasPermi('system:wjx:edit')")
    @Log(title = "问卷问题指标选项库", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody SvyLibTemplateTargetoptionWjx svyLibTemplateTargetoptionWjx)
@@ -88,7 +88,7 @@
    /**
     * 删除问卷问题指标选项库
     */
    @PreAuthorize("@ss.hasPermi('system:wjx:remove')")
    //@PreAuthorize("@ss.hasPermi('system:wjx:remove')")
    @Log(title = "问卷问题指标选项库", businessType = BusinessType.DELETE)
   @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)