huanghongfa
2021-05-07 b2dd01e7ea2b7e37b5f81302f589401fe7e1636d
创建订单返回订单
1个文件已修改
4 ■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleServiceImpl.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleServiceImpl.java
@@ -95,7 +95,7 @@
                    circleAppVO.setHaveSign(2);
                }
                if(circleAppVO.getType().equals(ComActNeighborCircleDO.type.admin)){
                if(circleAppVO.getType() != null && circleAppVO.getType().equals(ComActNeighborCircleDO.type.admin)){
                    ComActDO actDO = comActDAO.selectById(circleAppVO.getCommunityId());
                    if(actDO != null){
                        circleAppVO.setName(actDO.getName());
@@ -147,7 +147,7 @@
            return R.fail("未找到邻里圈信息");
        }
        if(circleDetailAppVO.getType().equals(ComActNeighborCircleDO.type.admin)){
        if(circleDetailAppVO.getType() != null && circleDetailAppVO.getType().equals(ComActNeighborCircleDO.type.admin)){
            ComActDO actDO = comActDAO.selectById(circleDetailAppVO.getCommunityId());
            if(actDO != null){
                circleDetailAppVO.setName(actDO.getName());