shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.ishop.mobile.pojo;
 
import com.walker.web.param.ParamRequest;
 
/**
 * 进入商户首页,搜索商品条件。
 * @author 时克英
 * @date 2023-07-04
 */
public class MerchantProductParam extends ParamRequest {
 
    public Integer getMerId() {
        return merId;
    }
 
    public void setMerId(Integer merId) {
        this.merId = merId;
    }
 
    public String getKeyword() {
        return keyword;
    }
 
    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
 
    public Integer getCid() {
        return cid;
    }
 
    public void setCid(Integer cid) {
        this.cid = cid;
    }
 
    public String getPriceOrder() {
        return priceOrder;
    }
 
    public void setPriceOrder(String priceOrder) {
        this.priceOrder = priceOrder;
    }
 
    public String getSalesOrder() {
        return salesOrder;
    }
 
    public void setSalesOrder(String salesOrder) {
        this.salesOrder = salesOrder;
    }
 
    public Double getMinPrice() {
        return minPrice;
    }
 
    public void setMinPrice(Double minPrice) {
        this.minPrice = minPrice;
    }
 
    public Double getMaxPrice() {
        return maxPrice;
    }
 
    public void setMaxPrice(Double maxPrice) {
        this.maxPrice = maxPrice;
    }
 
    //    @ApiModelProperty(value = "商户id")
//    @NotNull(message = "Merchant id cannot be empty")
    private Integer merId;
 
//    @ApiModelProperty(value = "搜索关键字")
    private String keyword;
 
//    @ApiModelProperty(value = "分类id")
    private Integer cid;
 
//    @ApiModelProperty(value = "价格排序", allowableValues = "range[asc,desc]")
    private String priceOrder;
 
//    @ApiModelProperty(value = "销量排序", allowableValues = "range[asc,desc]")
    private String salesOrder;
 
//    @ApiModelProperty(value = "最低价")
    private Double minPrice;
 
//    @ApiModelProperty(value = "最高价")
    private Double maxPrice;
}