Helius
2020-09-08 6210236a0c3753eb38619262f47e94de655b0a38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.xcong.excoin.rabbit.pricequeue;
 
public class OrderModel {
    /**
     * 订单ID
     */
    private Long orderId;
    /**
     * 类型
     */
    private Integer type;
 
    /**
     * 触发价格
     */
    private String price;
 
    /**
     * 币种
     */
    private String symbol;
 
    /**
     * 爆仓价位设置次数
     */
    private Integer operateNo;
 
    private Long memberId;
 
 
    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, Long memberId){
        this.orderId= orderId;
        this.type= type;
        this.price= price;
        this.symbol= symbol;
        this.operateNo= operateNo;
        this.memberId = memberId;
    }
 
    public Integer getOperateNo() {
        return operateNo;
    }
 
    public void setOperateNo(Integer operateNo) {
        this.operateNo = operateNo;
    }
 
    public Long getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
 
    public String getSymbol() {
        return symbol;
    }
 
    public void setSymbol(String symbol) {
        this.symbol = symbol;
    }
 
    public Long getMemberId() {
        return memberId;
    }
 
    public void setMemberId(Long memberId) {
        this.memberId = memberId;
    }
}