package com.yeshi.fanli.dto.pdd;
|
|
public class PDDSearchFilter {
|
private String kw;// 关键字
|
private Long optId;// 标签类目ID
|
private Integer page;// 页码
|
private Integer pageSize;// 页数量
|
private Integer sortType;// 排序类型
|
private Boolean hasCoupon;// 是否有券
|
private Boolean isBrand;// 是否为品牌商品
|
private Long catId;// 分类ID
|
private Long[] goodsIdList;// 商品列表ID
|
private Integer merchantType;// 卖家类型
|
private String pid;// 推广位ID
|
|
public String getKw() {
|
return kw;
|
}
|
|
public void setKw(String kw) {
|
this.kw = kw;
|
}
|
|
public Long getOptId() {
|
return optId;
|
}
|
|
public void setOptId(Long optId) {
|
this.optId = optId;
|
}
|
|
public Integer getPage() {
|
return page;
|
}
|
|
public void setPage(Integer page) {
|
this.page = page;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public Integer getSortType() {
|
return sortType;
|
}
|
|
public void setSortType(Integer sortType) {
|
this.sortType = sortType;
|
}
|
|
public Boolean getHasCoupon() {
|
return hasCoupon;
|
}
|
|
public void setHasCoupon(Boolean hasCoupon) {
|
this.hasCoupon = hasCoupon;
|
}
|
|
public Long getCatId() {
|
return catId;
|
}
|
|
public void setCatId(Long catId) {
|
this.catId = catId;
|
}
|
|
public Long[] getGoodsIdList() {
|
return goodsIdList;
|
}
|
|
public void setGoodsIdList(Long[] goodsIdList) {
|
this.goodsIdList = goodsIdList;
|
}
|
|
public Integer getMerchantType() {
|
return merchantType;
|
}
|
|
public void setMerchantType(Integer merchantType) {
|
this.merchantType = merchantType;
|
}
|
|
public String getPid() {
|
return pid;
|
}
|
|
public void setPid(String pid) {
|
this.pid = pid;
|
}
|
|
public Boolean getIsBrand() {
|
return isBrand;
|
}
|
|
public void setIsBrand(Boolean isBrand) {
|
this.isBrand = isBrand;
|
}
|
}
|