From c23bccf7f39ebae903cc20d255b014d3e80c0221 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期三, 06 十一月 2019 18:50:04 +0800
Subject: [PATCH] 红包H5接口修改
---
fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopOrder.java | 37 ++++++++++++++++++++++++++++++-------
1 files changed, 30 insertions(+), 7 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopOrder.java b/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopOrder.java
index f32a44f..84bbefb 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopOrder.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/shop/BanLiShopOrder.java
@@ -17,7 +17,8 @@
public final static int PAY_STATE_NOPAY = 0;// 鏈敮浠�
public final static int PAY_STATE_PAID = 1;// 宸叉敮浠�
- public final static int PAY_STATE_REFUND = 2;// 浠ラ��娆�
+ public final static int PAY_STATE_REFUNDING = 2;// 閫�娆句腑
+ public final static int PAY_STATE_REFUND = 3;// 宸查��娆�
public final static int STATE_INVALID = -1;// 澶辨晥
public final static int STATE_NO_PAY = 0;// 鏈敮浠�
@@ -25,7 +26,8 @@
public final static int STATE_PAID = 5;// 宸叉敮浠�,寰呭鏍�
public final static int STATE_REJECT = 10;// 瀹℃牳鎷掔粷锛岄��娆句腑
public final static int STATE_REJECT_REFUND_SUCCESS = 11;// 瀹℃牳鎷掔粷-閫�娆炬垚鍔�
- public final static int STATE_REJECT_REFUND_FAIL = 12;// 瀹℃牳鎷掔粷-閫�娆惧け璐�
+ public final static int STATE_REJECT_REFUND_PART_SUCCESS = 12;// 瀹℃牳鎷掔粷-閮ㄥ垎閫�娆炬垚鍔�
+ public final static int STATE_REJECT_REFUND_FAIL = 15;// 瀹℃牳鎷掔粷-閫�娆惧け璐�
public final static int STATE_SUCCESS = 20;// 浜ゆ槗鎴愬姛
@Column(name = "so_id")
@@ -42,13 +44,13 @@
private BigDecimal hongBaoPayment;// 绾㈠寘鏀粯閲戦
@Column(name = "so_payment_hongbao_state")
private Integer hongBaoPaymentState;// 鏀粯閲戦鐘舵��
- @Column(name = "so_payment_money")
- private BigDecimal balancePayment;// 浣欓鏀粯閲戦
- @Column(name = "so_payment_money_state")
- private Integer balancePaymentState;// 浣欓閲戦鐘舵��
@Column(name = "so_payment_balance")
- private BigDecimal moneyPayment;// 鐜伴噾鏀粯閲戦
+ private BigDecimal balancePayment;// 浣欓鏀粯閲戦
@Column(name = "so_payment_balance_state")
+ private Integer balancePaymentState;// 浣欓閲戦鐘舵��
+ @Column(name = "so_payment_money")
+ private BigDecimal moneyPayment;// 鐜伴噾鏀粯閲戦
+ @Column(name = "so_payment_money_state")
private Integer moneyPaymentState;// 鐜伴噾閲戦鐘舵��
@Column(name = "so_pay_time")
private Date payTime;// 璁㈠崟鏀粯鏃堕棿
@@ -60,6 +62,8 @@
private Integer state;// 鐘舵��
@Column(name = "so_state_desc")
private String stateDesc;// 鐘舵�佺畝浠�
+ @Column(name = "so_charge_account_type")
+ private ChargeTypeEnum chargeAccountType;// 鍏呭�艰处鍙风被鍨�
@Column(name = "so_charge_account")
private String chargeAccount;// 鍏呭�艰处鍙�
@Column(name = "so_charge_account2")
@@ -70,6 +74,17 @@
private Date createTime;// 鍒涘缓鏃堕棿
@Column(name = "so_update_time")
private Date updateTime;// 鏇存柊鏃堕棿
+ @Column(name = "so_order_goods_id")
+ private BanLiShopOrderGoods orderGoods;
+
+
+ public BanLiShopOrderGoods getOrderGoods() {
+ return orderGoods;
+ }
+
+ public void setOrderGoods(BanLiShopOrderGoods orderGoods) {
+ this.orderGoods = orderGoods;
+ }
public Long getId() {
return id;
@@ -238,4 +253,12 @@
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
+
+ public ChargeTypeEnum getChargeAccountType() {
+ return chargeAccountType;
+ }
+
+ public void setChargeAccountType(ChargeTypeEnum chargeAccountType) {
+ this.chargeAccountType = chargeAccountType;
+ }
}
--
Gitblit v1.8.0