소스 검색

Merge branch 'release_toaliyun_real' of https://git.malls.iformall.com/server/formallProject into release_toaliyun_real

release_toaliyun_real
xhxu 3 년 전
부모
커밋
3991ea3475
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java

+ 5
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxBusinessServiceImpl.java 파일 보기

@@ -263,7 +263,11 @@ public class WxBusinessServiceImpl implements WxBusinessService {
if (null == business.getParentId() || business.getParentId() == 0) {
roots.add(business);
}else {
childMap.get(business.getParentId()).add(business);
List<WxBusiness> clist = childMap.get(business.getParentId());
if (null == clist) {
clist = new ArrayList<WxBusiness>();
}
clist.add(business);
}
}
if (roots.size() > 0 ) {


불러오는 중...
취소
저장