xiaoyong931011
2020-11-30 7ae23e17d8e90dc634f3f86e2eee209cbacaace3
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
package com.xcong.excoin.modules.login.entity;
 
import java.math.BigDecimal;
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import lombok.Data;
 
/**
 * @description 代币表
 * @author admin
 * @date 2020-09-17 14:31
 */
@Data
@TableName("wt_token")
public class WtToken {
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 币种:NEK,MUSD
     */
    private String  symbol;
            
    
    /**
     * USDT汇率
     */
    private BigDecimal price;
            
    
    /**
     * 是否主币(0:否 1:是)
     */
    private Integer  main;
 
    /**
     *  手续费(按主币收取)
     */
    private BigDecimal fee;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    private BigDecimal amount;
 
    private String contractAddress;
 
    private String symbolName;
}