xiaoyong931011
2021-07-05 cf200a1f92c01ba22c326c49391f748ffb006910
src/main/java/com/xcong/excoin/modules/otc/entity/OtcOrderEntity.java
@@ -35,6 +35,11 @@
    public static final Integer STATUS_THREE = 3;
    public static final Integer STATUS_FOUR = 4;
    //委托单类型 B-买S-卖
    private String orderType;
    public static final String ORDERTYPE_B = "B";
    public static final String ORDERTYPE_S = "S";
    //付款时间
    private Date payTime;
@@ -45,10 +50,13 @@
    private long entrustOrderId;
    //市商ID
    private long mdId;
    private long mbId;
    //支付市商ID
    private long payMdId;
    private long payMbId;
    //付款人姓名
    private String payName;
    @TableField(exist = false)
    private String account;
@@ -65,5 +73,9 @@
    @TableField(exist = false)
    private String nickname;
    /**
     * 对面的用户ID
     */
    private Long oppositeMemberId;
}