fix
Helius
2022-03-16 2e9a80416a0d2b049d8531d3666c45974ae54cc8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.xcong.excoin.modules.otc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("otc_market_bussiness")
public class OtcMarketBussiness extends BaseEntity {
 
    private Long memberId;
 
    private String nikename;
 
    private String declaration;
 
    /**
     * 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;
 
    private Integer totalOrderCnt;
 
    private BigDecimal finishRatio;
 
    private Integer avgPayTime;
 
    private Integer avgCoinTime;
 
    /**
     * 待回款
     */
    private BigDecimal waitBackMoney;
 
    /**
     * 已回款
     */
    private BigDecimal hasBackMoney;
 
    /**
     * 卖单数
     */
    private Integer saleOrderCnt;
 
    private BigDecimal saleFinishRatio;
 
    /**
     * 买单数
     */
    private Integer buyOrderCnt;
 
    private Integer saleTotalCnt;
}