From eb9d939661413fc70975b0a75b44126c257bdc49 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 14 Apr 2021 18:27:43 +0800
Subject: [PATCH] 20210414 测试账号的跟随者不返利给交易员
---
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