src/main/java/com/xcong/excoin/modules/contract/entity/ContractHoldOrderEntity.java
@@ -17,6 +17,15 @@ public class ContractHoldOrderEntity extends BaseEntity { /** * 是否可平仓 1-是 */ public static final int ORDER_CAN_CLOSING_Y = 1; /** * 是否可平仓 0-否 */ public static final int ORDER_CAN_CLOSING_N = 0; /** * 会员Id */ private Long memberId; @@ -112,4 +121,9 @@ * 是否可平仓 0-否 1-是 */ private int isCanClosing; /** * 批次号 队列平仓时使用,避免重复 */ public String batchNo; }