update 会员信息根据所属一级运营商查询

This commit is contained in:
2023-11-07 16:30:45 +08:00
parent 10e1d7eeb6
commit ed458b875d
4 changed files with 13 additions and 27 deletions

View File

@@ -146,23 +146,6 @@ public class SecurityUtils {
stationDeptIds.add(deptId);
resultVO.setStationDeptIds(stationDeptIds);
}
// String deptLevel = dept.getDeptLevel();
// if (StringUtils.equals(deptLevel, "0")) {
// // 表明是该账号挂在平台下面,是系统管理员
// } else if (StringUtils.equals(deptLevel, "1")) {
// // 表明是该账号挂在运营商下面,是一级运营商管理员
// merchantDeptIds.add(deptId);
// resultVO.setMerchantDeptIds(merchantDeptIds);
// } else if (StringUtils.equals(deptLevel, "2")) {
// // 表明是该账号挂在运营商下面,是二级运营商管理员
// merchantDeptIds.add(deptId);
// resultVO.setMerchantDeptIds(merchantDeptIds);
// } else {
// // 其他情况,表明是站点管理员
// stationDeptIds.add(deptId);
// resultVO.setStationDeptIds(stationDeptIds);
// }
return resultVO;
}
}