Helius
2021-01-26 9d0b2e0d276911935d064aa8db1772cc34427948
Merge branch 'whole_new' of https://gitee.com/chonggaoxiao/new_excoin into whole_new
3 files modified
21 ■■■■■ changed files
src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java 8 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java 7 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java 6 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java
@@ -1,21 +1,23 @@
package com.xcong.excoin.modules.documentary.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data
@TableName("follow_trader_label")
public class FollowTraderLabelEntity extends BaseEntity{
public class FollowTraderLabelEntity{
    
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
    /**
     * 标签
     */
src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
@@ -784,16 +784,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));
                labelsName = selectById.getLabels();
                labelsName += (labelsName + ",");
                arrayList.add(selectById);
            }
            tradeSetInfoVo.setLabels(labelsName);
            tradeSetInfoVo.setFollowTraderLabelEntitys(arrayList);
        }
        return Result.ok(tradeSetInfoVo);
    }
src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java
@@ -1,12 +1,14 @@
package com.xcong.excoin.modules.documentary.vo;
import java.util.List;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "TradeSetInfoVo", description = "返回类")
public class TradeSetInfoVo {
public class TradeSetInfoVo<FollowTraderLabelEntity> {
    
    @ApiModelProperty(value = "交易员ID")
    private Long tradeId;
@@ -24,7 +26,7 @@
    private String declaration;
    
    @ApiModelProperty("标签")
    private String labels;
    private List<FollowTraderLabelEntity> FollowTraderLabelEntitys;