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 { List findAll(String lang); }