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/goods/recommend/RecommendGoodsDeleteHistory.java |  189 ++++++++++++++++++++++++----------------------
 1 files changed, 99 insertions(+), 90 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/goods/recommend/RecommendGoodsDeleteHistory.java b/fanli/src/main/java/com/yeshi/fanli/entity/goods/recommend/RecommendGoodsDeleteHistory.java
index 7d8e7a3..6b38c79 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/goods/recommend/RecommendGoodsDeleteHistory.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/goods/recommend/RecommendGoodsDeleteHistory.java
@@ -1,90 +1,99 @@
-package com.yeshi.fanli.entity.goods.recommend;
-
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-@Table("yeshi_ec_recommend_goods_user_delete")
-public class RecommendGoodsDeleteHistory {
-	@Column(name = "ud_id")
-	private Long id;
-	@Column(name = "ud_device")
-	private String device;
-	@Column(name = "ud_uid")
-	private Long uid;
-	@Column(name = "ud_goods_id")
-	private Long goodsId;
-	@Column(name = "ud_goods_source")
-	private Integer goodsSource;
-	@Column(name = "ud_reason")
-	private String reason;
-	@Column(name = "ud_create_time")
-	private Date createTime;
-	@Column(name = "ud_beizhu")
-	private String beiZhu;
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public String getDevice() {
-		return device;
-	}
-
-	public void setDevice(String device) {
-		this.device = device;
-	}
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-	public Long getGoodsId() {
-		return goodsId;
-	}
-
-	public void setGoodsId(Long goodsId) {
-		this.goodsId = goodsId;
-	}
-
-	public Integer getGoodsSource() {
-		return goodsSource;
-	}
-
-	public void setGoodsSource(Integer goodsSource) {
-		this.goodsSource = goodsSource;
-	}
-
-	public String getReason() {
-		return reason;
-	}
-
-	public void setReason(String reason) {
-		this.reason = reason;
-	}
-
-	public Date getCreateTime() {
-		return createTime;
-	}
-
-	public void setCreateTime(Date createTime) {
-		this.createTime = createTime;
-	}
-
-	public String getBeiZhu() {
-		return beiZhu;
-	}
-
-	public void setBeiZhu(String beiZhu) {
-		this.beiZhu = beiZhu;
-	}
-}
+package com.yeshi.fanli.entity.goods.recommend;
+
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+@Table("yeshi_ec_recommend_goods_user_delete")
+public class RecommendGoodsDeleteHistory {
+	@Column(name = "ud_id")
+	private Long id;
+	@Column(name = "ud_device")
+	private String device;
+	@Column(name = "ud_uid")
+	private Long uid;
+	@Column(name = "ud_goods_id")
+	private String goodsId;
+	@Column(name = "ud_goods_source")
+	private Integer goodsSource;
+	@Column(name = "ud_reason")
+	private String reason;
+	@Column(name = "ud_create_time")
+	private Date createTime;
+	@Column(name = "ud_beizhu")
+	private String beiZhu;
+
+	public RecommendGoodsDeleteHistory(String goodsId, Integer goodsSource) {
+		this.goodsId = goodsId;
+		this.goodsSource = goodsSource;
+	}
+	public RecommendGoodsDeleteHistory() {
+
+	}
+
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public String getDevice() {
+		return device;
+	}
+
+	public void setDevice(String device) {
+		this.device = device;
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public String getGoodsId() {
+		return goodsId;
+	}
+
+	public void setGoodsId(String goodsId) {
+		this.goodsId = goodsId;
+	}
+
+	public Integer getGoodsSource() {
+		return goodsSource;
+	}
+
+	public void setGoodsSource(Integer goodsSource) {
+		this.goodsSource = goodsSource;
+	}
+
+	public String getReason() {
+		return reason;
+	}
+
+	public void setReason(String reason) {
+		this.reason = reason;
+	}
+
+	public Date getCreateTime() {
+		return createTime;
+	}
+
+	public void setCreateTime(Date createTime) {
+		this.createTime = createTime;
+	}
+
+	public String getBeiZhu() {
+		return beiZhu;
+	}
+
+	public void setBeiZhu(String beiZhu) {
+		this.beiZhu = beiZhu;
+	}
+}

--
Gitblit v1.8.0