From d23645e976981bc9b670eea1d469fe8a36be309c Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Wed, 17 Apr 2024 17:19:53 +0800 Subject: [PATCH] 55测试环境 --- src/main/java/com/xcong/excoin/modules/documentary/dto/FollowTraderProfitInfoDto.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/dto/FollowTraderProfitInfoDto.java b/src/main/java/com/xcong/excoin/modules/documentary/dto/FollowTraderProfitInfoDto.java index 4790c50..fc78a6b 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/dto/FollowTraderProfitInfoDto.java +++ b/src/main/java/com/xcong/excoin/modules/documentary/dto/FollowTraderProfitInfoDto.java @@ -22,4 +22,23 @@ @ApiModelProperty(value = "1:首页", example = "1") private int type; + @ApiModelProperty(value = "昵称", example = "哈哈") + private String nickname; + + /** + * 累计收益率排序(1正序 2倒序) + */ + @ApiModelProperty(value = "累计收益率排序(0不参与 1正序 2倒序)", example = "1") + private int totalProfitRatioSc; + /** + * 胜率排序(1正序 2倒序) + */ + @ApiModelProperty(value = "胜率排序(0不参与 1正序 2倒序)", example = "1") + private int winRateSc; + /** + * 累计跟随人数排序(1正序 2倒序) + */ + @ApiModelProperty(value = "累计跟随人数排序(0不参与 1正序 2倒序)", example = "1") + private int totalFollowerCntSc; + } -- Gitblit v1.9.1