From 9aa2ada54a1756c6cf709fc08f6b855d44d17a28 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 01 Feb 2021 11:33:35 +0800 Subject: [PATCH] modify --- src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java b/src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java index 8d3722e..59ef975 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java +++ b/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; + } -- Gitblit v1.9.1