xiaoyong931011
2021-11-22 0c4d432e5825f87c725f1ab84f7f0e7cf0159cec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xcong.excoin.modules.member.service;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class TransferModel {
    private String fromAddress;
    private String toAddress;
    private String password;
    private String privateKey;
    private String symbol;
    // 转账金额
    private BigDecimal amount;
    private BigDecimal fee;
}