From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDSearchFilter.java |  218 ++++++++++++++++++++++++++++-------------------------
 1 files changed, 115 insertions(+), 103 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDSearchFilter.java b/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDSearchFilter.java
index d2676b4..85c89ec 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDSearchFilter.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDSearchFilter.java
@@ -1,103 +1,115 @@
-package com.yeshi.fanli.dto.pdd;
-
-public class PDDSearchFilter {
-	private String kw;// 鍏抽敭瀛�
-	private Long optId;// 鏍囩绫荤洰ID
-	private Integer page;// 椤电爜
-	private Integer pageSize;// 椤垫暟閲�
-	private Integer sortType;// 鎺掑簭绫诲瀷
-	private Boolean hasCoupon;// 鏄惁鏈夊埜
-	private Boolean isBrand;// 鏄惁涓哄搧鐗屽晢鍝�
-	private Long catId;// 鍒嗙被ID
-	private Long[] goodsIdList;// 鍟嗗搧鍒楄〃ID
-	private Integer merchantType;// 鍗栧绫诲瀷
-	private String pid;// 鎺ㄥ箍浣岻D
-
-	public String getKw() {
-		return kw;
-	}
-
-	public void setKw(String kw) {
-		this.kw = kw;
-	}
-
-	public Long getOptId() {
-		return optId;
-	}
-
-	public void setOptId(Long optId) {
-		this.optId = optId;
-	}
-
-	public Integer getPage() {
-		return page;
-	}
-
-	public void setPage(Integer page) {
-		this.page = page;
-	}
-
-	public Integer getPageSize() {
-		return pageSize;
-	}
-
-	public void setPageSize(Integer pageSize) {
-		this.pageSize = pageSize;
-	}
-
-	public Integer getSortType() {
-		return sortType;
-	}
-
-	public void setSortType(Integer sortType) {
-		this.sortType = sortType;
-	}
-
-	public Boolean getHasCoupon() {
-		return hasCoupon;
-	}
-
-	public void setHasCoupon(Boolean hasCoupon) {
-		this.hasCoupon = hasCoupon;
-	}
-
-	public Long getCatId() {
-		return catId;
-	}
-
-	public void setCatId(Long catId) {
-		this.catId = catId;
-	}
-
-	public Long[] getGoodsIdList() {
-		return goodsIdList;
-	}
-
-	public void setGoodsIdList(Long[] goodsIdList) {
-		this.goodsIdList = goodsIdList;
-	}
-
-	public Integer getMerchantType() {
-		return merchantType;
-	}
-
-	public void setMerchantType(Integer merchantType) {
-		this.merchantType = merchantType;
-	}
-
-	public String getPid() {
-		return pid;
-	}
-
-	public void setPid(String pid) {
-		this.pid = pid;
-	}
-
-	public Boolean getIsBrand() {
-		return isBrand;
-	}
-
-	public void setIsBrand(Boolean isBrand) {
-		this.isBrand = isBrand;
-	}
-}
+package com.yeshi.fanli.dto.pdd;
+
+import java.util.List;
+
+public class PDDSearchFilter {
+	private String kw;// 鍏抽敭瀛�
+	private Long optId;// 鏍囩绫荤洰ID
+	private Integer page;// 椤电爜
+	private Integer pageSize;// 椤垫暟閲�
+	private Integer sortType;// 鎺掑簭绫诲瀷
+	private Boolean hasCoupon;// 鏄惁鏈夊埜
+	private Boolean isBrand;// 鏄惁涓哄搧鐗屽晢鍝�
+	private Long catId;// 鍒嗙被ID
+	private Long[] goodsIdList;// 鍟嗗搧鍒楄〃ID
+	private Integer merchantType;// 鍗栧绫诲瀷
+	private String pid;// 鎺ㄥ箍浣岻D
+	private List<PDDSearchRange> rangeList; // 绛涢�夎寖鍥村垪琛�
+	
+	public String getKw() {
+		return kw;
+	}
+
+	public void setKw(String kw) {
+		this.kw = kw;
+	}
+
+	public Long getOptId() {
+		return optId;
+	}
+
+	public void setOptId(Long optId) {
+		this.optId = optId;
+	}
+
+	public Integer getPage() {
+		return page;
+	}
+
+	public void setPage(Integer page) {
+		this.page = page;
+	}
+
+	public Integer getPageSize() {
+		return pageSize;
+	}
+
+	public void setPageSize(Integer pageSize) {
+		this.pageSize = pageSize;
+	}
+
+	public Integer getSortType() {
+		return sortType;
+	}
+
+	public void setSortType(Integer sortType) {
+		this.sortType = sortType;
+	}
+
+	public Boolean getHasCoupon() {
+		return hasCoupon;
+	}
+
+	public void setHasCoupon(Boolean hasCoupon) {
+		this.hasCoupon = hasCoupon;
+	}
+
+	public Long getCatId() {
+		return catId;
+	}
+
+	public void setCatId(Long catId) {
+		this.catId = catId;
+	}
+
+	public Long[] getGoodsIdList() {
+		return goodsIdList;
+	}
+
+	public void setGoodsIdList(Long[] goodsIdList) {
+		this.goodsIdList = goodsIdList;
+	}
+
+	public Integer getMerchantType() {
+		return merchantType;
+	}
+
+	public void setMerchantType(Integer merchantType) {
+		this.merchantType = merchantType;
+	}
+
+	public String getPid() {
+		return pid;
+	}
+
+	public void setPid(String pid) {
+		this.pid = pid;
+	}
+
+	public Boolean getIsBrand() {
+		return isBrand;
+	}
+
+	public void setIsBrand(Boolean isBrand) {
+		this.isBrand = isBrand;
+	}
+
+	public List<PDDSearchRange> getRangeList() {
+		return rangeList;
+	}
+
+	public void setRangeList(List<PDDSearchRange> rangeList) {
+		this.rangeList = rangeList;
+	}
+	
+}

--
Gitblit v1.8.0