fix
Helius
2021-07-16 1bada3da32aa8b29509b7357e5adfe816ac17c72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xzx.gc.user.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-07-14
 **/
@Data
@ApiModel(value = "HeadProfitLitDto", description = "我的收益接收参数类")
public class HeadProfitLitDto {
    @ApiModelProperty(value = "第几页", required = true)
    private int page;
 
    @ApiModelProperty(value = "每一页数量", required = true)
    private int limit;
 
    @ApiModelProperty(hidden = true)
    private String userId;
}