-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdf305e
commit 1432efb
Showing
2 changed files
with
35 additions
and
31 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
src/main/java/org/consenlabs/tokencore/wallet/model/MultiTo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package org.consenlabs.tokencore.wallet.model; | ||
|
||
/** | ||
* | ||
* Created by pie on 2020/8/9 18: 37. | ||
*/ | ||
public class MultiTo{ | ||
|
||
public MultiTo(String to, long amount) { | ||
this.to = to; | ||
this.amount = amount; | ||
} | ||
|
||
private String to; | ||
|
||
private long amount; | ||
|
||
public String getTo() { | ||
return to; | ||
} | ||
|
||
public void setTo(String to) { | ||
this.to = to; | ||
} | ||
|
||
public long getAmount() { | ||
return amount; | ||
} | ||
|
||
public void setAmount(long amount) { | ||
this.amount = amount; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters