lidongdong
2023-06-29 d68a1db06b4d4f59bac78b53608a024f217d03b7
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/controller/BaseController.java
@@ -65,9 +65,9 @@
    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;
    }
@@ -94,6 +94,9 @@
    public Long getAreaId() {
        LoginUserInfoVO loginUserInfo = this.getLoginUserInfo();
        Long areaId = loginUserInfo.getAreaId();
        if (null == areaId) {
            throw new ServiceException("用户未绑定小区");
        }
        return areaId;
    }
    /**