liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLocallibraryController.java
@@ -23,7 +23,7 @@
/**
 * 宣教库Controller
 *
 *
 * @author smartor
 * @date 2023-03-04
 */
@@ -37,7 +37,7 @@
    /**
     * 查询宣教库列表
     */
    @PreAuthorize("@ss.hasPermi('smartor:helibrary:list')")
    //@PreAuthorize("@ss.hasPermi('smartor:helibrary:list')")
   @PostMapping("/list")
    public TableDataInfo list(@RequestBody HeLocallibrary heLocallibrary)
    {
@@ -49,7 +49,7 @@
    /**
     * 导出宣教库列表
     */
    @PreAuthorize("@ss.hasPermi('smartor:helibrary:export')")
    //@PreAuthorize("@ss.hasPermi('smartor:helibrary:export')")
    @Log(title = "宣教库", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, HeLocallibrary heLocallibrary)
@@ -62,7 +62,7 @@
    /**
     * 获取宣教库详细信息
     */
    @PreAuthorize("@ss.hasPermi('smartor:helibrary:query')")
    //@PreAuthorize("@ss.hasPermi('smartor:helibrary:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {
@@ -72,7 +72,7 @@
    /**
     * 新增宣教库
     */
    @PreAuthorize("@ss.hasPermi('smartor:helibrary:add')")
    //@PreAuthorize("@ss.hasPermi('smartor:helibrary:add')")
    @Log(title = "宣教库", businessType = BusinessType.INSERT)
    @PostMapping("add")
    public AjaxResult add(@RequestBody HeLocallibrary heLocallibrary)
@@ -83,7 +83,7 @@
    /**
     * 修改宣教库
     */
    @PreAuthorize("@ss.hasPermi('smartor:helibrary:edit')")
    //@PreAuthorize("@ss.hasPermi('smartor:helibrary:edit')")
    @Log(title = "宣教库", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    public AjaxResult edit(@RequestBody HeLocallibrary heLocallibrary)
@@ -94,7 +94,7 @@
    /**
     * 删除宣教库
     */
    @PreAuthorize("@ss.hasPermi('smartor:helibrary:remove')")
    //@PreAuthorize("@ss.hasPermi('smartor:helibrary:remove')")
    @Log(title = "宣教库", businessType = BusinessType.DELETE)
   @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)