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
90
91
92
93
94
95
96
97
98
99
100
101
package com.ishop.merchant.pojo;
 
import com.walker.web.param.ParamRequest;
 
/**
 * 商户查询条件。
 * @author 时克英
 * @date 2023-06-02
 */
public class MerchantParam extends ParamRequest {
 
    @Override
    public String toString(){
        return new StringBuilder("[categoryId=").append(this.categoryId)
                .append(", typeId=").append(this.typeId)
                .append(", phone=").append(this.phone)
                .append(", isSelf=").append(this.isSelf)
                .append(", isSwitch=").append(this.isSwitch)
                .append(", dateLimit=").append(this.dateLimit)
                .append(", keywords=").append(this.keywords)
                .append("]").toString();
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    public Integer getTypeId() {
        return typeId;
    }
 
    public void setTypeId(Integer typeId) {
        this.typeId = typeId;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getKeywords() {
        return keywords;
    }
 
    public void setKeywords(String keywords) {
        this.keywords = keywords;
    }
 
    public Boolean getIsSelf() {
        return isSelf;
    }
 
    public void setIsSelf(Boolean self) {
        isSelf = self;
    }
 
    public Boolean getIsSwitch() {
        return isSwitch;
    }
 
    public void setIsSwitch(Boolean aSwitch) {
        isSwitch = aSwitch;
    }
 
    public String getDateLimit() {
        return dateLimit;
    }
 
    public void setDateLimit(String dateLimit) {
        this.dateLimit = dateLimit;
    }
 
    //    @ApiModelProperty(value = "商户分类ID")
    private Integer categoryId;
 
//    @ApiModelProperty(value = "商户类型ID")
    private Integer typeId;
 
//    @ApiModelProperty(value = "商户手机号")
    private String phone;
 
//    @ApiModelProperty(value = "商户关键字:支持店铺名称、关键字")
    private String keywords;
 
//    @ApiModelProperty(value = "是否自营:0-自营,1-非自营")
    private Boolean isSelf;
 
//    @ApiModelProperty(value = "商户开关:0-关闭,1-开启")
    private Boolean isSwitch;
 
//    @ApiModelProperty(value = "创建时间区间")
    private String dateLimit;
 
}