Administrator
2025-08-27 65f10033448a07535d610ad56a628d7b3f137480
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;
}