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/taobao/UserTLJBuyHistory.java |  195 ++++++++++++++++++++++++------------------------
 1 files changed, 98 insertions(+), 97 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/taobao/UserTLJBuyHistory.java b/fanli/src/main/java/com/yeshi/fanli/entity/taobao/UserTLJBuyHistory.java
index b315edf..4a94491 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/taobao/UserTLJBuyHistory.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/taobao/UserTLJBuyHistory.java
@@ -1,97 +1,98 @@
-package com.yeshi.fanli.entity.taobao;
-
-import java.util.Date;
-
-import org.springframework.data.annotation.Id;
-import org.springframework.data.mongodb.core.index.Indexed;
-import org.springframework.data.mongodb.core.mapping.Document;
-import org.springframework.data.mongodb.core.mapping.Field;
-
-/**
- * 娣樼ぜ閲戣嚜璐鍙栬褰�
- * 
- * @author Administrator
- *
- */
-@Document(collection = "userTLJBuyHistory")
-public class UserTLJBuyHistory {
-	@Id
-	@Field
-	private String id;
-	@Field
-	@Indexed
-	private Long uid;
-	@Field
-	@Indexed
-	private Long auctionId;
-	@Field
-	@Indexed
-	private String day;// 濡�:2019-01-01
-	@Field
-	private Date createTime;// 鍒涘缓鏃堕棿
-
-	@Field
-	private String rightsId;
-
-	public String getRightsId() {
-		return rightsId;
-	}
-
-	public void setRightsId(String rightsId) {
-		this.rightsId = rightsId;
-	}
-
-	public UserTLJBuyHistory(String id, Long uid, Long auctionId, String day, String rightsId, Date createTime) {
-		this.id = id;
-		this.uid = uid;
-		this.auctionId = auctionId;
-		this.day = day;
-		this.createTime = createTime;
-		this.rightsId = rightsId;
-	}
-
-	public UserTLJBuyHistory() {
-
-	}
-
-	public String getId() {
-		return id;
-	}
-
-	public void setId(String id) {
-		this.id = id;
-	}
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-	public Long getAuctionId() {
-		return auctionId;
-	}
-
-	public void setAuctionId(Long auctionId) {
-		this.auctionId = auctionId;
-	}
-
-	public String getDay() {
-		return day;
-	}
-
-	public void setDay(String day) {
-		this.day = day;
-	}
-
-	public Date getCreateTime() {
-		return createTime;
-	}
-
-	public void setCreateTime(Date createTime) {
-		this.createTime = createTime;
-	}
-
-}
+package com.yeshi.fanli.entity.taobao;
+
+import java.util.Date;
+
+import org.springframework.data.annotation.Id;
+import org.springframework.data.mongodb.core.index.Indexed;
+import org.springframework.data.mongodb.core.mapping.Document;
+import org.springframework.data.mongodb.core.mapping.Field;
+
+/**
+ * 娣樼ぜ閲戣嚜璐鍙栬褰�
+ * 
+ * @author Administrator
+ *
+ *
+ */
+@Document(collection = "userTLJBuyHistory")
+public class UserTLJBuyHistory {
+	@Id
+	@Field
+	private String id;
+	@Field
+	@Indexed
+	private Long uid;
+	@Field
+	@Indexed
+	private String auctionId;
+	@Field
+	@Indexed
+	private String day;// 濡�:2019-01-01
+	@Field
+	private Date createTime;// 鍒涘缓鏃堕棿
+
+	@Field
+	private String rightsId;
+
+	public String getRightsId() {
+		return rightsId;
+	}
+
+	public void setRightsId(String rightsId) {
+		this.rightsId = rightsId;
+	}
+
+	public UserTLJBuyHistory(String id, Long uid, String auctionId, String day, String rightsId, Date createTime) {
+		this.id = id;
+		this.uid = uid;
+		this.auctionId = auctionId;
+		this.day = day;
+		this.createTime = createTime;
+		this.rightsId = rightsId;
+	}
+
+	public UserTLJBuyHistory() {
+
+	}
+
+	public String getId() {
+		return id;
+	}
+
+	public void setId(String id) {
+		this.id = id;
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public String getAuctionId() {
+		return auctionId;
+	}
+
+	public void setAuctionId(String auctionId) {
+		this.auctionId = auctionId;
+	}
+
+	public String getDay() {
+		return day;
+	}
+
+	public void setDay(String day) {
+		this.day = day;
+	}
+
+	public Date getCreateTime() {
+		return createTime;
+	}
+
+	public void setCreateTime(Date createTime) {
+		this.createTime = createTime;
+	}
+
+}

--
Gitblit v1.8.0