From d23645e976981bc9b670eea1d469fe8a36be309c Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Wed, 17 Apr 2024 17:19:53 +0800
Subject: [PATCH] 55测试环境

---
 src/main/java/com/xcong/excoin/modules/documentary/vo/TradeSetInfoVo.java |    9 +++++++--
 1 files changed, 7 insertions(+), 2 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 1f0d0a7..555f00e 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;
@@ -16,6 +18,9 @@
 	
 	@ApiModelProperty("名称")
     private String nickname;
+
+	@ApiModelProperty("名称状态:0:未修改 1:已修改")
+	private int nicknameState;
 	
 	@ApiModelProperty("是否开启带单 1是2否")
 	private int isOpen;
@@ -24,7 +29,7 @@
 	private String declaration;
 	
 	@ApiModelProperty("标签")
-	private String labels;
+	private List<FollowTraderLabelEntity> FollowTraderLabelEntitys;
 	
 	
 

--
Gitblit v1.9.1