From 0ea6cd6f2be2fc9196ef29a0c9fd8db18c69811b Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 22 Mar 2021 11:48:15 +0800 Subject: [PATCH] 20210318 活动信息注册时,初始化 --- src/main/java/com/xcong/excoin/modules/documentary/vo/FollowTraderProfitInfoVo.java | 29 +++++++++++++++++++++++++++-- 1 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/vo/FollowTraderProfitInfoVo.java b/src/main/java/com/xcong/excoin/modules/documentary/vo/FollowTraderProfitInfoVo.java index 1b24b68..5a81616 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/vo/FollowTraderProfitInfoVo.java +++ b/src/main/java/com/xcong/excoin/modules/documentary/vo/FollowTraderProfitInfoVo.java @@ -1,8 +1,10 @@ package com.xcong.excoin.modules.documentary.vo; import java.math.BigDecimal; +import java.util.List; import com.xcong.excoin.common.system.base.BaseEntity; +import com.xcong.excoin.modules.documentary.entity.FollowTraderLabelEntity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -76,16 +78,39 @@ * 标签 */ @ApiModelProperty("标签") - private String labels; + private List<FollowTraderLabelEntity> labels; /** * 是否满员 1-是2-否 */ - @ApiModelProperty("是否满员 1-是2-否") + @ApiModelProperty("交易员是否设置满员 1-是2-否") private Integer isAll; + /** + * 是否满员 1-是2-否 + */ + @ApiModelProperty("实际是否满员 1-是2-否") + private Integer isActualAll; /** * 跟单状态 1:已跟单2:未跟单 */ @ApiModelProperty("跟单状态 1:已跟单2:未跟单") private Integer documentaryType; + + /** + * 最大跟单人数 + */ + @ApiModelProperty("最大跟单人数") + private Integer followNum; + + /** + * 当前跟单人数 + */ + @ApiModelProperty("当前跟单人数") + private Integer followNumNow; + + /** + * 入驻天数(从审核通过开始计算) + */ + @ApiModelProperty("入驻天数") + private Integer entryDays; } -- Gitblit v1.9.1