From 81da61b828e29b7745e1382dfbbaeb685dc083ef Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 23 一月 2024 17:17:55 +0800
Subject: [PATCH] 抖音转链修改

---
 utils/src/main/java/org/yeshi/utils/entity/wx/WXPlaceOrderParams.java |  184 ++++++++++++++++++++++++---------------------
 1 files changed, 98 insertions(+), 86 deletions(-)

diff --git a/utils/src/main/java/org/yeshi/utils/entity/wx/WXPlaceOrderParams.java b/utils/src/main/java/org/yeshi/utils/entity/wx/WXPlaceOrderParams.java
index d0d15b5..0a76c7f 100644
--- a/utils/src/main/java/org/yeshi/utils/entity/wx/WXPlaceOrderParams.java
+++ b/utils/src/main/java/org/yeshi/utils/entity/wx/WXPlaceOrderParams.java
@@ -1,86 +1,98 @@
-package org.yeshi.utils.entity.wx;
-
-import java.math.BigDecimal;
-
-/**
- * 寰俊鏀粯缁熶竴涓嬪崟鍙傛暟
- * 
- * @author Administrator
- *
- */
-public class WXPlaceOrderParams {
-	private String orderNo;
-	private BigDecimal fee;
-	private String openId;
-	private String body;
-	private String ip;
-	private String tradeType;
-	private String notifyUrl;
-
-	private WXAPPInfo info;
-
-	public String getOrderNo() {
-		return orderNo;
-	}
-
-	public void setOrderNo(String orderNo) {
-		this.orderNo = orderNo;
-	}
-
-	public BigDecimal getFee() {
-		return fee;
-	}
-
-	public void setFee(BigDecimal fee) {
-		this.fee = fee;
-	}
-
-	public String getOpenId() {
-		return openId;
-	}
-
-	public void setOpenId(String openId) {
-		this.openId = openId;
-	}
-
-	public String getBody() {
-		return body;
-	}
-
-	public void setBody(String body) {
-		this.body = body;
-	}
-
-	public String getIp() {
-		return ip;
-	}
-
-	public void setIp(String ip) {
-		this.ip = ip;
-	}
-
-	public String getTradeType() {
-		return tradeType;
-	}
-
-	public void setTradeType(String tradeType) {
-		this.tradeType = tradeType;
-	}
-
-	public WXAPPInfo getInfo() {
-		return info;
-	}
-
-	public void setInfo(WXAPPInfo info) {
-		this.info = info;
-	}
-
-	public String getNotifyUrl() {
-		return notifyUrl;
-	}
-
-	public void setNotifyUrl(String notifyUrl) {
-		this.notifyUrl = notifyUrl;
-	}
-
-}
+package org.yeshi.utils.entity.wx;
+
+import java.math.BigDecimal;
+
+/**
+ * 寰俊鏀粯缁熶竴涓嬪崟鍙傛暟
+ *
+ * @author Administrator
+ */
+public class WXPlaceOrderParams {
+    private String orderNo;
+    private BigDecimal fee;
+    private String openId;
+    private String body;
+    private String ip;
+    private String tradeType;
+    private String notifyUrl;
+
+    //闄勫姞鏁版嵁-V3鎺ュ彛涓娇鐢紝鏀粯缁撴灉閫氱煡涓細鍘熸牱杩斿洖
+    private String attach;
+
+
+    private WXAPPInfo app;
+
+    public String getOrderNo() {
+        return orderNo;
+    }
+
+    public void setOrderNo(String orderNo) {
+        this.orderNo = orderNo;
+    }
+
+    public BigDecimal getFee() {
+        return fee;
+    }
+
+    public void setFee(BigDecimal fee) {
+        this.fee = fee;
+    }
+
+    public String getOpenId() {
+        return openId;
+    }
+
+    public void setOpenId(String openId) {
+        this.openId = openId;
+    }
+
+    public String getBody() {
+        return body;
+    }
+
+    public void setBody(String body) {
+        this.body = body;
+    }
+
+    public String getIp() {
+        return ip;
+    }
+
+    public void setIp(String ip) {
+        this.ip = ip;
+    }
+
+    public String getTradeType() {
+        return tradeType;
+    }
+
+    public void setTradeType(String tradeType) {
+        this.tradeType = tradeType;
+    }
+
+    public WXAPPInfo getApp() {
+        return app;
+    }
+
+    public void setApp(WXAPPInfo app) {
+        this.app = app;
+    }
+
+
+    public String getAttach() {
+        return attach;
+    }
+
+    public void setAttach(String attach) {
+        this.attach = attach;
+    }
+
+    public String getNotifyUrl() {
+        return notifyUrl;
+    }
+
+    public void setNotifyUrl(String notifyUrl) {
+        this.notifyUrl = notifyUrl;
+    }
+
+}

--
Gitblit v1.8.0