import org.apache.ibatis.annotations.*;
import java.util.List;
@Mapper
public interface MenuMapper {
@Select("select * from menu where parentid=0")
@Results()
List<Menu> getTreeByParentId(int parentId);
}
相关文章:
import org.apache.ibatis.annotations.*;
import java.util.List;
@Mapper
public interface MenuMapper {
@Select("select * from menu where parentid=0")
@Results()
List<Menu> getTreeByParentId(int parentId);
}
相关文章: