xiaoyong931011
2023-08-10 18b681e553980b20bc9b5b3a113167f33b83a7b3
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
58
59
60
61
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 会员入金买A币
 */
@Data
@TableName("dapp_charge_usdt")
public class DappChargeUsdtEntity  extends BaseEntity {
    /**
     *
     */
    private Long memberId;
    /**
     *会员地址
     */
    private String memberAddress;
    /**
     *会员入金的HASH
     */
    private String memberHash;
    /**
     *状态 1:进行中 2:成功
     */
    private Integer status;
    /**
     *usdt金额
     */
    private BigDecimal amount;
    /**
     *购买数量
     */
    private BigDecimal totalCnt;
    /**
     *实际产生数量
     */
    private BigDecimal realCnt;
 
    public DappChargeUsdtEntity(){}
 
    public DappChargeUsdtEntity(Long memberId,
                                String memberAddress,
                                String memberHash,
                                Integer status,
                                BigDecimal amount,
                                BigDecimal totalCnt,
                                BigDecimal realCnt){
        this.memberId = memberId;
        this.memberAddress = memberAddress;
        this.memberHash = memberHash;
        this.status = status;
        this.amount = amount;
        this.totalCnt = totalCnt;
        this.realCnt = realCnt;
    }
}