廖井涛
2024-03-27 59ef6e9b5b8aff7614711c2afdba23a460ac1c56
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 {
 
    List<SysMenu> findAll(String lang);
}