管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-09-23 84ac95ecd2935edc16bd38a60d7de58b87212a2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.lf.server.controller.operate;
 
import org.springframework.web.bind.annotation.Mapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 菜单管理
 * @author sws
 * @date   2022-09-22
 */
@RestController
@RequestMapping("/menu")
public class MenuController {
    /**
     * 查询所有菜单
     *
     * @return List
     */
    @RequestMapping({"/selectMenus"})
    public Object selectMenus() {
        return null;
    }
 
    @RequestMapping({"/selectOne"})
    public Object selectOne() {
        return null;
    }
 
    @RequestMapping({"/insert"})
    public Object insert() {
        return null;
    }
 
    @RequestMapping({"/deleteOne"})
    public Object deleteOne() {
        return null;
    }
 
    @RequestMapping(value = "/deleteMulti", method = RequestMethod.POST, produces = "application/json; charset=UTF-8")
    public Object deleteMulti() {
        return null;
    }
 
    @RequestMapping(value = "/update", method = RequestMethod.POST, produces = "application/json; charset=UTF-8")
    public Object update() {
        return null;
    }
}