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/mq/order/body/OrderMQMsg.java |  224 +++++++++++++++++++++++++++++--------------------------
 1 files changed, 117 insertions(+), 107 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/mq/order/body/OrderMQMsg.java b/fanli/src/main/java/com/yeshi/fanli/dto/mq/order/body/OrderMQMsg.java
index c3ea873..b067a57 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/mq/order/body/OrderMQMsg.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/mq/order/body/OrderMQMsg.java
@@ -1,107 +1,117 @@
-package com.yeshi.fanli.dto.mq.order.body;
-
-import java.util.Date;
-
-import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
-
-/**
- * 绾㈠寘MQ娑堟伅
- * 
- * @author Administrator
- *
- */
-public class OrderMQMsg extends BaseMQMsgBody {
-
-	public static int HANDLE_TYPE_ADD = 1;// 鏂板
-	public static int HANDLE_TYPE_UPDATE = 2;// 淇敼
-	public static int HANDLE_TYPE_ADD_AND_UPDATE = 12;// 閮ㄥ垎鏂板,閮ㄥ垎淇敼
-	private String orderId;
-	private Integer type;// 璁㈠崟绫诲瀷
-	private Long uid;
-	private int handleType; // 鎿嶄綔绫诲瀷
-	private boolean valid;
-	private int delayHour;// 寤舵椂鐨勬椂闂达紙灏忔椂璁帮級
-	private Date staticticDate;// 缁熻鍒扮殑鏃堕棿
-	private boolean miandan;
-
-	public OrderMQMsg(String orderId, Integer type, Long uid, int handleType, boolean valid, int delayHour,
-			Date staticticDate, boolean miandan) {
-		super();
-		this.orderId = orderId;
-		this.type = type;
-		this.uid = uid;
-		this.handleType = handleType;
-		this.valid = valid;
-		this.delayHour = delayHour;
-		this.staticticDate = staticticDate;
-		this.miandan = miandan;
-	}
-
-	public Date getStaticticDate() {
-		return staticticDate;
-	}
-
-	public void setStaticticDate(Date staticticDate) {
-		this.staticticDate = staticticDate;
-	}
-
-	public int getDelayHour() {
-		return delayHour;
-	}
-
-	public void setDelayHour(int delayHour) {
-		this.delayHour = delayHour;
-	}
-
-	public OrderMQMsg() {
-		super();
-	}
-
-	public String getOrderId() {
-		return orderId;
-	}
-
-	public void setOrderId(String orderId) {
-		this.orderId = orderId;
-	}
-
-	public Integer getType() {
-		return type;
-	}
-
-	public void setType(Integer type) {
-		this.type = type;
-	}
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-	public int getHandleType() {
-		return handleType;
-	}
-
-	public void setHandleType(int handleType) {
-		this.handleType = handleType;
-	}
-
-	public boolean isValid() {
-		return valid;
-	}
-
-	public void setValid(boolean valid) {
-		this.valid = valid;
-	}
-
-	public boolean isMiandan() {
-		return miandan;
-	}
-
-	public void setMiandan(boolean miandan) {
-		this.miandan = miandan;
-	}
-}
+package com.yeshi.fanli.dto.mq.order.body;
+
+import java.util.Date;
+
+import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
+
+/**
+ * 绾㈠寘MQ娑堟伅
+ * 
+ * @author Administrator
+ *
+ */
+public class OrderMQMsg extends BaseMQMsgBody {
+
+	public static int HANDLE_TYPE_ADD = 1;// 鏂板
+	public static int HANDLE_TYPE_UPDATE = 2;// 淇敼
+	public static int HANDLE_TYPE_ADD_AND_UPDATE = 12;// 閮ㄥ垎鏂板,閮ㄥ垎淇敼
+	private String orderId;
+	private Integer type;// 璁㈠崟绫诲瀷
+	private Long uid;
+	private int handleType; // 鎿嶄綔绫诲瀷
+	private boolean valid;
+	private int delayHour;// 寤舵椂鐨勬椂闂达紙灏忔椂璁帮級
+	private Date staticticDate;// 缁熻鍒扮殑鏃堕棿
+	private Date placeTime;//涓嬪崟鏃堕棿
+	private boolean miandan;
+
+	public OrderMQMsg(String orderId, Integer type, Long uid, int handleType, boolean valid, int delayHour,
+			Date staticticDate, boolean miandan,Date placeTime) {
+		super();
+		this.orderId = orderId;
+		this.type = type;
+		this.uid = uid;
+		this.handleType = handleType;
+		this.valid = valid;
+		this.delayHour = delayHour;
+		this.staticticDate = staticticDate;
+		this.miandan = miandan;
+		this.placeTime=placeTime;
+	}
+	
+	public Date getPlaceTime() {
+		return placeTime;
+	}
+
+	public void setPlaceTime(Date placeTime) {
+		this.placeTime = placeTime;
+	}
+
+	public Date getStaticticDate() {
+		return staticticDate;
+	}
+
+	public void setStaticticDate(Date staticticDate) {
+		this.staticticDate = staticticDate;
+	}
+
+	public int getDelayHour() {
+		return delayHour;
+	}
+
+	public void setDelayHour(int delayHour) {
+		this.delayHour = delayHour;
+	}
+
+	public OrderMQMsg() {
+		super();
+	}
+
+	public String getOrderId() {
+		return orderId;
+	}
+
+	public void setOrderId(String orderId) {
+		this.orderId = orderId;
+	}
+
+	public Integer getType() {
+		return type;
+	}
+
+	public void setType(Integer type) {
+		this.type = type;
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public int getHandleType() {
+		return handleType;
+	}
+
+	public void setHandleType(int handleType) {
+		this.handleType = handleType;
+	}
+
+	public boolean isValid() {
+		return valid;
+	}
+
+	public void setValid(boolean valid) {
+		this.valid = valid;
+	}
+
+	public boolean isMiandan() {
+		return miandan;
+	}
+
+	public void setMiandan(boolean miandan) {
+		this.miandan = miandan;
+	}
+}

--
Gitblit v1.8.0