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;
|
|
}
|