xiaoyong931011
2021-03-04 c0fac904e85b0b0131cde4c6b7f1e8de9f095089
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;
@@ -23,6 +25,9 @@
   @ApiModelProperty("宣言")
   private String declaration;
   
   @ApiModelProperty("标签")
   private List<FollowTraderLabelEntity> FollowTraderLabelEntitys;
   
}