zainali5120
2020-09-25 286ea89f5f6cade73276f865effa5dcd2b19406d
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
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;
 
 
    public OrderModel(Long orderId, Integer type, String price, String symbol){
        this.orderId= orderId;
        this.type= type;
        this.price= price;
        this.symbol= symbol;
    }
 
    public OrderModel(Long orderId,Integer type,String price, String symbol,Integer operateNo){
        this.orderId= orderId;
        this.type= type;
        this.price= price;
        this.symbol= symbol;
        this.operateNo= operateNo;
    }
 
    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;
    }
}