package com.xcong.excoin.modules.documentary.vo; import java.math.BigDecimal; import com.xcong.excoin.common.system.base.BaseEntity; import io.swagger.annotations.ApiModel; import lombok.Data; @Data @ApiModel(value = "FollowTraderProfitInfoVo", description = "交易员信息") public class FollowTraderProfitInfoVo extends BaseEntity{ /** * */ private static final long serialVersionUID = 1L; /** * 交易员ID */ private Long traderId; /** * 会员ID */ private Long memberId; /** * 累计收益率 */ private BigDecimal totalProfitRatio; /** * 带单总收益 */ private BigDecimal totalProfit; /** * 跟随者总收益 */ private BigDecimal followerTotalProfit; /** * 胜率 */ private BigDecimal winRate; /** * 累计跟随人数 */ private BigDecimal totalFollowerCnt; /** * 交易笔数 */ private BigDecimal totalOrderCnt; /** * 头像 */ private String avatar; /** * 名称 */ private String nickname; /** * 宣言 */ private String declaration; /** * 是否满员 1-是2-否 */ private Integer isAll; /** * 是否开启带单 1是2否 */ private Integer isOpen; }