From 1e4cab335b1cb68ad3438e522ea410c2d2e753ed Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 07 Sep 2021 14:54:16 +0800 Subject: [PATCH] data_move --- src/main/java/com/xcong/excoin/modules/otc/entity/OtcMarketBussiness.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMarketBussiness.java b/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMarketBussiness.java index 31e2b9b..2ad3ae4 100644 --- a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMarketBussiness.java +++ b/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,28 @@ private Integer avgPayTime; private Integer avgCoinTime; + + /** + * 待回款 + */ + private BigDecimal waitBackMoney; + + /** + * 已回款 + */ + private BigDecimal hasBackMoney; + + /** + * 卖单数 + */ + private Integer saleOrderCnt; + + private BigDecimal saleFinishRatio; + + /** + * 买单数 + */ + private Integer buyOrderCnt; + + private Integer saleTotalCnt; } -- Gitblit v1.9.1