xiaoyong931011
2021-07-05 cf200a1f92c01ba22c326c49391f748ffb006910
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
61
62
63
64
65
66
67
68
69
package com.xcong.excoin.modules.otc.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.entity.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
//市商信息表
@Data
@TableName("otc_market_bussiness")
public class OtcMarketBussinessEntity extends BaseEntity {
 
    //会员ID
    private long memberId;
 
    //昵称
    private String nikename;
 
    //宣言
    private String declaration;
 
    //审核状态 1-待审核2-审核通过3-审核拒绝
    private Integer status;
    public static final Integer STATUS_ONE = 1;
    public static final Integer STATUS_TWO = 2;
    public static final Integer STATUS_THREE = 3;
 
    //服务人数
    private Integer buyCnt;
 
    //总单数
    private Integer totalOrderCnt;
 
    //完成率
    private BigDecimal finishRatio;
 
    //待回款
    private BigDecimal waitBackMoney;
 
    //已回款
    private BigDecimal hasBackMoney;
 
    //平均付款时间
    private Integer avgPayTime;
 
    //平均放币时间
    private Integer avgCoinTime;
 
    @TableField(exist = false)
    private String account;
 
    @TableField(exist = false)
    private String phone;
 
    @TableField(exist = false)
    private String inviteId;
 
    @TableField(exist = false)
    private String realName;
    /**
     * 本次回款
     */
    @TableField(exist = false)
    private BigDecimal coinAmount;
 
 
}