springboot-vue3/src/main/java/com/example/springboot/mapper/RoleMapper.java
New file @@ -0,0 +1,11 @@ package com.example.springboot.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.example.springboot.entity.Role; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; @Mapper @Repository public interface RoleMapper extends BaseMapper<Role> { }