KKSU
2025-03-03 74315c8cc145e30c33f2c2b3fd9074c446e6699c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2022-06-01
 **/
@Data
@ApiModel(value = "ShopListDto", description = "商铺列表接口请求参数类")
public class ShopListDto {
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer pageNow;
 
    @ApiModelProperty(value = "每页数量", example = "10")
    private Integer pageSize;
}