| | |
| | | public Long getCommunityId() { |
| | | LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); |
| | | Long communityId = loginUserInfo.getCommunityId(); |
| | | if (null == communityId) { |
| | | throw new ServiceException("用户未绑定社区"); |
| | | } |
| | | // if (null == communityId) { |
| | | // throw new ServiceException("用户未绑定社区"); |
| | | // } |
| | | return communityId; |
| | | } |
| | | |
| | |
| | | public Long getAreaId() { |
| | | LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); |
| | | Long areaId = loginUserInfo.getAreaId(); |
| | | if (null == areaId) { |
| | | throw new ServiceException("用户未绑定小区"); |
| | | } |
| | | return areaId; |
| | | } |
| | | /** |