Helius
2020-06-01 01c99fe57b1045c0c812a873771788e5812760a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.common.enumerates;
 
/**
 * rabbit 价格操作类型枚举
 * 1:买入委托2:开多3:开空4:平多5:平空6:爆仓平多7:爆仓平空8:撤单9:止盈平多10:止盈平空11:止损平多12:止损平空
 *
 * @author helius
 */
public enum RabbitPriceTypeEnum {
 
    /**
     * 开多
     */
    OPEN_MORE(2);
 
    private int value;
 
    private RabbitPriceTypeEnum(int value) {
        this.value = value;
    }
}