Helius
2020-06-01 01c99fe57b1045c0c812a873771788e5812760a4
add rabbit price type enum
1 files added
21 ■■■■■ changed files
src/main/java/com/xcong/excoin/common/enumerates/RabbitPriceTypeEnum.java 21 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/common/enumerates/RabbitPriceTypeEnum.java
New file
@@ -0,0 +1,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;
    }
}