KKSU
2025-01-21 4fdb8f2d4f3bb6f102514e346b7360f66d8e14d5
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;
 
@Data
@ApiModel(value = "ApiMallActListDto", description = "参数接收类")
public class ApiMallActListDto {
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer pageNow;
 
    @ApiModelProperty(value = "每页数量", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "查询", example = "123")
    private String query;
 
}