src/main/java/com/xcong/excoin/common/enumerates/RabbitPriceTypeEnum.java | ●●●●● 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; } }