From a8bc04c1c9270a2a7f28d6113bc6f097496c50aa Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 01 Mar 2021 14:40:25 +0800
Subject: [PATCH] Merge branch 'whole_new' of http://120.27.238.55:7000/r/exchange into whole_new
---
src/main/java/com/xcong/excoin/rabbit/pricequeue/OrderModel.java | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/rabbit/pricequeue/OrderModel.java b/src/main/java/com/xcong/excoin/rabbit/pricequeue/OrderModel.java
index abc7c7c..e749028 100644
--- a/src/main/java/com/xcong/excoin/rabbit/pricequeue/OrderModel.java
+++ b/src/main/java/com/xcong/excoin/rabbit/pricequeue/OrderModel.java
@@ -25,20 +25,24 @@
*/
private Integer operateNo;
+ private Long memberId;
- public OrderModel(Long orderId, Integer type, String price, String symbol){
+
+ public OrderModel(Long orderId, Integer type, String price, String symbol, Long memberId){
this.orderId= orderId;
this.type= type;
this.price= price;
this.symbol= symbol;
+ this.memberId = memberId;
}
- public OrderModel(Long orderId,Integer type,String price, String symbol,Integer operateNo){
+ public OrderModel(Long orderId,Integer type,String price, String symbol,Integer operateNo, Long memberId){
this.orderId= orderId;
this.type= type;
this.price= price;
this.symbol= symbol;
this.operateNo= operateNo;
+ this.memberId = memberId;
}
public Integer getOperateNo() {
@@ -80,4 +84,12 @@
public void setSymbol(String symbol) {
this.symbol = symbol;
}
+
+ public Long getMemberId() {
+ return memberId;
+ }
+
+ public void setMemberId(Long memberId) {
+ this.memberId = memberId;
+ }
}
--
Gitblit v1.9.1