package org.yeshi.utils.entity.alipay;
|
|
public class AlipayTransferAccount {
|
|
private String account;
|
private String name;
|
private String userId;
|
|
public AlipayTransferAccount(String userId) {
|
this.userId = userId;
|
}
|
|
public AlipayTransferAccount(String name, String account) {
|
this.name = name;
|
this.account = account;
|
}
|
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
}
|