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/order/InviteOrderSubsidy.java |  294 +++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 179 insertions(+), 115 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/order/InviteOrderSubsidy.java b/fanli/src/main/java/com/yeshi/fanli/entity/order/InviteOrderSubsidy.java
index 5b1ca7e..c3126b0 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/order/InviteOrderSubsidy.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/order/InviteOrderSubsidy.java
@@ -1,115 +1,179 @@
-package com.yeshi.fanli.entity.order;
-
-import java.math.BigDecimal;
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-/**
- * 閭�璇疯鍗曡ˉ璐�
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_invite_order_subsidy")
-public class InviteOrderSubsidy {
-	// 鏈煡
-	public static final int STATE_UNKNOWN = 0;
-	// 鍙ˉ璐�
-	public static final int STATE_VALID = 1;
-	// 涓嶅彲琛ヨ创
-	public static final int STATE_INVALID = 2;
-	// 宸茶ˉ璐存垚鍔�
-	public static final int STATE_SUBSIDIZED = 3;
-
-	public InviteOrderSubsidy(Long id) {
-		super();
-		this.id = id;
-	}
-
-	public InviteOrderSubsidy() {
-	}
-
-	@Column(name = "os_id")
-	private Long id;
-	@Column(name = "os_uid")
-	private Long uid;
-	@Column(name = "os_money")
-	private BigDecimal money;
-	@Column(name = "os_order_no")
-	private String orderNo;
-	@Column(name = "os_source_type")
-	private Integer sourceType;
-	@Column(name = "os_state")
-	private Integer state;
-	@Column(name = "os_create_time")
-	private Date createTime;
-	@Column(name = "os_update_time")
-	private Date updateTime;
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public Long getUid() {
-		return uid;
-	}
-
-	public void setUid(Long uid) {
-		this.uid = uid;
-	}
-
-	public BigDecimal getMoney() {
-		return money;
-	}
-
-	public void setMoney(BigDecimal money) {
-		this.money = money;
-	}
-
-	public String getOrderNo() {
-		return orderNo;
-	}
-
-	public void setOrderNo(String orderNo) {
-		this.orderNo = orderNo;
-	}
-
-	public Integer getSourceType() {
-		return sourceType;
-	}
-
-	public void setSourceType(Integer sourceType) {
-		this.sourceType = sourceType;
-	}
-
-	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.order;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+/**
+ * 閭�璇疯鍗曡ˉ璐�
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_invite_order_subsidy")
+public class InviteOrderSubsidy {
+
+	public static final int LEVEL_ONE = 1;// 鐩存帴琛ヨ创
+	public static final int LEVEL_TWO = 2;// 闂存帴琛ヨ创
+
+	// 鏈煡
+	public static final int STATE_UNKNOWN = 0;
+	// 鍙ˉ璐�
+	public static final int STATE_VALID = 1;
+	// 涓嶅彲琛ヨ创
+	public static final int STATE_INVALID = 2;
+	// 宸茶ˉ璐存垚鍔�
+	public static final int STATE_SUBSIDIZED = 3;
+
+	public InviteOrderSubsidy(Long id) {
+		super();
+		this.id = id;
+	}
+
+	public InviteOrderSubsidy() {
+	}
+
+	@Column(name = "os_id")
+	private Long id;
+	@Column(name = "os_uid")
+	private Long uid;
+	@Column(name = "os_money")
+	private BigDecimal money;
+	@Column(name = "os_original_money")
+	private BigDecimal originalMoney;// 鍘熻繑鍒�
+	@Column(name = "os_order_no")
+	private String orderNo;
+	@Column(name = "os_source_type")
+	private Integer sourceType;
+	@Column(name = "os_state")
+	private Integer state;
+	@Column(name = "os_create_time")
+	private Date createTime;
+	@Column(name = "os_update_time")
+	private Date updateTime;
+	@Column(name = "os_pre_get_time")
+	private Date preGetTime;
+	@Column(name = "os_get_time")
+	private Date getTime;
+	@Column(name = "os_level")
+	private Integer level;// 鐩存帴/闂存帴
+	@Column(name = "os_valid_time")
+	private Date validTime;
+	@Column(name = "os_invalid_time")
+	private Date inValidTime;
+
+	public Date getInValidTime() {
+		return inValidTime;
+	}
+
+	public void setInValidTime(Date inValidTime) {
+		this.inValidTime = inValidTime;
+	}
+
+	public Date getValidTime() {
+		return validTime;
+	}
+
+	public void setValidTime(Date validTime) {
+		this.validTime = validTime;
+	}
+
+	public Integer getLevel() {
+		return level;
+	}
+
+	public void setLevel(Integer level) {
+		this.level = level;
+	}
+
+	public Date getPreGetTime() {
+		return preGetTime;
+	}
+
+	public void setPreGetTime(Date preGetTime) {
+		this.preGetTime = preGetTime;
+	}
+
+	public Date getGetTime() {
+		return getTime;
+	}
+
+	public void setGetTime(Date getTime) {
+		this.getTime = getTime;
+	}
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public BigDecimal getMoney() {
+		return money;
+	}
+
+	public void setMoney(BigDecimal money) {
+		this.money = money;
+	}
+
+	public String getOrderNo() {
+		return orderNo;
+	}
+
+	public void setOrderNo(String orderNo) {
+		this.orderNo = orderNo;
+	}
+
+	public Integer getSourceType() {
+		return sourceType;
+	}
+
+	public void setSourceType(Integer sourceType) {
+		this.sourceType = sourceType;
+	}
+
+	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 BigDecimal getOriginalMoney() {
+		return originalMoney;
+	}
+
+	public void setOriginalMoney(BigDecimal originalMoney) {
+		this.originalMoney = originalMoney;
+	}
+
+}

--
Gitblit v1.8.0