zainali5120
2021-03-14 0f4df6c351d87054ded6bd54f0c6b9f6253ea56f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.xcong.excoin.modules.documentary.dto;
 
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "FollowTraderProfitInfoDto", description = "参数接受类")
public class FollowTraderProfitInfoDto {
    @NotNull
    @Min(1)
    @ApiModelProperty(value = "第几页", example = "1")
    private int pageNum;
 
    @NotNull
    @ApiModelProperty(value = "每页数量", example = "10")
    private int pageSize;
    
    @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;
    
}