转账接口完成

This commit is contained in:
egzosn
2018-02-05 16:13:04 +08:00
parent 924c4d7454
commit af4966c47f
3 changed files with 91 additions and 121 deletions

View File

@@ -46,6 +46,11 @@ public class TransferOrder {
*/
private Bank bank;
/**
* 币种
*/
private CurType curType;
public String getOutNo() {
return outNo;
}
@@ -101,4 +106,12 @@ public class TransferOrder {
public void setBank(Bank bank) {
this.bank = bank;
}
public CurType getCurType() {
return curType;
}
public void setCurType(CurType curType) {
this.curType = curType;
}
}