xiaoyong931011
2020-11-30 c9cb5828802dcae2ccca8f9344f97a2d06da974b
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;
}