|
@@ -926,16 +926,18 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
|
|
|
|
|
|
@Override
|
|
|
public List<UserVO> getUserVoByPlatId(UserDTO userDTO) {
|
|
|
- List<Integer> roleList = new ArrayList<>();
|
|
|
- roleList.add(5);
|
|
|
- roleList.add(6);
|
|
|
- roleList.add(10);
|
|
|
- // 患者教育-HCP角色
|
|
|
- roleList.add(13);
|
|
|
- // 招商经理
|
|
|
- roleList.add(31);
|
|
|
-
|
|
|
- userDTO.setRole(roleList);
|
|
|
+
|
|
|
+ // 放开角色校验
|
|
|
+ //List<Integer> roleList = new ArrayList<>();
|
|
|
+ //roleList.add(5);
|
|
|
+ //roleList.add(6);
|
|
|
+ //roleList.add(10);
|
|
|
+ //// 患者教育-HCP角色
|
|
|
+ //roleList.add(13);
|
|
|
+ //// 招商经理
|
|
|
+ //roleList.add(31);
|
|
|
+ //
|
|
|
+ //userDTO.setRole(roleList);
|
|
|
return baseMapper.getUserVoByPlatId(userDTO);
|
|
|
}
|
|
|
|