| | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @author |
| | | * @date 2022-03-25 |
| | | **/ |
| | | @Data |
| | | @TableName("dapp_transfer_record") |
| | | public class DappTransferRecordEntity extends BaseEntity { |
| | | |
| | | private String address; |
| | | public static final String TRANSFER_SOURCE_FLAG_ONLINE = "online"; |
| | | public static final String TRANSFER_SOURCE_FLAG_APPLICATION = "application"; |
| | | |
| | | private String fromAddress; |
| | | |
| | | private String toAddress; |
| | | |
| | | private BigDecimal amount; |
| | | |
| | | private String hash; |
| | | |
| | | /** |
| | | * ETH/TRX/BSC |
| | | */ |
| | | private String chainType; |
| | | |
| | | /** |
| | | * online/Application |
| | | */ |
| | | private String sourceFlag; |
| | | |
| | | private String symbol; |
| | | } |