fix
Helius
2022-07-19 b2200847514102f08f65deaad44a965e48d46365
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
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2022-07-13
 **/
@Data
@TableName("dapp_ido_assets")
public class DappIdoAssetsEntity extends BaseEntity {
 
    private Long memberId;
 
    private Integer boxCnt;
 
    private BigDecimal coinAmount;
 
    private BigDecimal usdtAmount;
 
    @TableField(exist = false)
    private String address;
 
    @TableField(exist = false)
    private Integer teamAddressCnt;
 
    @TableField(exist = false)
    private String addressCnt;
}