新版仿ok交易所-后端
zj
2025-01-06 6e21cf6973aa1898259ddceda665f0f1b06272ab
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
package com.yami.trading.bean.exchange;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
 
@Data
@TableName("t_party_blockchain")
public class PartyBlockchain {
 
    @TableId(type = IdType.AUTO)
    private  int ucid;
    /**
     * t_channel_blockchain表中blockchain_name
     */
    private String userName;
    /**
     * t_channel_blockchain表中coin
     */
    private  String chainName;
    /**
     * t_channel_blockchain表中coin
     */
    private  String coinSymbol;
    /**
     * t_channel_blockchain表中img
     */
    private  String qrImage;
    /**
     * t_channel_blockchain表中address
     */
    private  String address;
    /**
     * 自动/手动到账'
     */
    private  String auto;
 
    private Date createTime;
 
 
}