Helius
2021-05-21 53eb8720b96e1ce038a887695d5a6542c1c2e7fe
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
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;
}