xiaoyong931011
2021-01-26 93d4f17e12752042559a0dc562545b521fe11870
20210126
1 files modified
6 ■■■■ changed files
src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java 6 ●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
@@ -182,8 +182,8 @@
                    for(int i = 0;i < length;i++) {
                        String string = split[i];
                        FollowTraderLabelEntity selectById = followTraderLabelDao.selectById(Long.parseLong(string));
                        labelsName = selectById.getLabels();
                        labelsName += (labelsName + ",");
                        String labelsNames = selectById.getLabels();
                        labelsName += (labelsNames + ",");
                    }
                    FollowTraderProfitInfoVo.setLabels(labelsName);
                }
@@ -194,7 +194,7 @@
    }
    
    public static void main(String[] args) {
        String labels = "";
        String labels = "1,2,3";
        if(StrUtil.isNotEmpty(labels)) {
            String labelsName = "";
            String[] split = labels.split(",");