zepengdev
5 days ago 5b237740ab4ef64bc95faa2ebd9af5f3671e4453
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
41
42
43
44
package com.oying.modules.pc.product.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author lzp
 * @date 2025-04-30
 **/
@Data
public class ProductQueryCriteria {
 
    @ApiModelProperty(value = "搜索字段", example = "柚子")
    private String blurry;
 
    private Long productId;
 
    private Long storeId;
 
    private String barcode;
 
    private Integer status;
 
    private Integer shelfStatus;
 
    private Long categoryId;
 
    private Long secondCategoryId;
 
    private Integer active;
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
 
    private Integer limit;
 
    private String sortColumn;
 
    private String sortDirection;
 
}