From 48a204f4c90a80c0bb4e5ba1f9f0f42939cadba8 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期三, 01 一月 2020 10:19:34 +0800
Subject: [PATCH] 用户资金记录bug修改,京东,拼多多小程序商品转链

---
 fanli/src/main/java/com/yeshi/fanli/entity/elme/ElmeOrder.java |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/elme/ElmeOrder.java b/fanli/src/main/java/com/yeshi/fanli/entity/elme/ElmeOrder.java
index 2766a77..6e1f0c0 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/elme/ElmeOrder.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/elme/ElmeOrder.java
@@ -55,7 +55,22 @@
 	private Date createTime;
 	@Column(name = "eo_update_time")
 	private Date updateTime;
+	@Column(name = "eo_state")
+	private Integer state;//0-澶辨晥  1-鏈夋晥
 
+	
+	public Integer getState() {
+		return state;
+	}
+
+	public void setState(Integer state) {
+		this.state = state;
+	}
+
+	private Long uid;
+	private BigDecimal hongbao;
+	private Integer hbState;
+	
 	public Long getId() {
 		return id;
 	}
@@ -200,4 +215,27 @@
 		this.updateTime = updateTime;
 	}
 
+	public Long getUid() {
+		return uid;
+	}
+
+	public void setUid(Long uid) {
+		this.uid = uid;
+	}
+
+	public BigDecimal getHongbao() {
+		return hongbao;
+	}
+
+	public void setHongbao(BigDecimal hongbao) {
+		this.hongbao = hongbao;
+	}
+
+	public Integer getHbState() {
+		return hbState;
+	}
+
+	public void setHbState(Integer hbState) {
+		this.hbState = hbState;
+	}
 }

--
Gitblit v1.8.0