From f3948fa31158c7b7dea3b038e01c43ce54c55a1c Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 14 Apr 2021 11:09:57 +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