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/xinge/PushRecord.java |  296 ++++++++++++++++++++++++++++------------------------------
 1 files changed, 143 insertions(+), 153 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/xinge/PushRecord.java b/fanli/src/main/java/com/yeshi/fanli/entity/xinge/PushRecord.java
index 64014b2..66275e4 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/xinge/PushRecord.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/xinge/PushRecord.java
@@ -1,153 +1,143 @@
-package com.yeshi.fanli.entity.xinge;
-
-import javax.persistence.Column;
-import javax.persistence.Entity;
-import javax.persistence.GeneratedValue;
-import javax.persistence.GenerationType;
-import javax.persistence.Id;
-import javax.persistence.Table;
-
-@Entity
-@Table(name = "yeshi_ec_push_record")
-@org.yeshi.utils.mybatis.Table("yeshi_ec_push_record")
-public class PushRecord {
-	@Id
-	@GeneratedValue(strategy = GenerationType.AUTO)
-	@org.yeshi.utils.mybatis.Column(name = "id")
-	private Long id;
-
-	@Column(name = "`url`")
-	@org.yeshi.utils.mybatis.Column(name = "url")
-	private String url;
-
-	@Column(name = "`type`")
-	@org.yeshi.utils.mybatis.Column(name = "type")
-	private Integer type; // 1.鍟嗗搧鎺ㄩ�� 2.url鎺ㄩ�� 3.鎺ㄨ崘璇︽儏椤甸潰鎺ㄩ�� 4.绔欏唴淇�
-
-	@Column(name = "`title`")
-	@org.yeshi.utils.mybatis.Column(name = "title")
-	private String title;
-
-	@Column(name = "`state`")
-	@org.yeshi.utils.mybatis.Column(name = "state")
-	private Integer state;// 1:閮芥垚鍔� 2锛氫粎android鎴愬姛 3.浠匢OS鎴愬姛 4.閮藉け璐�
-
-	@org.yeshi.utils.mybatis.Column(name = "createtime")
-	private Long createtime;
-
-	@org.yeshi.utils.mybatis.Column(name = "count")
-	private Long count;
-
-	@org.yeshi.utils.mybatis.Column(name = "iosPushId")
-	private String iosPushId;
-
-	@org.yeshi.utils.mybatis.Column(name = "androidPushId")
-	private String androidPushId;
-
-	@org.yeshi.utils.mybatis.Column(name = "account")
-	private Integer account; // 鎺ユ敹瀵硅薄 0:锟�?锟斤拷璁惧 1锛欼OS璁惧 2锛欰ndroid璁惧 3.鍗曚釜璐﹀彿 4.鍏朵粬
-
-	@org.yeshi.utils.mybatis.Column(name = "appName")
-	private String appName;
-
-	@org.yeshi.utils.mybatis.Column(name = "uid")
-	@Column(name = "`uid`")
-	private Long uid;
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public String getUrl() {
-		return url;
-	}
-
-	public void setUrl(String url) {
-		this.url = url;
-	}
-
-	public Integer getType() {
-		return type;
-	}
-
-	public void setType(Integer type) {
-		this.type = type;
-	}
-
-	public String getTitle() {
-		return title;
-	}
-
-	public void setTitle(String title) {
-		this.title = title;
-	}
-
-	public Integer getState() {
-		return state;
-	}
-
-	public void setState(Integer state) {
-		this.state = state;
-	}
-
-	public Long getCreatetime() {
-		return createtime;
-	}
-
-	public void setCreatetime(Long createtime) {
-		this.createtime = createtime;
-	}
-
-	public Long getCount() {
-		return count;
-	}
-
-	public void setCount(Long count) {
-		this.count = count;
-	}
-
-	public String getIosPushId() {
-		return iosPushId;
-	}
-
-	public void setIosPushId(String iosPushId) {
-		this.iosPushId = iosPushId;
-	}
-
-	public String getAndroidPushId() {
-		return androidPushId;
-	}
-
-	public void setAndroidPushId(String androidPushId) {
-		this.androidPushId = androidPushId;
-	}
-
-	public Integer getAccount() {
-		return account;
-	}
-
-	public void setAccount(Integer account) {
-		this.account = account;
-	}
-
-	public String getAppName() {
-		return appName;
-	}
-
-	public void setAppName(String appName) {
-		this.appName = appName;
-	}
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-}
+package com.yeshi.fanli.entity.xinge;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+@Table("yeshi_ec_push_record")
+public class PushRecord {
+	
+	@Column(name = "id")
+	private Long id;
+
+	@Column(name = "url")
+	private String url;
+
+	@Column(name = "type")
+	private Integer type; // 1.鍟嗗搧鎺ㄩ�� 2.url鎺ㄩ�� 3.鎺ㄨ崘璇︽儏椤甸潰鎺ㄩ�� 4.绔欏唴淇�
+
+	@Column(name = "title")
+	private String title;
+
+	@Column(name = "state")
+	private Integer state;// 1:閮芥垚鍔� 2锛氫粎android鎴愬姛 3.浠匢OS鎴愬姛 4.閮藉け璐�
+
+	@Column(name = "createtime")
+	private Long createtime;
+
+	@Column(name = "count")
+	private Long count;
+
+	@Column(name = "iosPushId")
+	private String iosPushId;
+
+	@Column(name = "androidPushId")
+	private String androidPushId;
+
+	@Column(name = "account")
+	private Integer account; // 鎺ユ敹瀵硅薄 0:锟�?锟斤拷璁惧 1锛欼OS璁惧 2锛欰ndroid璁惧 3.鍗曚釜璐﹀彿 4.鍏朵粬
+
+	@Column(name = "state")
+	private String appName;
+
+	@Column(name = "uid")
+	private Long uid;
+	
+	
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public String getUrl() {
+		return url;
+	}
+
+	public void setUrl(String url) {
+		this.url = url;
+	}
+
+	public Integer getType() {
+		return type;
+	}
+
+	public void setType(Integer type) {
+		this.type = type;
+	}
+
+	public String getTitle() {
+		return title;
+	}
+
+	public void setTitle(String title) {
+		this.title = title;
+	}
+
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+
+	public Long getCreatetime() {
+		return createtime;
+	}
+
+	public void setCreatetime(Long createtime) {
+		this.createtime = createtime;
+	}
+
+	public Long getCount() {
+		return count;
+	}
+
+	public void setCount(Long count) {
+		this.count = count;
+	}
+
+	public String getIosPushId() {
+		return iosPushId;
+	}
+
+	public void setIosPushId(String iosPushId) {
+		this.iosPushId = iosPushId;
+	}
+
+	public String getAndroidPushId() {
+		return androidPushId;
+	}
+
+	public void setAndroidPushId(String androidPushId) {
+		this.androidPushId = androidPushId;
+	}
+
+	public Integer getAccount() {
+		return account;
+	}
+
+	public void setAccount(Integer account) {
+		this.account = account;
+	}
+
+	public String getAppName() {
+		return appName;
+	}
+
+	public void setAppName(String appName) {
+		this.appName = appName;
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+}

--
Gitblit v1.8.0