springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/LoginUserInfoVO.java
@@ -243,6 +243,8 @@ private Long bindingCheckUnitId; private Integer backstageType; public String retrieveRelationName() { return this.type == 3 ? relationName : name; springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java
@@ -751,6 +751,17 @@ loginUserInfoVO.setUserType(2); } } loginUserInfoVO.setBackstageType(1); String[] account={"dongqu","xiqu","yanbian","miyi","renhe"}; if("zuzhibu".equals(sysUserDO.getAccount())){ loginUserInfoVO.setBackstageType(2); } if(ArrayUtil.contains(account,sysUserDO.getAccount())){ loginUserInfoVO.setBackstageType(3); } if(sysUserDO.getBindingCheckUnitId()!=null){ loginUserInfoVO.setBackstageType(4); } return R.ok(loginUserInfoVO); }