微信转账到余额,增加设备ip

This commit is contained in:
egzosn
2019-02-22 10:17:59 +08:00
parent cce231c961
commit 55b3a6280b
12 changed files with 26 additions and 11 deletions

View File

@@ -55,6 +55,11 @@ public class TransferOrder {
*/
private TransferType transferType;
/**
* 操作者ip根据支付平台所需进行设置
*/
private String ip;
public String getOutNo() {
return outNo;
}
@@ -126,4 +131,12 @@ public class TransferOrder {
public void setTransferType(TransferType transferType) {
this.transferType = transferType;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
}