xiaoyong931011
2021-04-06 d76ed8abc8f31e210f4e93f173f41bc2861870dd
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;
@@ -46,6 +48,16 @@
     */
   @ApiModelProperty("胜率")
    private BigDecimal winRate;
   /**
    * 三十天胜率
    */
   @ApiModelProperty("三十天胜率")
   private BigDecimal thirtyProfitRatio;
   /**
    * 三十天最大回撤率
    */
   @ApiModelProperty("三十天最大回撤率")
   private BigDecimal thirtyRatio;
    /**
     * 累计跟随人数
     */
@@ -72,15 +84,43 @@
     */
   @ApiModelProperty("宣言")
    private String declaration;
   /**
    * 标签
    */
   @ApiModelProperty("标签")
   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 documentaaryType;
    private Integer documentaryType;
   /**
     * 最大跟单人数
     */
   @ApiModelProperty("最大跟单人数")
    private Integer followNum;
   /**
     * 当前跟单人数
     */
   @ApiModelProperty("当前跟单人数")
    private Integer followNumNow;
   /**
     * 入驻天数(从审核通过开始计算)
     */
   @ApiModelProperty("入驻天数")
    private Integer entryDays;
}