Administrator
2026-03-18 a1c985a6c5a5b2d681ec55c2bf6c5128cc399b65
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;
 
}