| | |
| | | @TableName("dapp_online_transfer") |
| | | public class DappOnlineTransferEntity extends BaseEntity { |
| | | |
| | | public DappOnlineTransferEntity() {} |
| | | |
| | | public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String batchNo) { |
| | | new DappOnlineTransferEntity(address, amount, type, targetType, symbol, fromType, "BSC", batchNo); |
| | | } |
| | | |
| | | public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String chain, String batchNo) { |
| | | this.address = address; |
| | | this.amount = amount; |
| | | this.type = type; |
| | | this.targetType = targetType; |
| | | this.symbol = symbol; |
| | | this.chain = chain; |
| | | this.batchNo = batchNo; |
| | | this.fromType = fromType; |
| | | this.hasFinish = 2; |
| | | } |
| | | // public DappOnlineTransferEntity() {} |
| | | // |
| | | // public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String batchNo) { |
| | | // new DappOnlineTransferEntity(address, amount, type, targetType, symbol, fromType, "BSC", batchNo); |
| | | // } |
| | | // |
| | | // public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String chain, String batchNo) { |
| | | // this.address = address; |
| | | // this.amount = amount; |
| | | // this.type = type; |
| | | // this.targetType = targetType; |
| | | // this.symbol = symbol; |
| | | // this.chain = chain; |
| | | // this.batchNo = batchNo; |
| | | // this.fromType = fromType; |
| | | // this.hasFinish = 2; |
| | | // } |
| | | |
| | | private String address; |
| | | |