mirror of
https://github.com/suyiiyii/SIMS.git
synced 2025-06-05 13:36:12 +08:00
8 lines
201 B
Java
8 lines
201 B
Java
package top.suyiiyii.sims.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import top.suyiiyii.sims.entity.UserRole;
|
|
|
|
public interface MpUserRoleMapper extends BaseMapper<UserRole> {
|
|
}
|