wu
2024-03-26 e9b0059e5ee9551f7b9b81c9358ce3d42886ae9a
1
2
3
4
5
6
7
8
9
10
11
12
13
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")
     List<SysMenuItem> findAll() ;
}