严智鑫
2024-04-15 a666ac61a9a95f325cc0c926394d0d6f35c56c36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mes.mapper.userInfo;
 
import com.mes.entity.userInfo.SysMenuItem;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
@Mapper
public interface SysMenuItemMapper {
 
     @Select("select * from `sys_menu_item` as a where a.state=1 order by a.menuId,a.listSort;")
 
 
     List<SysMenuItem> findAll() ;
}