xiaoyong931011
2021-06-17 4c902d9c20dd965d1ec832760809c622d1df9aac
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;
}