Helius
2021-03-04 095d9d75e4f587374f96dcd85e7a0fb3d99d09a9
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;
   
}