KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-09-24
 **/
@Data
@ApiModel(value = "MoneyFlowDto", description = "资金流水接收参数类")
public class MoneyFlowDto {
 
    @ApiModelProperty(value = "一页多少个", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer pageNum;
 
    @ApiModelProperty(hidden = true)
    private Long memberId;
}