| | |
| | | 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;
|
| | |
| | | private String declaration;
|
| | |
|
| | | @ApiModelProperty("标签")
|
| | | private String labels;
|
| | | private List<FollowTraderLabelEntity> FollowTraderLabelEntitys;
|
| | |
|
| | |
|
| | |
|