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/entity/bus/user/vip/GiveVIPApplyInfo.java |  526 +++++++++++++++++++++++++++++-----------------------------
 1 files changed, 263 insertions(+), 263 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/GiveVIPApplyInfo.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/GiveVIPApplyInfo.java
index f8339fe..72389de 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/GiveVIPApplyInfo.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/GiveVIPApplyInfo.java
@@ -1,263 +1,263 @@
-package com.yeshi.fanli.entity.bus.user.vip;
-
-import com.yeshi.fanli.entity.bus.user.UserInfo;
-import org.springframework.data.annotation.Id;
-import org.springframework.data.annotation.Transient;
-import org.springframework.data.mongodb.core.index.Indexed;
-import org.springframework.data.mongodb.core.mapping.Document;
-import org.springframework.data.mongodb.core.mapping.Field;
-
-import java.util.Date;
-import java.util.List;
-
-/**
- * 浼氬憳璧犻�佺敵璇�
- * @author Administrator
- *
- */
-@Document(collection = "giveVIPApplyInfo")
-public class GiveVIPApplyInfo {
-
-	public final static int STATE_NO_INFO = -1;// 闇�瑕佹彁浜よ祫鏂�
-
-	public final static int STATE_NOT_VERIFY = 0;// 灏氭湭瀹℃牳
-
-	public final static int STATE_REJECT = 1;// 鎷掔粷
-
-	public final static int STATE_SUCCESS = 2;// 寮�閫氭垚鍔�
-
-	@Id
-	private String id;
-	@Field
-	private Long targetUid;// 寮�閫氱洰鏍囩敤鎴稩D
-	@Indexed
-	@Field
-	private Long sourceUid;// 寮�閫氭簮鐢ㄦ埛ID
-	@Field
-	private UserLevelEnum level;// 寮�閫氱瓑绾�
-	@Field
-	private String phone;// 鐢佃瘽鍙风爜
-	@Field
-	private String wxID;// 寰俊鍙�
-	@Field
-	private String applyReason;// 鐢宠鍘熷洜
-	@Field
-	private Boolean hasDoOtherPlatform;// 鏄惁鍋氳繃鍏朵粬骞冲彴
-	@Field
-	private String otherPlatformName;// 鍋氳繃鍏朵粬骞冲彴鐨勫悕绉�
-	@Field
-	private Integer otherDirectTeams;// 鍏朵粬骞冲彴鐨勭洿鎺ョ矇涓濇暟閲�
-	@Field
-	private Integer otherInDirectTeams;// 鍏朵粬骞冲彴鐨勯棿鎺ョ矇涓濇暟閲�
-	@Field
-	private String otherLevel;// 鍏朵粬骞冲彴鐨勭瓑绾�
-	@Field
-	private String otherMonthIncome;// 鍏朵粬骞冲彴鐨勬湀鏀跺叆
-	@Field
-	private List<String> imgList;// 涓婁紶鐨勫浘鐗囧垪琛�
-	@Field
-	private Integer state;// 鐘舵��
-	@Field
-	private Date verifyTime;// 瀹℃牳鏃堕棿
-	@Field
-	private String rejectReson;// 鎷掔粷鐞嗙敱
-	@Field
-	private String mark;// 澶囨敞
-	@Indexed
-	@Field
-	private Date createTime;// 鍒涘缓鏃堕棿
-	@Field
-	private Date updateTime;// 鏇存敼鏃堕棿
-	@Field
-	private Long adminUserId;// 瀹℃牳浜哄憳ID
-
-	@Transient
-	private String otherPlatformInfo;// 骞冲彴淇℃伅
-
-	@Transient
-	private UserInfo targetUser;
-
-	public String getApplyReason() {
-		return applyReason;
-	}
-
-	public void setApplyReason(String applyReason) {
-		this.applyReason = applyReason;
-	}
-
-	public UserInfo getTargetUser() {
-		return targetUser;
-	}
-
-	public void setTargetUser(UserInfo targetUser) {
-		this.targetUser = targetUser;
-	}
-
-	public String getOtherPlatformInfo() {
-		return otherPlatformInfo;
-	}
-
-	public void setOtherPlatformInfo(String otherPlatformInfo) {
-		this.otherPlatformInfo = otherPlatformInfo;
-	}
-
-	public Long getAdminUserId() {
-		return adminUserId;
-	}
-
-	public void setAdminUserId(Long adminUserId) {
-		this.adminUserId = adminUserId;
-	}
-
-	public String getId() {
-		return id;
-	}
-
-	public void setId(String id) {
-		this.id = id;
-	}
-
-	public Long getTargetUid() {
-		return targetUid;
-	}
-
-	public void setTargetUid(Long targetUid) {
-		this.targetUid = targetUid;
-	}
-
-	public Long getSourceUid() {
-		return sourceUid;
-	}
-
-	public void setSourceUid(Long sourceUid) {
-		this.sourceUid = sourceUid;
-	}
-
-	public UserLevelEnum getLevel() {
-		return level;
-	}
-
-	public void setLevel(UserLevelEnum level) {
-		this.level = level;
-	}
-
-	public String getPhone() {
-		return phone;
-	}
-
-	public void setPhone(String phone) {
-		this.phone = phone;
-	}
-
-	public String getWxID() {
-		return wxID;
-	}
-
-	public void setWxID(String wxID) {
-		this.wxID = wxID;
-	}
-
-	public Boolean getHasDoOtherPlatform() {
-		return hasDoOtherPlatform;
-	}
-
-	public void setHasDoOtherPlatform(Boolean hasDoOtherPlatform) {
-		this.hasDoOtherPlatform = hasDoOtherPlatform;
-	}
-
-	public String getOtherPlatformName() {
-		return otherPlatformName;
-	}
-
-	public void setOtherPlatformName(String otherPlatformName) {
-		this.otherPlatformName = otherPlatformName;
-	}
-
-	public Integer getOtherDirectTeams() {
-		return otherDirectTeams;
-	}
-
-	public void setOtherDirectTeams(Integer otherDirectTeams) {
-		this.otherDirectTeams = otherDirectTeams;
-	}
-
-	public Integer getOtherInDirectTeams() {
-		return otherInDirectTeams;
-	}
-
-	public void setOtherInDirectTeams(Integer otherInDirectTeams) {
-		this.otherInDirectTeams = otherInDirectTeams;
-	}
-
-	public String getOtherLevel() {
-		return otherLevel;
-	}
-
-	public void setOtherLevel(String otherLevel) {
-		this.otherLevel = otherLevel;
-	}
-
-	public String getOtherMonthIncome() {
-		return otherMonthIncome;
-	}
-
-	public void setOtherMonthIncome(String otherMonthIncome) {
-		this.otherMonthIncome = otherMonthIncome;
-	}
-
-	public List<String> getImgList() {
-		return imgList;
-	}
-
-	public void setImgList(List<String> imgList) {
-		this.imgList = imgList;
-	}
-
-	public Integer getState() {
-		return state;
-	}
-
-	public void setState(Integer state) {
-		this.state = state;
-	}
-
-	public Date getVerifyTime() {
-		return verifyTime;
-	}
-
-	public void setVerifyTime(Date verifyTime) {
-		this.verifyTime = verifyTime;
-	}
-
-	public String getRejectReson() {
-		return rejectReson;
-	}
-
-	public void setRejectReson(String rejectReson) {
-		this.rejectReson = rejectReson;
-	}
-
-	public String getMark() {
-		return mark;
-	}
-
-	public void setMark(String mark) {
-		this.mark = mark;
-	}
-
-	public Date getCreateTime() {
-		return createTime;
-	}
-
-	public void setCreateTime(Date createTime) {
-		this.createTime = createTime;
-	}
-
-	public Date getUpdateTime() {
-		return updateTime;
-	}
-
-	public void setUpdateTime(Date updateTime) {
-		this.updateTime = updateTime;
-	}
-}
+package com.yeshi.fanli.entity.bus.user.vip;
+
+import com.yeshi.fanli.entity.bus.user.UserInfo;
+import org.springframework.data.annotation.Id;
+import org.springframework.data.annotation.Transient;
+import org.springframework.data.mongodb.core.index.Indexed;
+import org.springframework.data.mongodb.core.mapping.Document;
+import org.springframework.data.mongodb.core.mapping.Field;
+
+import java.util.Date;
+import java.util.List;
+
+/**
+ * 浼氬憳璧犻�佺敵璇�
+ * @author Administrator
+ *
+ */
+@Document(collection = "giveVIPApplyInfo")
+public class GiveVIPApplyInfo {
+
+	public final static int STATE_NO_INFO = -1;// 闇�瑕佹彁浜よ祫鏂�
+
+	public final static int STATE_NOT_VERIFY = 0;// 灏氭湭瀹℃牳
+
+	public final static int STATE_REJECT = 1;// 鎷掔粷
+
+	public final static int STATE_SUCCESS = 2;// 寮�閫氭垚鍔�
+
+	@Id
+	private String id;
+	@Field
+	private Long targetUid;// 寮�閫氱洰鏍囩敤鎴稩D
+	@Indexed
+	@Field
+	private Long sourceUid;// 寮�閫氭簮鐢ㄦ埛ID
+	@Field
+	private UserLevelEnum level;// 寮�閫氱瓑绾�
+	@Field
+	private String phone;// 鐢佃瘽鍙风爜
+	@Field
+	private String wxID;// 寰俊鍙�
+	@Field
+	private String applyReason;// 鐢宠鍘熷洜
+	@Field
+	private Boolean hasDoOtherPlatform;// 鏄惁鍋氳繃鍏朵粬骞冲彴
+	@Field
+	private String otherPlatformName;// 鍋氳繃鍏朵粬骞冲彴鐨勫悕绉�
+	@Field
+	private Integer otherDirectTeams;// 鍏朵粬骞冲彴鐨勭洿鎺ョ矇涓濇暟閲�
+	@Field
+	private Integer otherInDirectTeams;// 鍏朵粬骞冲彴鐨勯棿鎺ョ矇涓濇暟閲�
+	@Field
+	private String otherLevel;// 鍏朵粬骞冲彴鐨勭瓑绾�
+	@Field
+	private String otherMonthIncome;// 鍏朵粬骞冲彴鐨勬湀鏀跺叆
+	@Field
+	private List<String> imgList;// 涓婁紶鐨勫浘鐗囧垪琛�
+	@Field
+	private Integer state;// 鐘舵��
+	@Field
+	private Date verifyTime;// 瀹℃牳鏃堕棿
+	@Field
+	private String rejectReson;// 鎷掔粷鐞嗙敱
+	@Field
+	private String mark;// 澶囨敞
+	@Indexed
+	@Field
+	private Date createTime;// 鍒涘缓鏃堕棿
+	@Field
+	private Date updateTime;// 鏇存敼鏃堕棿
+	@Field
+	private Long adminUserId;// 瀹℃牳浜哄憳ID
+
+	@Transient
+	private String otherPlatformInfo;// 骞冲彴淇℃伅
+
+	@Transient
+	private UserInfo targetUser;
+
+	public String getApplyReason() {
+		return applyReason;
+	}
+
+	public void setApplyReason(String applyReason) {
+		this.applyReason = applyReason;
+	}
+
+	public UserInfo getTargetUser() {
+		return targetUser;
+	}
+
+	public void setTargetUser(UserInfo targetUser) {
+		this.targetUser = targetUser;
+	}
+
+	public String getOtherPlatformInfo() {
+		return otherPlatformInfo;
+	}
+
+	public void setOtherPlatformInfo(String otherPlatformInfo) {
+		this.otherPlatformInfo = otherPlatformInfo;
+	}
+
+	public Long getAdminUserId() {
+		return adminUserId;
+	}
+
+	public void setAdminUserId(Long adminUserId) {
+		this.adminUserId = adminUserId;
+	}
+
+	public String getId() {
+		return id;
+	}
+
+	public void setId(String id) {
+		this.id = id;
+	}
+
+	public Long getTargetUid() {
+		return targetUid;
+	}
+
+	public void setTargetUid(Long targetUid) {
+		this.targetUid = targetUid;
+	}
+
+	public Long getSourceUid() {
+		return sourceUid;
+	}
+
+	public void setSourceUid(Long sourceUid) {
+		this.sourceUid = sourceUid;
+	}
+
+	public UserLevelEnum getLevel() {
+		return level;
+	}
+
+	public void setLevel(UserLevelEnum level) {
+		this.level = level;
+	}
+
+	public String getPhone() {
+		return phone;
+	}
+
+	public void setPhone(String phone) {
+		this.phone = phone;
+	}
+
+	public String getWxID() {
+		return wxID;
+	}
+
+	public void setWxID(String wxID) {
+		this.wxID = wxID;
+	}
+
+	public Boolean getHasDoOtherPlatform() {
+		return hasDoOtherPlatform;
+	}
+
+	public void setHasDoOtherPlatform(Boolean hasDoOtherPlatform) {
+		this.hasDoOtherPlatform = hasDoOtherPlatform;
+	}
+
+	public String getOtherPlatformName() {
+		return otherPlatformName;
+	}
+
+	public void setOtherPlatformName(String otherPlatformName) {
+		this.otherPlatformName = otherPlatformName;
+	}
+
+	public Integer getOtherDirectTeams() {
+		return otherDirectTeams;
+	}
+
+	public void setOtherDirectTeams(Integer otherDirectTeams) {
+		this.otherDirectTeams = otherDirectTeams;
+	}
+
+	public Integer getOtherInDirectTeams() {
+		return otherInDirectTeams;
+	}
+
+	public void setOtherInDirectTeams(Integer otherInDirectTeams) {
+		this.otherInDirectTeams = otherInDirectTeams;
+	}
+
+	public String getOtherLevel() {
+		return otherLevel;
+	}
+
+	public void setOtherLevel(String otherLevel) {
+		this.otherLevel = otherLevel;
+	}
+
+	public String getOtherMonthIncome() {
+		return otherMonthIncome;
+	}
+
+	public void setOtherMonthIncome(String otherMonthIncome) {
+		this.otherMonthIncome = otherMonthIncome;
+	}
+
+	public List<String> getImgList() {
+		return imgList;
+	}
+
+	public void setImgList(List<String> imgList) {
+		this.imgList = imgList;
+	}
+
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+
+	public Date getVerifyTime() {
+		return verifyTime;
+	}
+
+	public void setVerifyTime(Date verifyTime) {
+		this.verifyTime = verifyTime;
+	}
+
+	public String getRejectReson() {
+		return rejectReson;
+	}
+
+	public void setRejectReson(String rejectReson) {
+		this.rejectReson = rejectReson;
+	}
+
+	public String getMark() {
+		return mark;
+	}
+
+	public void setMark(String mark) {
+		this.mark = mark;
+	}
+
+	public Date getCreateTime() {
+		return createTime;
+	}
+
+	public void setCreateTime(Date createTime) {
+		this.createTime = createTime;
+	}
+
+	public Date getUpdateTime() {
+		return updateTime;
+	}
+
+	public void setUpdateTime(Date updateTime) {
+		this.updateTime = updateTime;
+	}
+}

--
Gitblit v1.8.0