package com.yeshi.fanli.dto.jd;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class JDFilter implements Serializable{
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
// 佣金
|
public final static String SORTNAME_COMMISSION = "commission";
|
// 佣金比例
|
public final static String SORTNAME_COMMISSION_SHARE = "commissionShare";
|
// 价格
|
public final static String SORTNAME_PRICE = "price";
|
// 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 pageIndex;// 页码
|
private int pageSize;// 每页的数量 每页数量,单页数最大30,默认20
|
private Long cid1; // 一级类目id
|
private Long cid2; // 二级类目id
|
private Long cid3; // 三级类目id
|
private String keyword; // 关键字
|
private String owner; // 商品类型:自营[g],POP[p]
|
private Integer isCoupon; // 是否是优惠券商品,1:有优惠券,0:无优惠券
|
private List<Long> listId; // skuid集合(一次最多支持查询100个sku),数组类型开发时记得加[]
|
private Double pricefrom; // 商品价格下限
|
private Double priceto; // 商品价格上限
|
private Integer commissionShareStart; // 佣金比例区间开始
|
private Integer commissionShareEnd;// 佣金比例区间结束
|
private Integer shopId;// 店铺ID
|
private String brandCode;// 品牌code:7998
|
private Integer isHot;// 是否是爆款,1:爆款商品,0:非爆款商品
|
private Integer isPG; // 是否是拼购商品,1:拼购商品,0:非拼购商品
|
private Double pingouPriceEnd; // 拼购价格区间结束
|
private Double pingouPriceStart; // 拼购价格区间开始
|
private String sort; // 排序方式 : 倒序desc 正序asc(仅限价格)
|
private String sortName; // 排序名称
|
|
public int getPageIndex() {
|
return pageIndex;
|
}
|
|
public void setPageIndex(int pageIndex) {
|
this.pageIndex = pageIndex;
|
}
|
|
public int getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(int pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public Long getCid1() {
|
return cid1;
|
}
|
|
public void setCid1(Long cid1) {
|
this.cid1 = cid1;
|
}
|
|
public Long getCid2() {
|
return cid2;
|
}
|
|
public void setCid2(Long cid2) {
|
this.cid2 = cid2;
|
}
|
|
public Long getCid3() {
|
return cid3;
|
}
|
|
public void setCid3(Long cid3) {
|
this.cid3 = cid3;
|
}
|
|
public String getKeyword() {
|
return keyword;
|
}
|
|
public void setKeyword(String keyword) {
|
this.keyword = keyword;
|
}
|
|
public String getOwner() {
|
return owner;
|
}
|
|
public void setOwner(String owner) {
|
this.owner = owner;
|
}
|
|
public Integer getIsCoupon() {
|
return isCoupon;
|
}
|
|
public void setIsCoupon(Integer isCoupon) {
|
this.isCoupon = isCoupon;
|
}
|
|
public List<Long> getListId() {
|
return listId;
|
}
|
|
public void setListId(List<Long> listId) {
|
this.listId = listId;
|
}
|
|
public Double getPricefrom() {
|
return pricefrom;
|
}
|
|
public void setPricefrom(Double pricefrom) {
|
this.pricefrom = pricefrom;
|
}
|
|
public Double getPriceto() {
|
return priceto;
|
}
|
|
public void setPriceto(Double priceto) {
|
this.priceto = priceto;
|
}
|
|
public Integer getCommissionShareStart() {
|
return commissionShareStart;
|
}
|
|
public void setCommissionShareStart(Integer commissionShareStart) {
|
this.commissionShareStart = commissionShareStart;
|
}
|
|
public Integer getCommissionShareEnd() {
|
return commissionShareEnd;
|
}
|
|
public void setCommissionShareEnd(Integer commissionShareEnd) {
|
this.commissionShareEnd = commissionShareEnd;
|
}
|
|
public Integer getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Integer shopId) {
|
this.shopId = shopId;
|
}
|
|
public String getBrandCode() {
|
return brandCode;
|
}
|
|
public void setBrandCode(String brandCode) {
|
this.brandCode = brandCode;
|
}
|
|
public Integer getIsHot() {
|
return isHot;
|
}
|
|
public void setIsHot(Integer isHot) {
|
this.isHot = isHot;
|
}
|
|
public Integer getIsPG() {
|
return isPG;
|
}
|
|
public void setIsPG(Integer isPG) {
|
this.isPG = isPG;
|
}
|
|
public Double getPingouPriceEnd() {
|
return pingouPriceEnd;
|
}
|
|
public void setPingouPriceEnd(Double pingouPriceEnd) {
|
this.pingouPriceEnd = pingouPriceEnd;
|
}
|
|
public Double getPingouPriceStart() {
|
return pingouPriceStart;
|
}
|
|
public void setPingouPriceStart(Double pingouPriceStart) {
|
this.pingouPriceStart = pingouPriceStart;
|
}
|
|
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;
|
}
|
|
}
|