yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/dto/jd/JDSearchFilter.java
@@ -1,36 +1,42 @@
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;// 关键字
   Integer isZY;// 是否为自营 1-自营
   Integer hasCoupon;// 是否有券 1-有券
   Integer categoryId;// 分类ID
   int pageNo;// 页码
   int pageSize;// 每页的数量
   public Integer getIsZY() {
      return isZY;
   }
   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是
   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;
   }
   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;
@@ -55,4 +61,125 @@
   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;
   }
}