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;
|
|
}
|