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/IntegralExchange.java |  470 +++++++++++++++++++++++++++++-----------------------------
 1 files changed, 235 insertions(+), 235 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralExchange.java b/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralExchange.java
index cfe0e7e..7ae610f 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralExchange.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/integral/IntegralExchange.java
@@ -1,235 +1,235 @@
-package com.yeshi.fanli.entity.integral;
-
-import java.io.Serializable;
-import java.math.BigDecimal;
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-import com.google.gson.annotations.Expose;
-
-/**
- * 绉垎鍏戞崲
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_integral_exchange")
-public class IntegralExchange implements Serializable {
-	
-	private static final long serialVersionUID = 1L;
-
-	public enum ExchangeTypeEnum {
-		freeCouponBuy("鑷喘鍏嶅崟鍒�"), freeCouponGive("璧犻�佸厤鍗曞埜"), rebatePercentCoupon("杩斿埄濂栧姳鍒�"), inviteCodeActivate("閭�璇风爜婵�娲诲崱"),
-		inviteCodePublish("閭�璇风爜鍙戝竷鍗�"), taoLiJin("鎺ㄥ箍绾㈠寘"), cash("鐜伴噾绾㈠寘");
-		private final String desc;
-
-		private ExchangeTypeEnum(String desc) {
-			this.desc = desc;
-		}
-
-		public String getDesc() {
-			return desc;
-		}
-	}
-
-	@Expose
-	@Column(name = "ex_id")
-	private Long id;
-
-	@Expose
-	@Column(name = "ex_name")
-	private String name;// 鍚嶇О
-
-	@Expose
-	@Column(name = "ex_picture")
-	private String picture; // 鍥剧墖
-
-	@Expose
-	@Column(name = "ex_gold_coin")
-	private Integer goldCoin; // 鍏戞崲鏁伴噺
-
-	@Expose
-	@Column(name = "ex_tip")
-	private String tip; // 鎻愮ず
-
-	@Expose
-	@Column(name = "ex_btn_name")
-	private String btnName; // 鎸夐挳鍚嶇О
-
-	@Expose
-	@Column(name = "ex_amount")
-	private BigDecimal amount; // 闈㈤锛� 鎺ㄥ箍绾㈠寘銆佺幇閲戠孩鍖�
-
-	@Column(name = "ex_upper_limit")
-	private Integer upperLimit; // 涓婇檺
-
-	@Expose
-	@Column(name = "ex_rule_link")
-	private String ruleLink; // 瑙勫垯閾炬帴
-	
-	@Column(name = "ex_orderby")
-	private Integer orderby; // 鎺掑簭
-
-	@Expose
-	@Column(name = "ex_type")
-	private ExchangeTypeEnum type; // 绫诲瀷
-	
-	@Expose
-	@Column(name = "ex_progress")
-	private String progress; // 鍏戞崲鎯呭喌
-
-	@Column(name = "ex_state")
-	private Integer state; // 鐘舵�侊細 1鍚敤 0鍋滅敤
-
-	@Column(name = "ex_create_time")
-	private Date createTime;
-
-	@Column(name = "ex_update_time")
-	private Date updateTime;
-	
-	// 鐢ㄦ埛閲戝竵
-	@Expose
-	private String userGoldCoin;
-	
-	// 鍙戝竷鍒楄〃-闇�瑕佽烦杞�
-	@Expose
-	private boolean needJump;
-
-	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 getPicture() {
-		return picture;
-	}
-
-	public void setPicture(String picture) {
-		this.picture = picture;
-	}
-
-	public Integer getGoldCoin() {
-		return goldCoin;
-	}
-
-	public void setGoldCoin(Integer goldCoin) {
-		this.goldCoin = goldCoin;
-	}
-
-	public String getTip() {
-		return tip;
-	}
-
-	public void setTip(String tip) {
-		this.tip = tip;
-	}
-
-	public BigDecimal getAmount() {
-		return amount;
-	}
-
-	public void setAmount(BigDecimal amount) {
-		this.amount = amount;
-	}
-
-	public Integer getUpperLimit() {
-		return upperLimit;
-	}
-
-	public void setUpperLimit(Integer upperLimit) {
-		this.upperLimit = upperLimit;
-	}
-
-	public String getRuleLink() {
-		return ruleLink;
-	}
-
-	public void setRuleLink(String ruleLink) {
-		this.ruleLink = ruleLink;
-	}
-
-	public ExchangeTypeEnum getType() {
-		return type;
-	}
-
-	public void setType(ExchangeTypeEnum type) {
-		this.type = type;
-	}
-
-	public Integer getState() {
-		return state;
-	}
-
-	public void setState(Integer state) {
-		this.state = state;
-	}
-
-	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 Integer getOrderby() {
-		return orderby;
-	}
-
-	public void setOrderby(Integer orderby) {
-		this.orderby = orderby;
-	}
-
-	public String getBtnName() {
-		return btnName;
-	}
-
-	public void setBtnName(String btnName) {
-		this.btnName = btnName;
-	}
-
-	public String getProgress() {
-		return progress;
-	}
-
-	public void setProgress(String progress) {
-		this.progress = progress;
-	}
-
-	public String getUserGoldCoin() {
-		return userGoldCoin;
-	}
-
-	public void setUserGoldCoin(String userGoldCoin) {
-		this.userGoldCoin = userGoldCoin;
-	}
-
-	public boolean isNeedJump() {
-		return needJump;
-	}
-
-	public void setNeedJump(boolean needJump) {
-		this.needJump = needJump;
-	}
-}
+package com.yeshi.fanli.entity.integral;
+
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+import com.google.gson.annotations.Expose;
+
+/**
+ * 绉垎鍏戞崲
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_integral_exchange")
+public class IntegralExchange implements Serializable {
+	
+	private static final long serialVersionUID = 1L;
+
+	public enum ExchangeTypeEnum {
+		freeCouponBuy("鑷喘鍏嶅崟鍒�"), freeCouponGive("璧犻�佸厤鍗曞埜"), rebatePercentCoupon("杩斿埄濂栧姳鍒�"), inviteCodeActivate("閭�璇风爜婵�娲诲崱"),
+		inviteCodePublish("閭�璇风爜鍙戝竷鍗�"), taoLiJin("鎺ㄥ箍绾㈠寘"), cash("鐜伴噾绾㈠寘");
+		private final String desc;
+
+		private ExchangeTypeEnum(String desc) {
+			this.desc = desc;
+		}
+
+		public String getDesc() {
+			return desc;
+		}
+	}
+
+	@Expose
+	@Column(name = "ex_id")
+	private Long id;
+
+	@Expose
+	@Column(name = "ex_name")
+	private String name;// 鍚嶇О
+
+	@Expose
+	@Column(name = "ex_picture")
+	private String picture; // 鍥剧墖
+
+	@Expose
+	@Column(name = "ex_gold_coin")
+	private Integer goldCoin; // 鍏戞崲鏁伴噺
+
+	@Expose
+	@Column(name = "ex_tip")
+	private String tip; // 鎻愮ず
+
+	@Expose
+	@Column(name = "ex_btn_name")
+	private String btnName; // 鎸夐挳鍚嶇О
+
+	@Expose
+	@Column(name = "ex_amount")
+	private BigDecimal amount; // 闈㈤锛� 鎺ㄥ箍绾㈠寘銆佺幇閲戠孩鍖�
+
+	@Column(name = "ex_upper_limit")
+	private Integer upperLimit; // 涓婇檺
+
+	@Expose
+	@Column(name = "ex_rule_link")
+	private String ruleLink; // 瑙勫垯閾炬帴
+	
+	@Column(name = "ex_orderby")
+	private Integer orderby; // 鎺掑簭
+
+	@Expose
+	@Column(name = "ex_type")
+	private ExchangeTypeEnum type; // 绫诲瀷
+	
+	@Expose
+	@Column(name = "ex_progress")
+	private String progress; // 鍏戞崲鎯呭喌
+
+	@Column(name = "ex_state")
+	private Integer state; // 鐘舵�侊細 1鍚敤 0鍋滅敤
+
+	@Column(name = "ex_create_time")
+	private Date createTime;
+
+	@Column(name = "ex_update_time")
+	private Date updateTime;
+	
+	// 鐢ㄦ埛閲戝竵
+	@Expose
+	private String userGoldCoin;
+	
+	// 鍙戝竷鍒楄〃-闇�瑕佽烦杞�
+	@Expose
+	private boolean needJump;
+
+	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 getPicture() {
+		return picture;
+	}
+
+	public void setPicture(String picture) {
+		this.picture = picture;
+	}
+
+	public Integer getGoldCoin() {
+		return goldCoin;
+	}
+
+	public void setGoldCoin(Integer goldCoin) {
+		this.goldCoin = goldCoin;
+	}
+
+	public String getTip() {
+		return tip;
+	}
+
+	public void setTip(String tip) {
+		this.tip = tip;
+	}
+
+	public BigDecimal getAmount() {
+		return amount;
+	}
+
+	public void setAmount(BigDecimal amount) {
+		this.amount = amount;
+	}
+
+	public Integer getUpperLimit() {
+		return upperLimit;
+	}
+
+	public void setUpperLimit(Integer upperLimit) {
+		this.upperLimit = upperLimit;
+	}
+
+	public String getRuleLink() {
+		return ruleLink;
+	}
+
+	public void setRuleLink(String ruleLink) {
+		this.ruleLink = ruleLink;
+	}
+
+	public ExchangeTypeEnum getType() {
+		return type;
+	}
+
+	public void setType(ExchangeTypeEnum type) {
+		this.type = type;
+	}
+
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+
+	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 Integer getOrderby() {
+		return orderby;
+	}
+
+	public void setOrderby(Integer orderby) {
+		this.orderby = orderby;
+	}
+
+	public String getBtnName() {
+		return btnName;
+	}
+
+	public void setBtnName(String btnName) {
+		this.btnName = btnName;
+	}
+
+	public String getProgress() {
+		return progress;
+	}
+
+	public void setProgress(String progress) {
+		this.progress = progress;
+	}
+
+	public String getUserGoldCoin() {
+		return userGoldCoin;
+	}
+
+	public void setUserGoldCoin(String userGoldCoin) {
+		this.userGoldCoin = userGoldCoin;
+	}
+
+	public boolean isNeedJump() {
+		return needJump;
+	}
+
+	public void setNeedJump(boolean needJump) {
+		this.needJump = needJump;
+	}
+}

--
Gitblit v1.8.0