zjh
17 小时以前 e7200a1bfc5abf3dac04955dfa533476f535a5ea
ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java
@@ -37,7 +37,7 @@
    /**
     * 查询关键字列表
     */
    @PreAuthorize("@ss.hasPermi('mall:keyword:list')")
//    @PreAuthorize("@ss.hasPermi('mall:keyword:list')")
    @GetMapping("/list")
    public TableDataInfo list(MallKeyword mallKeyword) {
        startPage();
@@ -48,7 +48,7 @@
    /**
     * 导出关键字列表
     */
    @PreAuthorize("@ss.hasPermi('mall:keyword:export')")
//    @PreAuthorize("@ss.hasPermi('mall:keyword:export')")
    @Log(title = "关键字", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, MallKeyword mallKeyword) {
@@ -60,7 +60,7 @@
    /**
     * 获取关键字详细信息
     */
    @PreAuthorize("@ss.hasPermi('mall:keyword:query')")
//    @PreAuthorize("@ss.hasPermi('mall:keyword:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return success(mallKeywordService.selectMallKeywordById(id));
@@ -69,7 +69,7 @@
    /**
     * 新增关键字
     */
    @PreAuthorize("@ss.hasPermi('mall:keyword:add')")
//    @PreAuthorize("@ss.hasPermi('mall:keyword:add')")
    @Log(title = "关键字", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody MallKeyword mallKeyword) {
@@ -79,7 +79,7 @@
    /**
     * 修改关键字
     */
    @PreAuthorize("@ss.hasPermi('mall:keyword:edit')")
//    @PreAuthorize("@ss.hasPermi('mall:keyword:edit')")
    @Log(title = "关键字", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody MallKeyword mallKeyword) {
@@ -89,7 +89,7 @@
    /**
     * 删除关键字
     */
    @PreAuthorize("@ss.hasPermi('mall:keyword:remove')")
//    @PreAuthorize("@ss.hasPermi('mall:keyword:remove')")
    @Log(title = "关键字", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {