Helius
2021-05-21 6a3148f5a1a680e0b8b477e6ea3f6899ca2f0b35
src/main/java/com/xcong/excoin/modules/otc/entity/OtcOrder.java
@@ -37,6 +37,10 @@
     * 订单状态 1-已提交未付款2-已付款3-已完成
     */
    private Integer status;
    public static final Integer STATUS_SUBMIT = 1;
    public static final Integer STATUS_PAY = 2;
    public static final Integer STATUS_FINISH = 3;
    public static final Integer STATUS_CANCEL = 4;
    /**
     * 付款时间
@@ -59,4 +63,24 @@
     * 支付市商ID
     */
    private Long payMbId;
    /**
     * 付款人姓名
     */
    private String payName;
    /**
     * 委托单用户ID
     */
    private Long entrustMemberId;
    /**
     * 订单类型 B-买 S-卖
     */
    private String orderType;
    /**
     * 对面的用户ID
     */
    private Long oppositeMemberId;
}