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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2021-10-06
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-26
  • 2022-01-02
  • 2022-02-09
  • 2021-08-01
  • 2022-12-23
相关资源
相似解决方案