guoyuji
2024-04-27 0ebbadc4c9b676c86a88de53ad57f10058725144
1
2
3
4
5
6
7
8
9
10
package com.example.erp.mapper.userInfo;
 
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface PermissionRoleMapper {
    List<String> getUserPermission(Integer loginId);
}