chenlu
2024-05-21 18fb477ea840e3dd4b19ff63f68f994d31fab43b
1
2
3
4
5
6
7
8
9
10
package com.example.erp.mapper.userInfo;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.erp.entity.userInfo.UserRole;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface UserRoleMapper extends BaseMapper<UserRole> {
    Boolean getUserIsAdmin(Integer id);
}