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/user/UserSystemCouponActivate.java |  180 ++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 96 insertions(+), 84 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserSystemCouponActivate.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserSystemCouponActivate.java
index 5fab033..7423503 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserSystemCouponActivate.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserSystemCouponActivate.java
@@ -1,84 +1,96 @@
-package com.yeshi.fanli.entity.bus.user;
-
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-
-/**
- * 鍒告縺娲昏繘搴�
- * @author Administrator
- *
- */
-@Table("yeshi_ec_user_system_coupon_activate")
-public class UserSystemCouponActivate {
-
-	// 鍒濆
-	public final static int STATE_INIT = 0;
-	// 婵�娲诲畬鎴�
-	public final static int STATE_END = 1;
-	
-	// 鐢ㄦ埛鍒竔d
-	@Column(name = "usca_id")
-	private Long id;
-
-	// 宸插畬鎴愭暟閲�
-	@Column(name = "usca_count")
-	private Integer count;
-
-	// 婵�娲荤姸鎬�
-	@Column(name = "usca_state")
-	private Integer state;
-
-	// 鍒涘缓鏃堕棿
-	@Column(name = "usca_create_time")
-	private Date createTime;
-
-	// 鏇存柊鏃堕棿
-	@Column(name = "usca_update_time")
-	private Date updateTime;
-	
-	
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public Integer getCount() {
-		return count;
-	}
-
-	public void setCount(Integer count) {
-		this.count = count;
-	}
-
-	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;
-	}
-
-}
+package com.yeshi.fanli.entity.bus.user;
+
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+
+/**
+ * 鍒告縺娲昏繘搴�
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_user_system_coupon_activate")
+public class UserSystemCouponActivate {
+
+	// 鍒濆
+	public final static int STATE_INIT = 0;
+	// 婵�娲诲畬鎴�
+	public final static int STATE_END = 1;
+	
+	// 鐢ㄦ埛鍒竔d
+	@Column(name = "usca_id")
+	private Long id;
+
+	// 宸插畬鎴愭暟閲�
+	@Column(name = "usca_count")
+	private Integer count;
+
+	// 婵�娲荤姸鎬�
+	@Column(name = "usca_state")
+	private Integer state;
+	
+	// 璁㈠崟鍙�
+	@Column(name = "usca_ordernos")
+	private String ordernos;
+
+	// 鍒涘缓鏃堕棿
+	@Column(name = "usca_create_time")
+	private Date createTime;
+
+	// 鏇存柊鏃堕棿
+	@Column(name = "usca_update_time")
+	private Date updateTime;
+	
+	
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public Integer getCount() {
+		return count;
+	}
+
+	public void setCount(Integer count) {
+		this.count = count;
+	}
+
+	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 String getOrdernos() {
+		return ordernos;
+	}
+
+	public void setOrdernos(String ordernos) {
+		this.ordernos = ordernos;
+	}
+
+}

--
Gitblit v1.8.0