From 20ebaef1822ece044beae9ed51229928221c99f3 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Fri, 29 Jan 2021 17:08:58 +0800
Subject: [PATCH] modify
---
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