package com.hxzk.gps.controller.Menu; import com.hxzk.gps.entity.Menu.Menu; import com.hxzk.gps.service.Menu.MenuService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** *
* 前端控制器 *
* * @author YuZhiTong * @since 2025-07-23 */ @RestController @RequestMapping("/Menu") public class MenuController { @Autowired MenuService menuService; /** * 获取菜单信息 * @return */ @PostMapping("FindMenuInfo") public List