Administrator
2025-04-22 c4a0a66f61e1ccfefb0793fba5a9b62ccb7818ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "ApiActivityInfoDto", description = "参数")
public class ApiActivityInfoDto {
 
    @NotNull(message = "页码不能为空")
    @ApiModelProperty(value = "页码", example = "1")
    private Integer pageNow;
 
    @NotNull(message = "每页数量不能为空")
    @ApiModelProperty(value = "每页数量", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "分类ID")
    private Long categoryId;
 
    @ApiModelProperty(value = "首页活动 0-不推荐 1-推荐", example = "1")
    private Integer hotState;
 
    @ApiModelProperty(value = "查询名称", example = "123")
    private String query;
 
}