| | |
| | | } |
| | | |
| | | /** |
| | | * \ |
| | | * 其他类用来查找客户id使用 如果没有上级客户 这返回用户ID |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | public Long getClientId(Long userId) { |
| | | Client one = getOne(Wrappers.lambdaQuery(Client.class).eq(Client::getId, userId)); |
| | | if (one != null && one.getSuperiorId() != null) { |
| | | return one.getSuperiorId(); |
| | | } else { |
| | | return userId; |
| | | } |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 一级客户返回false 二级客户返回true |
| | | * |
| | | * @return |
| | |
| | | } |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 一级客户返回false 二级客户返回true |
| | | * |
| | | * @return |
| | | */ |
| | | public boolean findClientId(Long userId) { |
| | | Client one = getOne(Wrappers.lambdaQuery(Client.class).eq(Client::getId, userId)); |
| | | if (one != null && one.getSuperiorId() != null) { |
| | | return true; |
| | | } else { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 修改普通用户头像 |
| | | * |
| | | * @param userId |
| | | * @param IconUrl |
| | | * @return |
| | | */ |
| | | public boolean updateIcon(Long userId, String IconUrl) { |
| | | Client one = getOne(Wrappers.lambdaQuery(Client.class).eq(Client::getId, userId)); |
| | | if (one == null) { |
| | | throw new BusinessException("用户不存在"); |
| | | } |
| | | one.setIcon(IconUrl); |
| | | return updateById(one); |
| | | } |
| | | } |