package com.zhang.hospital.dao;
import com.zhang.hospital.entity.Menu;
import java.util.List;
public interface MenuDao
{
Menu getMenuById(Long menuId);
List<Menu> getAllMenus();
void updateMenuByKey(Menu menu1);
List<Menu> checkNameSameLevel(Menu menus);
void insMenu(Menu menus);
void updateMenu(Menu menus);
List<Menu> getMenuByParentId(Long menuId);
void delMenuById(Long menuId);
}

最近下载
最近浏览