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.listSort") List findAll() ; }