package com.yeshi.fanli.dto.jd;
|
|
public class JDSearchFilter {
|
|
// 佣金
|
public final static String SORTNAME_COMMISSION = "wlCommission";
|
// 佣金比例
|
public final static String SORTNAME_COMMISSION_SHARE = "wlCommissionShare";
|
// 价格
|
public final static String SORTNAME_PRICE = "wlPrice";
|
// 30天引入订单数量
|
public final static String SORTNAME_ORDER_COUNT_30DAYS = "inOrderCount30Days";
|
// 30天支出佣金
|
public final static String SORTNAME_ORDER_COMM_30DAYS = "inOrderComm30Days";
|
|
// 排序方式
|
public final static String SORT_ASC = "asc";
|
public final static String SORT_DESC = "desc";
|
|
private int pageNo;// 页码
|
private int pageSize;// 每页的数量
|
private String key;// 关键字
|
|
private int isZY;// 是否为自营: 默认0 1-自营
|
private int isPinGou;// 是否拼购 : 默认0 1拼购
|
private int orientationFlag; // 京推计划: 默认0 1是
|
private int hasCoupon;// 是否有券: 默认0 1-有券
|
private int deliveryType; // 是否京东配送: 0 默认 1京配
|
private int isCare; // 爱心东东: 默认0 1是
|
|
private Integer categoryId;// 一级分类ID
|
private Integer cat2Id;// 二级分类ID
|
private Integer cat3Id;// 三级分类ID
|
private Integer fromCommissionRatio; // 佣金比例最小值
|
private Integer toCommissionRatio; // 佣金比例最大值
|
private Integer fromPrice; // 价格最小值
|
private Integer toPrice; // 价格最大值
|
private String sort; // 排序方式 : 倒序desc 正序asc(仅限价格)
|
private String sortName; // 排序名称(:佣金:wlCommission 佣金比例:wlCommissionShare 价格: wlPrice inOrderCount30Days
|
|
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;
|
}
|
|
public int getIsZY() {
|
return isZY;
|
}
|
|
public void setIsZY(int isZY) {
|
this.isZY = isZY;
|
}
|
|
public int getIsPinGou() {
|
return isPinGou;
|
}
|
|
public void setIsPinGou(int isPinGou) {
|
this.isPinGou = isPinGou;
|
}
|
|
public int getOrientationFlag() {
|
return orientationFlag;
|
}
|
|
public void setOrientationFlag(int orientationFlag) {
|
this.orientationFlag = orientationFlag;
|
}
|
|
public int getHasCoupon() {
|
return hasCoupon;
|
}
|
|
public void setHasCoupon(int hasCoupon) {
|
this.hasCoupon = hasCoupon;
|
}
|
|
public int getDeliveryType() {
|
return deliveryType;
|
}
|
|
public void setDeliveryType(int deliveryType) {
|
this.deliveryType = deliveryType;
|
}
|
|
public int getIsCare() {
|
return isCare;
|
}
|
|
public void setIsCare(int isCare) {
|
this.isCare = isCare;
|
}
|
|
public Integer getCategoryId() {
|
return categoryId;
|
}
|
|
public void setCategoryId(Integer categoryId) {
|
this.categoryId = categoryId;
|
}
|
|
public Integer getFromCommissionRatio() {
|
return fromCommissionRatio;
|
}
|
|
public void setFromCommissionRatio(Integer fromCommissionRatio) {
|
this.fromCommissionRatio = fromCommissionRatio;
|
}
|
|
public Integer getToCommissionRatio() {
|
return toCommissionRatio;
|
}
|
|
public void setToCommissionRatio(Integer toCommissionRatio) {
|
this.toCommissionRatio = toCommissionRatio;
|
}
|
|
public Integer getFromPrice() {
|
return fromPrice;
|
}
|
|
public void setFromPrice(Integer fromPrice) {
|
this.fromPrice = fromPrice;
|
}
|
|
public Integer getToPrice() {
|
return toPrice;
|
}
|
|
public void setToPrice(Integer toPrice) {
|
this.toPrice = toPrice;
|
}
|
|
public String getSort() {
|
return sort;
|
}
|
|
public void setSort(String sort) {
|
this.sort = sort;
|
}
|
|
public String getSortName() {
|
return sortName;
|
}
|
|
public void setSortName(String sortName) {
|
this.sortName = sortName;
|
}
|
|
public Integer getCat2Id() {
|
return cat2Id;
|
}
|
|
public void setCat2Id(Integer cat2Id) {
|
this.cat2Id = cat2Id;
|
}
|
|
public Integer getCat3Id() {
|
return cat3Id;
|
}
|
|
public void setCat3Id(Integer cat3Id) {
|
this.cat3Id = cat3Id;
|
}
|
|
}
|