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
31
32
33
34
35
36
37
38
39
40
package com.oying.modules.pc.store.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
 
/**
 * @author lzp
 * @date 2025-04-27
 **/
@Data
public class StoreCategoryQueryCriteria {
 
    @ApiModelProperty(value = "模糊查询")
    private String blurry;
 
    @ApiModelProperty(value = "ID")
    private Long categoryId;
 
    @ApiModelProperty(value = "店铺ID")
    private Long storeId;
 
    @ApiModelProperty(value = "类目层级:1-级类目 2-级类目")
    private Integer level;
 
    @ApiModelProperty(value = "是否启用(0-否 1-是)")
    private Integer active;
 
    @ApiModelProperty(value = "递归处理")
    private Boolean recursive;
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
 
}