Administrator
2025-05-20 4b302483c88f9e49af18d35b206a733d828fbdbc
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;
}