package com.yeshi.fanli.dto.jd;
|
|
public class JDSearchFilter {
|
private String key;// 关键字
|
Integer isZY;// 是否为自营 1-自营
|
Integer hasCoupon;// 是否有券 1-有券
|
Integer categoryId;// 分类ID
|
int pageNo;// 页码
|
int pageSize;// 每页的数量
|
|
public Integer getIsZY() {
|
return isZY;
|
}
|
|
public void setIsZY(Integer isZY) {
|
this.isZY = isZY;
|
}
|
|
public Integer getHasCoupon() {
|
return hasCoupon;
|
}
|
|
public void setHasCoupon(Integer hasCoupon) {
|
this.hasCoupon = hasCoupon;
|
}
|
|
public Integer getCategoryId() {
|
return categoryId;
|
}
|
|
public void setCategoryId(Integer categoryId) {
|
this.categoryId = categoryId;
|
}
|
|
public int getPageNo() {
|
return pageNo;
|
}
|
|
public void setPageNo(int pageNo) {
|
this.pageNo = pageNo;
|
}
|
|
public int getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(int pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
}
|