补充遗漏的@Override注解
parent
c3f1dd846c
commit
132b23dc33
|
@ -204,6 +204,7 @@ public class SysRole extends BaseEntity
|
||||||
this.deptIds = deptIds;
|
this.deptIds = deptIds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
.append("roleId", getRoleId())
|
.append("roleId", getRoleId())
|
||||||
|
|
|
@ -132,6 +132,7 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService
|
||||||
/**
|
/**
|
||||||
* 加载字典缓存数据
|
* 加载字典缓存数据
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public void loadingDictCache()
|
public void loadingDictCache()
|
||||||
{
|
{
|
||||||
List<SysDictType> dictTypeList = dictTypeMapper.selectDictTypeAll();
|
List<SysDictType> dictTypeList = dictTypeMapper.selectDictTypeAll();
|
||||||
|
@ -145,6 +146,7 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService
|
||||||
/**
|
/**
|
||||||
* 清空字典缓存数据
|
* 清空字典缓存数据
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public void clearDictCache()
|
public void clearDictCache()
|
||||||
{
|
{
|
||||||
DictUtils.clearDictCache();
|
DictUtils.clearDictCache();
|
||||||
|
@ -153,6 +155,7 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService
|
||||||
/**
|
/**
|
||||||
* 重置字典缓存数据
|
* 重置字典缓存数据
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public void resetDictCache()
|
public void resetDictCache()
|
||||||
{
|
{
|
||||||
clearDictCache();
|
clearDictCache();
|
||||||
|
|
|
@ -252,6 +252,7 @@ public class SysUserServiceImpl implements ISysUserService
|
||||||
* @param user 用户信息
|
* @param user 用户信息
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public boolean registerUser(SysUser user)
|
public boolean registerUser(SysUser user)
|
||||||
{
|
{
|
||||||
return userMapper.insertUser(user) > 0;
|
return userMapper.insertUser(user) > 0;
|
||||||
|
|
Loading…
Reference in New Issue