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