admin
2021-06-26 5d9e2fbeab87327ce11080485bf4d971f93f542a
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author wzy
 * @date 2020-12-23
 **/
@ApiModel(value = "ShoppingGoodsListDto", description = "商品列表接受类")
public class ShoppingGoodsListDto {
 
    @ApiModelProperty(value = "商品名称/编号/拼音")
    private String queryKey;
 
    @ApiModelProperty(value = "商品类型")
    private String goodType;
 
    @ApiModelProperty(value = "类型ID", example = "13")
    private Long cateId;
 
    @NotNull(message = "参数错误")
    @ApiModelProperty(value = "条数", example = "10")
    private Integer pageSize = 10;
 
    @NotNull(message = "参数错误")
    @ApiModelProperty(value = "第几页", example = "1")
    private Integer pageNum = 1;
 
    @ApiModelProperty(hidden = true)
    private Long shopId;
 
    @ApiModelProperty(hidden = true)
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public String getGoodType() {
        return goodType;
    }
 
    public void setGoodType(String goodType) {
        this.goodType = goodType;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getQueryKey() {
        return queryKey;
    }
 
    public void setQueryKey(String queryKey) {
        this.queryKey = queryKey;
    }
 
    public Long getCateId() {
        return cateId;
    }
 
    public void setCateId(Long cateId) {
        this.cateId = cateId;
    }
 
    public Integer getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public Integer getPageNum() {
        return pageNum;
    }
 
    public void setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
    }
}