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/activity/RecommendActivity.java |  489 +++++++++++++++++++++++++++++++-----------------------
 1 files changed, 279 insertions(+), 210 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/activity/RecommendActivity.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/activity/RecommendActivity.java
index e343d6c..c060a8c 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/activity/RecommendActivity.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/activity/RecommendActivity.java
@@ -1,210 +1,279 @@
-package com.yeshi.fanli.entity.bus.activity;
-
-import java.io.Serializable;
-import java.util.Date;
-import java.util.List;
-
-import com.google.gson.annotations.Expose;
-import com.google.gson.annotations.SerializedName;
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-/**
- * 鎺ㄨ崘娲诲姩
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_activity_recommend")
-public class RecommendActivity implements Serializable{
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = 1L;
-	public final static int TYPE_SHARE_GOODS = 1;// 鍟嗗搧鍒嗕韩
-	public final static int TYPE_INVITE = 2;// 鐢熸垚閭�璇峰浘
-	public final static int TYPE_TEXTIMG = 3;// 绠�鍗曞浘鏂�
-	public final static int TYPE_VIDEO = 4;// 瑙嗛
-	@Expose
-	@Column(name = "ar_id")
-	private Long id;
-	@Expose
-	@Column(name = "ar_title")
-	private String title;// 鏍囬
-	@Expose
-	@Column(name = "ar_type")
-	private Integer type;// 绫诲瀷
-	@Column(name = "ar_order_by")
-	private Integer orderBy;// 鎺掑簭鍊� 浠庡皬鍒板ぇ鎺掑簭
-	@Expose
-	@Column(name = "ar_activity_uid")
-	private ActivityUser activityUser;// 鍙戝竷鍔ㄦ�佺殑鐢ㄦ埛
-
-	@Expose
-	private List<RecommendActivityTaoBaoGoods> goodsList;// 鍟嗗搧鍒楄〃-鍟嗗搧鍒嗕韩鏈夋灞炴��
-
-	@Expose
-	private List<String> imageList;// 鍥剧墖鍒楄〃
-
-	@Expose
-	private List<String> widthAndHeight;
-
-	@Column(name = "ar_share_count")
-	private Integer shareCount;// 鍒嗕韩鏁�
-
-	// 鎬诲叡鍒嗕韩璧氱殑璧勯噾-鍟嗗搧鍒嗕韩鏈夋灞炴��
-	@Expose
-	@Column(name = "ar_total_getmoney")
-	private String totalGetMoney;
-
-	@Expose
-	@Column(name = "ar_video_post_picture")
-	private String videoPostPictire;// 瑙嗛灏侀潰鍥剧墖
-
-	@Expose
-	@Column(name = "ar_video_url")
-	private String videoUrl;// 瑙嗛閾炬帴
-
-	@Expose
-	@Column(name = "ar_create_time")
-	private Date createTime;// 鍒涘缓鏃堕棿
-
-	@Expose
-	@Column(name = "ar_top")
-	private Boolean top;// 鏄惁缃《
-
-	@Expose
-	@SerializedName("shareCount")
-	private String shareCountShow;
-	
-	
-	private RecommendActivityInviteInfo inviteInfo;
-
-	public RecommendActivityInviteInfo getInviteInfo() {
-		return inviteInfo;
-	}
-
-	public void setInviteInfo(RecommendActivityInviteInfo inviteInfo) {
-		this.inviteInfo = inviteInfo;
-	}
-
-	public String getShareCountShow() {
-		return shareCountShow;
-	}
-
-	public void setShareCountShow(String shareCountShow) {
-		this.shareCountShow = shareCountShow;
-	}
-
-	public Boolean getTop() {
-		return top;
-	}
-
-	public void setTop(Boolean top) {
-		this.top = top;
-	}
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public String getTitle() {
-		return title;
-	}
-
-	public void setTitle(String title) {
-		this.title = title;
-	}
-
-	public Integer getType() {
-		return type;
-	}
-
-	public void setType(Integer type) {
-		this.type = type;
-	}
-
-	public Integer getOrderBy() {
-		return orderBy;
-	}
-
-	public void setOrderBy(Integer orderBy) {
-		this.orderBy = orderBy;
-	}
-
-	public ActivityUser getActivityUser() {
-		return activityUser;
-	}
-
-	public void setActivityUser(ActivityUser activityUser) {
-		this.activityUser = activityUser;
-	}
-
-	public List<RecommendActivityTaoBaoGoods> getGoodsList() {
-		return goodsList;
-	}
-
-	public void setGoodsList(List<RecommendActivityTaoBaoGoods> goodsList) {
-		this.goodsList = goodsList;
-	}
-
-	public List<String> getImageList() {
-		return imageList;
-	}
-
-	public void setImageList(List<String> imageList) {
-		this.imageList = imageList;
-	}
-
-	public Integer getShareCount() {
-		return shareCount;
-	}
-
-	public void setShareCount(Integer shareCount) {
-		this.shareCount = shareCount;
-	}
-
-	public String getTotalGetMoney() {
-		return totalGetMoney;
-	}
-
-	public void setTotalGetMoney(String totalGetMoney) {
-		this.totalGetMoney = totalGetMoney;
-	}
-
-	public String getVideoPostPictire() {
-		return videoPostPictire;
-	}
-
-	public void setVideoPostPictire(String videoPostPictire) {
-		this.videoPostPictire = videoPostPictire;
-	}
-
-	public String getVideoUrl() {
-		return videoUrl;
-	}
-
-	public void setVideoUrl(String videoUrl) {
-		this.videoUrl = videoUrl;
-	}
-
-	public Date getCreateTime() {
-		return createTime;
-	}
-
-	public void setCreateTime(Date createTime) {
-		this.createTime = createTime;
-	}
-
-	public List<String> getWidthAndHeight() {
-		return widthAndHeight;
-	}
-
-	public void setWidthAndHeight(List<String> widthAndHeight) {
-		this.widthAndHeight = widthAndHeight;
-	}
-}
+package com.yeshi.fanli.entity.bus.activity;
+
+import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
+
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+/**
+ * 鎺ㄨ崘娲诲姩
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_activity_recommend")
+public class RecommendActivity implements Serializable{
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 1L;
+	public final static int TYPE_SHARE_GOODS = 1;// 鍟嗗搧鍒嗕韩
+	public final static int TYPE_INVITE = 2;// 鐢熸垚閭�璇峰浘
+	public final static int TYPE_TEXTIMG = 3;// 绠�鍗曞浘鏂�
+	public final static int TYPE_VIDEO = 4;// 瑙嗛
+	@Expose
+	@Column(name = "ar_id")
+	private Long id;
+	@Expose
+	@Column(name = "ar_title")
+	private String title;// 鏍囬
+	@Expose
+	@Column(name = "ar_type")
+	private Integer type;// 绫诲瀷
+	@Column(name = "ar_order_by")
+	private Integer orderBy;// 鎺掑簭鍊� 浠庡皬鍒板ぇ鎺掑簭
+	@Expose
+	@Column(name = "ar_activity_uid")
+	private ActivityUser activityUser;// 鍙戝竷鍔ㄦ�佺殑鐢ㄦ埛
+
+	
+	@Column(name = "ar_share_count")
+	private Integer shareCount;// 鍒嗕韩鏁�
+
+	// 鎬诲叡鍒嗕韩璧氱殑璧勯噾-鍟嗗搧鍒嗕韩鏈夋灞炴��
+	@Expose
+	@Column(name = "ar_total_getmoney")
+	private String totalGetMoney;
+
+	@Expose
+	@Column(name = "ar_video_post_picture")
+	private String videoPostPictire;// 瑙嗛灏侀潰鍥剧墖
+
+	@Expose
+	@Column(name = "ar_video_url")
+	private String videoUrl;// 瑙嗛閾炬帴
+
+	@Expose
+	@Column(name = "ar_create_time")
+	private Date createTime;// 鍒涘缓鏃堕棿
+
+	@Expose
+	@Column(name = "ar_top")
+	private Boolean top;// 鏄惁缃《
+
+	@Column(name = "ar_state")
+	private Integer state;// 鍙戝竷鐘舵�侊細1宸插彂甯� 0鏈彂甯�
+	
+	
+	
+	@Expose
+	@SerializedName("shareCount")
+	private String shareCountShow;
+	
+	
+	@Column(name = "ar_start_time")
+	private Date startTime;//璧峰鏃堕棿
+	
+	@Column(name = "ar_end_time")
+	private Date endTime;//缁撴潫鏃堕棿
+	
+	// 鏄惁瀹氭椂
+	private boolean timeTask;
+	// 璧峰鏃堕棿
+	private String startTime_str;
+	// 缁撴潫鏃堕棿
+	private String endTime_str;
+	
+	
+	@Expose
+	private List<RecommendActivityTaoBaoGoods> goodsList;// 鍟嗗搧鍒楄〃-鍟嗗搧鍒嗕韩鏈夋灞炴��
+
+	@Expose
+	private List<String> imageList;// 鍥剧墖鍒楄〃
+
+	@Expose
+	private List<String> widthAndHeight;
+
+	private RecommendActivityInviteInfo inviteInfo;
+
+	public RecommendActivityInviteInfo getInviteInfo() {
+		return inviteInfo;
+	}
+
+	public void setInviteInfo(RecommendActivityInviteInfo inviteInfo) {
+		this.inviteInfo = inviteInfo;
+	}
+
+	public String getShareCountShow() {
+		return shareCountShow;
+	}
+
+	public void setShareCountShow(String shareCountShow) {
+		this.shareCountShow = shareCountShow;
+	}
+
+	public Boolean getTop() {
+		return top;
+	}
+
+	public void setTop(Boolean top) {
+		this.top = top;
+	}
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public String getTitle() {
+		return title;
+	}
+
+	public void setTitle(String title) {
+		this.title = title;
+	}
+
+	public Integer getType() {
+		return type;
+	}
+
+	public void setType(Integer type) {
+		this.type = type;
+	}
+
+	public Integer getOrderBy() {
+		return orderBy;
+	}
+
+	public void setOrderBy(Integer orderBy) {
+		this.orderBy = orderBy;
+	}
+
+	public ActivityUser getActivityUser() {
+		return activityUser;
+	}
+
+	public void setActivityUser(ActivityUser activityUser) {
+		this.activityUser = activityUser;
+	}
+
+	public List<RecommendActivityTaoBaoGoods> getGoodsList() {
+		return goodsList;
+	}
+
+	public void setGoodsList(List<RecommendActivityTaoBaoGoods> goodsList) {
+		this.goodsList = goodsList;
+	}
+
+	public List<String> getImageList() {
+		return imageList;
+	}
+
+	public void setImageList(List<String> imageList) {
+		this.imageList = imageList;
+	}
+
+	public Integer getShareCount() {
+		return shareCount;
+	}
+
+	public void setShareCount(Integer shareCount) {
+		this.shareCount = shareCount;
+	}
+
+	public String getTotalGetMoney() {
+		return totalGetMoney;
+	}
+
+	public void setTotalGetMoney(String totalGetMoney) {
+		this.totalGetMoney = totalGetMoney;
+	}
+
+	public String getVideoPostPictire() {
+		return videoPostPictire;
+	}
+
+	public void setVideoPostPictire(String videoPostPictire) {
+		this.videoPostPictire = videoPostPictire;
+	}
+
+	public String getVideoUrl() {
+		return videoUrl;
+	}
+
+	public void setVideoUrl(String videoUrl) {
+		this.videoUrl = videoUrl;
+	}
+
+	public Date getCreateTime() {
+		return createTime;
+	}
+
+	public void setCreateTime(Date createTime) {
+		this.createTime = createTime;
+	}
+
+	public List<String> getWidthAndHeight() {
+		return widthAndHeight;
+	}
+
+	public void setWidthAndHeight(List<String> widthAndHeight) {
+		this.widthAndHeight = widthAndHeight;
+	}
+
+	public Date getStartTime() {
+		return startTime;
+	}
+
+	public void setStartTime(Date startTime) {
+		this.startTime = startTime;
+	}
+
+	public Date getEndTime() {
+		return endTime;
+	}
+
+	public void setEndTime(Date endTime) {
+		this.endTime = endTime;
+	}
+
+	public boolean isTimeTask() {
+		return timeTask;
+	}
+
+	public void setTimeTask(boolean timeTask) {
+		this.timeTask = timeTask;
+	}
+
+	public String getStartTime_str() {
+		return startTime_str;
+	}
+
+	public void setStartTime_str(String startTime_str) {
+		this.startTime_str = startTime_str;
+	}
+
+	public String getEndTime_str() {
+		return endTime_str;
+	}
+
+	public void setEndTime_str(String endTime_str) {
+		this.endTime_str = endTime_str;
+	}
+
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+	
+}

--
Gitblit v1.8.0