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/UserVIPPreInfo.java |  178 ++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 98 insertions(+), 80 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/UserVIPPreInfo.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/UserVIPPreInfo.java
index 2606cd9..5c79acd 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/UserVIPPreInfo.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/vip/UserVIPPreInfo.java
@@ -1,80 +1,98 @@
-package com.yeshi.fanli.entity.bus.user.vip;
-
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-/**
- * 鍒嗛樁娈佃秴绾т細鍛�
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_user_vip_pre_info")
-public class UserVIPPreInfo {
-	public static int PROCESS_1 = 3;// 瓒呯骇浼氬憳绗竴闃舵
-	public static int PROCESS_2 = 7;// 瓒呯骇浼氬憳绗簩闃舵
-
-	@Column(name = "vpi_id")
-	private Long id;
-	@Column(name = "vpi_uid")
-	private Long uid;
-	@Column(name = "vpi_process")
-	private Integer process;
-	@Column(name = "vpi_beizhu")
-	private String beizhu;
-	@Column(name = "vpi_create_time")
-	private Date createTime;
-	@Column(name = "vpi_update_time")
-	private Date updateTime;
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-	public Integer getProcess() {
-		return process;
-	}
-
-	public void setProcess(Integer process) {
-		this.process = process;
-	}
-
-	public String getBeizhu() {
-		return beizhu;
-	}
-
-	public void setBeizhu(String beizhu) {
-		this.beizhu = beizhu;
-	}
-
-	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 java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+/**
+ * 鍒嗛樁娈佃秴绾т細鍛�
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_user_vip_pre_info")
+public class UserVIPPreInfo {
+	public static int PROCESS_1 = 3;// 浼氬憳绗竴闃舵
+	public static int PROCESS_2 = 7;// 浼氬憳绗簩闃舵
+	public static int PROCESS_3 = 10;// 浼氬憳绗笁闃舵
+	public static int PROCESS_4 = 11;// 浼氬憳绗洓闃舵
+
+	public final static int SOURCE_TYPE_ORDER = 1;// 璁㈠崟鍨�
+
+	public final static int SOURCE_TYPE_TEAM = 2;// 鍥㈤槦鍨�
+	
+	public final static int SOURCE_TYPE_ARTIFICIAL = 0;// 浜哄伐鍗囩骇
+
+	@Column(name = "vpi_id")
+	private Long id;
+	@Column(name = "vpi_uid")
+	private Long uid;
+	@Column(name = "vpi_process")
+	private Integer process;
+	@Column(name = "vpi_beizhu")
+	private String beizhu;
+	@Column(name = "vpi_create_time")
+	private Date createTime;
+	@Column(name = "vpi_update_time")
+	private Date updateTime;
+	@Column(name = "vpi_source_type")
+	private Integer sourceType;// 鏉ユ簮绫诲瀷
+
+	public Integer getSourceType() {
+		return sourceType;
+	}
+
+	public void setSourceType(Integer sourceType) {
+		this.sourceType = sourceType;
+	}
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public Integer getProcess() {
+		return process;
+	}
+
+	public void setProcess(Integer process) {
+		this.process = process;
+	}
+
+	public String getBeizhu() {
+		return beizhu;
+	}
+
+	public void setBeizhu(String beizhu) {
+		this.beizhu = beizhu;
+	}
+
+	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