廖井涛
2024-03-01 0ba225b5a668c5cc66997fb58f5ada2e3768af6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.example.erp.mapper.userInfo;
 
import com.example.erp.entity.userInfo.SysMenu;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
@Mapper
 
public interface SysMenuMapper {
    @Select("select  a.id, a.menuName from sys_menu as a where a.state=1 order by a.listSort")
    List<SysMenu> findAll();
}