| | |
| | | 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; |
| | | } |
| | | } |