Helius
2021-02-02 49e8cba7521d41f72bf280110b78ef6f1dff4aa8
src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
@@ -176,16 +176,15 @@
              
              String labels = followTraderInfoEntity.getLabels();
              if(StrUtil.isNotEmpty(labels)) {
                 String labelsName = "";
                 ArrayList<FollowTraderLabelEntity> arrayList = new ArrayList<>();
                 String[] split = labels.split(",");
                 int length = split.length;
                 for(int i = 0;i < length;i++) {
                    String string = split[i];
                    FollowTraderLabelEntity selectById = followTraderLabelDao.selectById(Long.parseLong(string));
                    String labelsNames = selectById.getLabels();
                    labelsName += (labelsNames + ",");
                    arrayList.add(selectById);
                 }
                 FollowTraderProfitInfoVo.setLabels(labelsName);
                 FollowTraderProfitInfoVo.setLabels(arrayList);
              }
              
           }