fix
Helius
2021-11-05 d3b7e2e9cb1dc45f98d8828fb8ac292ffccfb327
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
package com.xcong.excoin.modules.blackchain.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 *  充值扫块dto
 */
@Data
public class EthUsdtChargeDto {
 
    private String address;
    private String hash;
    private BigDecimal balance;
    private String symbol;
 
    public interface Symbol{
        String USDT_ERC20 = "USDT_ERC20";
        String USDT_TRC20 = "USDT_TRC20";
    }
 
    public EthUsdtChargeDto() {
    }
 
    public EthUsdtChargeDto(String address, String hash, BigDecimal balance) {
        this.address = address;
        this.hash = hash;
        this.balance = balance;
    }
}