| | |
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.TableField;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.xcong.excoin.common.system.base.BaseEntity;
|
| | |
|
| | | import io.swagger.annotations.ApiModelProperty;
|
| | | import lombok.Data;
|
| | | import lombok.EqualsAndHashCode;
|
| | |
|
| | |
| | | */
|
| | | private BigDecimal followerTotalProfit;
|
| | | /**
|
| | | * 三十天胜率
|
| | | */
|
| | | private BigDecimal thirtyProfitRatio;
|
| | | /**
|
| | | * 三十天最大回撤率
|
| | | */
|
| | | private BigDecimal thirtyRatio;
|
| | | /**
|
| | | * 胜率
|
| | | */
|
| | | private BigDecimal winRate;
|
| | |
| | | */
|
| | | private int totalOrderCnt;
|
| | |
|
| | | @TableField(exist = false)
|
| | | private int type;
|
| | | @TableField(exist = false)
|
| | | private String nickname;
|
| | | /**
|
| | | * 累计收益率排序(1正序 2倒序)
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private int totalProfitRatioSc;
|
| | | /**
|
| | | * 胜率排序(1正序 2倒序)
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private int winRateSc;
|
| | | /**
|
| | | * 累计跟随人数排序(1正序 2倒序)
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private int totalFollowerCntSc;
|
| | | |
| | |
|
| | | }
|