xiaoyong931011
2020-12-01 9ef1f7389587bd35f26bb96935a788784f57cb07
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
package com.xcong.excoin.modules.member.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@TableName("td_coin_charge")
public class TdCoinCharge {
 
    private Long id;
    private Long memberId;
 
    private String certificate;
 
    private BigDecimal amount;
 
    private BigDecimal lastAmount;
 
    // 1:初始状态 2:手续费转入 3:已归集
    private int status;
 
    private String symbol;
 
    private String address;
 
    private String tag;
 
    private String hash;
 
    private String orderCode;
 
    private String transHash;
 
    private Date createTime;
}