CeDo
2021-05-11 e09eb1cce0056bfda9f2202d412d54e30502e71b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.panzhihua.common.model.dtos.shop;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @auther llming
 * @describe 分页查询商品
 */
@ApiModel("分页查询商品")
@Data
public class PageComShopSysConfDTO {
    @ApiModelProperty(value = "分页-当前页数", example = "1", required = false)
    private Long pageNum = 1l;
 
    @ApiModelProperty(value = "分页-每页记录数", example = "10", required = false)
    private Long pageSize = 10l;
}