mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 15:21:53 +08:00
【代码修复】SYSTEM:角色标识的提示不正确问题
This commit is contained in:
parent
a677e98de0
commit
424922b488
@ -2,6 +2,7 @@ package cn.iocoder.yudao.module.system.service.permission;
|
|||||||
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
import cn.hutool.core.collection.CollectionUtil;
|
import cn.hutool.core.collection.CollectionUtil;
|
||||||
|
import cn.hutool.core.util.ObjUtil;
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import cn.hutool.extra.spring.SpringUtil;
|
import cn.hutool.extra.spring.SpringUtil;
|
||||||
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
@ -61,7 +62,7 @@ public class RoleServiceImpl implements RoleService {
|
|||||||
// 2. 插入到数据库
|
// 2. 插入到数据库
|
||||||
RoleDO role = BeanUtils.toBean(createReqVO, RoleDO.class)
|
RoleDO role = BeanUtils.toBean(createReqVO, RoleDO.class)
|
||||||
.setType(ObjectUtil.defaultIfNull(type, RoleTypeEnum.CUSTOM.getType()))
|
.setType(ObjectUtil.defaultIfNull(type, RoleTypeEnum.CUSTOM.getType()))
|
||||||
.setStatus(CommonStatusEnum.ENABLE.getStatus())
|
.setStatus(ObjUtil.defaultIfNull(createReqVO.getStatus(), CommonStatusEnum.ENABLE.getStatus()))
|
||||||
.setDataScope(DataScopeEnum.ALL.getScope()); // 默认可查看所有数据。原因是,可能一些项目不需要项目权限
|
.setDataScope(DataScopeEnum.ALL.getScope()); // 默认可查看所有数据。原因是,可能一些项目不需要项目权限
|
||||||
roleMapper.insert(role);
|
roleMapper.insert(role);
|
||||||
|
|
||||||
|
@ -51,7 +51,8 @@ public class RoleServiceImplTest extends BaseDbUnitTest {
|
|||||||
public void testCreateRole() {
|
public void testCreateRole() {
|
||||||
// 准备参数
|
// 准备参数
|
||||||
RoleSaveReqVO reqVO = randomPojo(RoleSaveReqVO.class)
|
RoleSaveReqVO reqVO = randomPojo(RoleSaveReqVO.class)
|
||||||
.setId(null); // 防止 id 被赋值
|
.setId(null) // 防止 id 被赋值
|
||||||
|
.setStatus(randomCommonStatus());
|
||||||
|
|
||||||
// 调用
|
// 调用
|
||||||
Long roleId = roleService.createRole(reqVO, null);
|
Long roleId = roleService.createRole(reqVO, null);
|
||||||
@ -59,7 +60,6 @@ public class RoleServiceImplTest extends BaseDbUnitTest {
|
|||||||
RoleDO roleDO = roleMapper.selectById(roleId);
|
RoleDO roleDO = roleMapper.selectById(roleId);
|
||||||
assertPojoEquals(reqVO, roleDO, "id");
|
assertPojoEquals(reqVO, roleDO, "id");
|
||||||
assertEquals(RoleTypeEnum.CUSTOM.getType(), roleDO.getType());
|
assertEquals(RoleTypeEnum.CUSTOM.getType(), roleDO.getType());
|
||||||
assertEquals(CommonStatusEnum.ENABLE.getStatus(), roleDO.getStatus());
|
|
||||||
assertEquals(DataScopeEnum.ALL.getScope(), roleDO.getDataScope());
|
assertEquals(DataScopeEnum.ALL.getScope(), roleDO.getDataScope());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,7 +70,8 @@ public class RoleServiceImplTest extends BaseDbUnitTest {
|
|||||||
roleMapper.insert(roleDO);
|
roleMapper.insert(roleDO);
|
||||||
// 准备参数
|
// 准备参数
|
||||||
Long id = roleDO.getId();
|
Long id = roleDO.getId();
|
||||||
RoleSaveReqVO reqVO = randomPojo(RoleSaveReqVO.class, o -> o.setId(id));
|
RoleSaveReqVO reqVO = randomPojo(RoleSaveReqVO.class, o -> o.setId(id)
|
||||||
|
.setStatus(randomCommonStatus()));
|
||||||
|
|
||||||
// 调用
|
// 调用
|
||||||
roleService.updateRole(reqVO);
|
roleService.updateRole(reqVO);
|
||||||
|
Loading…
Reference in New Issue
Block a user