目录

使用MybatisPlus出现的问题 Cannot be inherited with different type arguments

报错原因

'com.baomidou.mybatisplus.extension.service.IService' cannot be inherited with different type arguments: 'com.sha.code.model.SysRoleEntity' and 'com.sha.code.model.SysRoleMenuEntity'

Error:(17, 8) java: 无法使用以下不同的参数继承com.baomidou.mybatisplus.extension.service.IService: <com.sha.code.model.SysRoleMenuEntity><com.sha.code.model.SysRoleEntity>

解决方式

SysRoleService.javaIService中参数写错

1
2
3
4
5
6
7
修改前
public interface SysRoleService extends IService<SysRoleMenuEntity> {
}

修改后
public interface SysRoleService extends IService<SysRoleEntity> {
}