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/integral/IntegralTaskClass.java |  452 ++++++++++++++++++++++++++++----------------------------
 1 files changed, 226 insertions(+), 226 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralTaskClass.java b/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralTaskClass.java
index 6e51613..e43dc89 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralTaskClass.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralTaskClass.java
@@ -1,226 +1,226 @@
-package com.yeshi.fanli.entity.integral;
-
-import java.io.Serializable;
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-import com.google.gson.annotations.Expose;
-import com.yeshi.fanli.entity.common.JumpDetailV2;
-
-/**
- * 绉垎浠诲姟鍒嗙被
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_integral_task_class")
-public class IntegralTaskClass implements Serializable {
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = 1L;
-	
-	public enum UniqueKeyEnum {
-		dailySign("姣忔棩绛惧埌"), smartSearch("鏅鸿兘鎼滅储"), buyReduce("鑷喘绔嬪噺"), inviteTeam("閭�璇风矇涓�"), shareReward("鍒嗕韩濂栧姳"), 
-		giveReward("璧犻�佸鍔�"), scanReward("娴忚濂栧姳") , orderReward("璁㈠崟濂栧姳"), accountMaintain("璐﹀彿缁存姢");
-		private final String desc;
-
-		private UniqueKeyEnum(String desc) {
-			this.desc = desc;
-		}
-
-		public String getDesc() {
-			return desc;
-		}
-	}
-
-	@Expose
-	@Column(name = "tc_id")
-	private Long id;
-
-	@Expose
-	@Column(name = "tc_name")
-	private String name;// 鍚嶇О
-	
-	@Expose
-	@Column(name = "tc_picture")
-	private String picture;// 鍥剧墖
-
-	@Column(name = "tc_unique_key")
-	private UniqueKeyEnum uniqueKey; // 鍞竴鍊�
-	
-	@Expose
-	@Column(name = "tc_tip")
-	private String tip; // 鎻愮ず
-
-	@Expose
-	@Column(name = "tc_btn_name")
-	private String btnName; // 鎸夐挳鍚嶇О
-
-	@Expose
-	@Column(name = "tc_jump_id")
-	private JumpDetailV2 jumpDetail; // 璺宠浆
-
-	@Expose
-	@Column(name = "tc_params")
-	private String params; // 璺宠浆鍙傛暟
-
-	@Expose
-	@Column(name = "tc_rule_name")
-	private String ruleName; // 瑙勫垯鍚嶇О
-
-	@Expose
-	@Column(name = "tc_rule")
-	private String rule; // 瑙勫垯
-	
-	@Expose
-	@Column(name = "tc_rule_link")
-	private String ruleLink; // 瑙勫垯璇︾粏閾炬帴
-	
-	@Expose
-	@Column(name = "tc_progress")
-	private String progress; // 杩涘害
-
-	@Column(name = "tc_orderby")
-	private Integer orderBy;// 鎺掑簭鍊硷紝瓒婂皬瓒婇潬鍓�
-	
-	@Column(name = "tc_state")
-	private Integer state;// 鐘舵�侊細1鍚敤锛�0鍋滅敤
-
-	@Column(name = "tc_create_time")
-	private Date createTime;
-
-	@Column(name = "tc_update_time")
-	private Date updateTime;
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public String getName() {
-		return name;
-	}
-
-	public void setName(String name) {
-		this.name = name;
-	}
-
-	public String getTip() {
-		return tip;
-	}
-
-	public void setTip(String tip) {
-		this.tip = tip;
-	}
-
-	public String getRule() {
-		return rule;
-	}
-
-	public void setRule(String rule) {
-		this.rule = rule;
-	}
-
-	public Integer getOrderBy() {
-		return orderBy;
-	}
-
-	public void setOrderBy(Integer orderBy) {
-		this.orderBy = orderBy;
-	}
-
-	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;
-	}
-
-	public String getBtnName() {
-		return btnName;
-	}
-
-	public void setBtnName(String btnName) {
-		this.btnName = btnName;
-	}
-
-	public String getRuleName() {
-		return ruleName;
-	}
-
-	public void setRuleName(String ruleName) {
-		this.ruleName = ruleName;
-	}
-
-	public JumpDetailV2 getJumpDetail() {
-		return jumpDetail;
-	}
-
-	public void setJumpDetail(JumpDetailV2 jumpDetail) {
-		this.jumpDetail = jumpDetail;
-	}
-
-	public String getParams() {
-		return params;
-	}
-
-	public void setParams(String params) {
-		this.params = params;
-	}
-
-	public Integer getState() {
-		return state;
-	}
-
-	public void setState(Integer state) {
-		this.state = state;
-	}
-
-	public UniqueKeyEnum getUniqueKey() {
-		return uniqueKey;
-	}
-
-	public void setUniqueKey(UniqueKeyEnum uniqueKey) {
-		this.uniqueKey = uniqueKey;
-	}
-
-	public String getPicture() {
-		return picture;
-	}
-
-	public void setPicture(String picture) {
-		this.picture = picture;
-	}
-
-	public String getProgress() {
-		return progress;
-	}
-
-	public void setProgress(String progress) {
-		this.progress = progress;
-	}
-
-	public String getRuleLink() {
-		return ruleLink;
-	}
-
-	public void setRuleLink(String ruleLink) {
-		this.ruleLink = ruleLink;
-	}
-	
-}
+package com.yeshi.fanli.entity.integral;
+
+import java.io.Serializable;
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+import com.google.gson.annotations.Expose;
+import com.yeshi.fanli.entity.common.JumpDetailV2;
+
+/**
+ * 绉垎浠诲姟鍒嗙被
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_integral_task_class")
+public class IntegralTaskClass implements Serializable {
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 1L;
+	
+	public enum UniqueKeyEnum {
+		dailySign("姣忔棩绛惧埌"), smartSearch("鏅鸿兘鎼滅储"), buyReduce("鑷喘绔嬪噺"), inviteTeam("閭�璇风矇涓�"), shareReward("鍒嗕韩濂栧姳"), 
+		giveReward("璧犻�佸鍔�"), scanReward("娴忚濂栧姳") , orderReward("璁㈠崟濂栧姳"), accountMaintain("璐﹀彿缁存姢");
+		private final String desc;
+
+		private UniqueKeyEnum(String desc) {
+			this.desc = desc;
+		}
+
+		public String getDesc() {
+			return desc;
+		}
+	}
+
+	@Expose
+	@Column(name = "tc_id")
+	private Long id;
+
+	@Expose
+	@Column(name = "tc_name")
+	private String name;// 鍚嶇О
+	
+	@Expose
+	@Column(name = "tc_picture")
+	private String picture;// 鍥剧墖
+
+	@Column(name = "tc_unique_key")
+	private UniqueKeyEnum uniqueKey; // 鍞竴鍊�
+	
+	@Expose
+	@Column(name = "tc_tip")
+	private String tip; // 鎻愮ず
+
+	@Expose
+	@Column(name = "tc_btn_name")
+	private String btnName; // 鎸夐挳鍚嶇О
+
+	@Expose
+	@Column(name = "tc_jump_id")
+	private JumpDetailV2 jumpDetail; // 璺宠浆
+
+	@Expose
+	@Column(name = "tc_params")
+	private String params; // 璺宠浆鍙傛暟
+
+	@Expose
+	@Column(name = "tc_rule_name")
+	private String ruleName; // 瑙勫垯鍚嶇О
+
+	@Expose
+	@Column(name = "tc_rule")
+	private String rule; // 瑙勫垯
+	
+	@Expose
+	@Column(name = "tc_rule_link")
+	private String ruleLink; // 瑙勫垯璇︾粏閾炬帴
+	
+	@Expose
+	@Column(name = "tc_progress")
+	private String progress; // 杩涘害
+
+	@Column(name = "tc_orderby")
+	private Integer orderBy;// 鎺掑簭鍊硷紝瓒婂皬瓒婇潬鍓�
+	
+	@Column(name = "tc_state")
+	private Integer state;// 鐘舵�侊細1鍚敤锛�0鍋滅敤
+
+	@Column(name = "tc_create_time")
+	private Date createTime;
+
+	@Column(name = "tc_update_time")
+	private Date updateTime;
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public String getName() {
+		return name;
+	}
+
+	public void setName(String name) {
+		this.name = name;
+	}
+
+	public String getTip() {
+		return tip;
+	}
+
+	public void setTip(String tip) {
+		this.tip = tip;
+	}
+
+	public String getRule() {
+		return rule;
+	}
+
+	public void setRule(String rule) {
+		this.rule = rule;
+	}
+
+	public Integer getOrderBy() {
+		return orderBy;
+	}
+
+	public void setOrderBy(Integer orderBy) {
+		this.orderBy = orderBy;
+	}
+
+	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;
+	}
+
+	public String getBtnName() {
+		return btnName;
+	}
+
+	public void setBtnName(String btnName) {
+		this.btnName = btnName;
+	}
+
+	public String getRuleName() {
+		return ruleName;
+	}
+
+	public void setRuleName(String ruleName) {
+		this.ruleName = ruleName;
+	}
+
+	public JumpDetailV2 getJumpDetail() {
+		return jumpDetail;
+	}
+
+	public void setJumpDetail(JumpDetailV2 jumpDetail) {
+		this.jumpDetail = jumpDetail;
+	}
+
+	public String getParams() {
+		return params;
+	}
+
+	public void setParams(String params) {
+		this.params = params;
+	}
+
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+
+	public UniqueKeyEnum getUniqueKey() {
+		return uniqueKey;
+	}
+
+	public void setUniqueKey(UniqueKeyEnum uniqueKey) {
+		this.uniqueKey = uniqueKey;
+	}
+
+	public String getPicture() {
+		return picture;
+	}
+
+	public void setPicture(String picture) {
+		this.picture = picture;
+	}
+
+	public String getProgress() {
+		return progress;
+	}
+
+	public void setProgress(String progress) {
+		this.progress = progress;
+	}
+
+	public String getRuleLink() {
+		return ruleLink;
+	}
+
+	public void setRuleLink(String ruleLink) {
+		this.ruleLink = ruleLink;
+	}
+	
+}

--
Gitblit v1.8.0