xiaoyong931011
2021-05-26 0ca7bf5c850eaef852a6b49d4b94e8366deedb29
src/main/java/com/xcong/excoin/modules/otc/entity/OtcMarketBussiness.java
@@ -20,6 +20,9 @@
     * 1-待审核2-审核通过3-审核拒绝
     */
    private Integer status;
    public static final Integer CHECK_WAIT = 1;
    public static final Integer CHECK_PASS = 2;
    public static final Integer CHECK_REFUSE = 3;
    private Integer buyCnt;
@@ -30,4 +33,14 @@
    private Integer avgPayTime;
    private Integer avgCoinTime;
    /**
     * 待回款
     */
    private BigDecimal waitBackMoney;
    /**
     * 已回款
     */
    private BigDecimal hasBackMoney;
}