xiaoyong931011
2023-08-28 843650e3d315cf909721db43ccbaa1c02f79769d
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;
}