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/vo/order/CommonOrderGoodsVO.java |  140 +++++++++++++++++++++++++++++++---------------
 1 files changed, 95 insertions(+), 45 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/order/CommonOrderGoodsVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/order/CommonOrderGoodsVO.java
index d43b68b..1bbc5cf 100644
--- a/fanli/src/main/java/com/yeshi/fanli/vo/order/CommonOrderGoodsVO.java
+++ b/fanli/src/main/java/com/yeshi/fanli/vo/order/CommonOrderGoodsVO.java
@@ -1,45 +1,95 @@
-package com.yeshi.fanli.vo.order;
-
-import java.io.Serializable;
-import java.math.BigDecimal;
-
-import com.google.gson.annotations.Expose;
-import com.yeshi.fanli.entity.order.CommonOrderGoods;
-
-/**
- * 璁㈠崟鍟嗗搧-绠�鐗�
- * 
- * @author yj
- *
- * @date 2018骞�12鏈�23鏃�
- */
-
-public class CommonOrderGoodsVO extends CommonOrderGoods implements Serializable {
-
-	private static final long serialVersionUID = 1L;
-
-	// 瀹為檯鎬绘暟閲�
-	@Expose
-	private Integer actualCount;
-	// 瀹為檯鎬讳粯娆�
-	@Expose
-	private BigDecimal actualPay;
-	
-
-	public Integer getActualCount() {
-		return actualCount;
-	}
-
-	public void setActualCount(Integer actualCount) {
-		this.actualCount = actualCount;
-	}
-
-	public BigDecimal getActualPay() {
-		return actualPay;
-	}
-
-	public void setActualPay(BigDecimal actualPay) {
-		this.actualPay = actualPay;
-	}
-
-}
+package com.yeshi.fanli.vo.order;
+
+import java.io.Serializable;
+import java.util.Map;
+
+import com.google.gson.annotations.Expose;
+import com.yeshi.fanli.entity.order.CommonOrderGoods;
+
+/**
+ * 璁㈠崟鍟嗗搧-绠�鐗�
+ * 
+ * @author yj
+ *
+ * @date 2018骞�12鏈�23鏃�
+ */
+
+public class CommonOrderGoodsVO extends CommonOrderGoods implements Serializable {
+
+	private static final long serialVersionUID = 1L;
+
+	// 瀹為檯鎬绘暟閲�
+	@Expose
+	private String actualCount;
+	// 瀹為檯鎬讳粯娆�
+	@Expose
+	private String actualPay;
+	
+	// 鍟嗗搧绫诲瀷锛� 娣樺疂銆佷含涓溿�佹嫾澶氬
+	@Expose
+	private Integer goodsType;
+	
+	// 鍟嗗搧鏍囬銆侀鑹层�佽儗鏅壊
+	@Expose
+	private Map<String, String> goodsTitle;
+
+	//涓嬪崟鏃堕棿
+	@Expose
+	private String placeOrderTime;
+
+	//璁㈠崟鐘舵��
+	@Expose
+	private String payState;
+
+	public String getActualCount() {
+		return actualCount;
+	}
+
+	public void setActualCount(String actualCount) {
+		this.actualCount = actualCount;
+	}
+
+	public String getActualPay() {
+		return actualPay;
+	}
+
+	public void setActualPay(String actualPay) {
+		this.actualPay = actualPay;
+	}
+
+	public Map<String, String> getGoodsTitle() {
+		return goodsTitle;
+	}
+
+	public void setGoodsTitle(Map<String, String> goodsTitle) {
+		this.goodsTitle = goodsTitle;
+	}
+
+	public Integer getGoodsType() {
+		return goodsType;
+	}
+
+	public void setGoodsType(Integer goodsType) {
+		this.goodsType = goodsType;
+	}
+
+	public String getPlaceOrderTime() {
+		return placeOrderTime;
+	}
+
+	public void setPlaceOrderTime(String placeOrderTime) {
+		this.placeOrderTime = placeOrderTime;
+	}
+
+	public static long getSerialVersionUID() {
+		return serialVersionUID;
+	}
+
+	public String getPayState() {
+		return payState;
+	}
+
+	public void setPayState(String payState) {
+		this.payState = payState;
+	}
+}

--
Gitblit v1.8.0