新版仿ok交易所-后端
1
zj
2026-03-11 75c2cb06b27b8812427f16c8657dc2eb9b4d09e5
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;
 
 
}