chenlu
2025-09-28 c27bbcc497711df8b13d096f4917b5a8f16508c9
north-glass-erp/src/main/java/com/example/erp/mapper/userInfo/UserRoleMapper.java
New file
@@ -0,0 +1,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);
}