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/user/body/UserInfoUpdateMQMsg.java |  143 ++++++++++++++++++++++++++---------------------
 1 files changed, 78 insertions(+), 65 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java b/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java
index 066f6f7..345754c 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java
@@ -1,65 +1,78 @@
-package com.yeshi.fanli.dto.mq.user.body;
-
-import java.util.Date;
-
-import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
-
-/**
- * 鐢ㄦ埛淇℃伅淇敼
- * 
- * @author Administrator
- *
- */
-public class UserInfoUpdateMQMsg extends BaseMQMsgBody {
-
-	public enum UserInfoUpdateTypeEnum {
-		nickName("鏄电О"), portrait("澶村儚"), sex("缁戝畾鏇存崲"), inviteCode("閭�璇风爜淇敼"), wxId("寰俊鍙�"), wxErCode("寰俊浜岀淮鐮�");
-		private final String desc;
-
-		private UserInfoUpdateTypeEnum(String desc) {
-			this.desc = desc;
-		}
-
-		public String getDesc() {
-			return desc;
-		}
-	}
-
-	private Long uid;// 鐢ㄦ埛ID
-	private UserInfoUpdateTypeEnum type;// 绫诲瀷
-	private String value;// 鍊�
-	private Date createTime;//鏃堕棿
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-	public UserInfoUpdateTypeEnum getType() {
-		return type;
-	}
-
-	public void setType(UserInfoUpdateTypeEnum type) {
-		this.type = type;
-	}
-
-	public String getValue() {
-		return value;
-	}
-
-	public void setValue(String value) {
-		this.value = value;
-	}
-
-	public Date getCreateTime() {
-		return createTime;
-	}
-
-	public void setCreateTime(Date createTime) {
-		this.createTime = createTime;
-	}
-
-}
+package com.yeshi.fanli.dto.mq.user.body;
+
+import java.util.Date;
+
+import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
+
+/**
+ * 鐢ㄦ埛淇℃伅淇敼
+ * 
+ * @author Administrator
+ *
+ */
+public class UserInfoUpdateMQMsg extends BaseMQMsgBody {
+
+	public enum UserInfoUpdateTypeEnum {
+		nickName("鏄电О"), portrait("澶村儚"), sex("缁戝畾鏇存崲"), inviteCode("閭�璇风爜淇敼"), wxId("寰俊鍙�"), wxErCode("寰俊浜岀淮鐮�");
+		private final String desc;
+
+		private UserInfoUpdateTypeEnum(String desc) {
+			this.desc = desc;
+		}
+
+		public String getDesc() {
+			return desc;
+		}
+	}
+
+	private Long uid;// 鐢ㄦ埛ID
+	private UserInfoUpdateTypeEnum type;// 绫诲瀷
+	private String value;// 鍊�
+	private Date createTime;// 鏃堕棿
+
+	public UserInfoUpdateMQMsg(Long uid, UserInfoUpdateTypeEnum type, String value, Date createTime) {
+		super();
+		this.uid = uid;
+		this.type = type;
+		this.value = value;
+		this.createTime = createTime;
+	}
+
+	public UserInfoUpdateMQMsg() {
+		super();
+
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public UserInfoUpdateTypeEnum getType() {
+		return type;
+	}
+
+	public void setType(UserInfoUpdateTypeEnum type) {
+		this.type = type;
+	}
+
+	public String getValue() {
+		return value;
+	}
+
+	public void setValue(String value) {
+		this.value = value;
+	}
+
+	public Date getCreateTime() {
+		return createTime;
+	}
+
+	public void setCreateTime(Date createTime) {
+		this.createTime = createTime;
+	}
+
+}

--
Gitblit v1.8.0