admin
2019-07-30 573c491b4a1ba60e12a5678a01c1546c0077c1ee
fanli/src/main/java/com/yeshi/fanli/dto/jd/JDSearchFilter.java
@@ -1,9 +1,58 @@
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;
   }
}