Helius
2020-06-29 cf3fbd17f3eaa432b38b637fe08534e80c06fc95
src/main/java/com/xcong/excoin/modules/member/entity/AgentReturnEntity.java
@@ -14,6 +14,21 @@
@TableName("agent_return")
public class AgentReturnEntity extends BaseEntity {
    /**
     * 订单类型 开仓
     */
    public static final int ORDER_TYPE_OPEN = 1;
    /**
     * 订单类型 平仓
     */
    public static final int ORDER_TYPE_CLOSE = 2;
    /**
     * 订单类型 持仓
     */
    public static final int ORDER_TYPE_HOLD = 3;
    private Long memberId;
    private Long orderId;
@@ -44,4 +59,6 @@
    private int isReturn;
    private String returnSymbol;
    private int closingType;
}