| | |
| | | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.highdatas.mdm.entity.MenuMapping; |
| | | import com.highdatas.mdm.entity.SysMenu; |
| | | import com.highdatas.mdm.pojo.Result; |
| | | |
| | | import javax.servlet.http.HttpSession; |
| | |
| | | MenuMapping create(String json, HttpSession session); |
| | | |
| | | |
| | | MenuMapping create(MenuMapping menuMapping); |
| | | |
| | | boolean update(String json); |
| | | |
| | | Result getMapping(HttpSession session, String id); |
| | | |
| | | SysMenu getMenuByTableName(String tableName); |
| | | MenuMapping getMenuMappingByTableName(String tableName); |
| | | |
| | | String getTableNameByMenu(String menuId); |
| | | } |