eleme.openapi.sdk.api.entity.merchant.MerchantAuthVO Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.merchant;
import eleme.openapi.sdk.api.entity.merchant.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class MerchantAuthVO{
/**
* 实名认证方式
*/
private String authType;
public String getAuthType() {
return authType;
}
public void setAuthType(String authType) {
this.authType = authType;
}
/**
* 手机号码
*/
private String phoneNo;
public String getPhoneNo() {
return phoneNo;
}
public void setPhoneNo(String phoneNo) {
this.phoneNo = phoneNo;
}
/**
* 认证银行卡号
*/
private String authBankNo;
public String getAuthBankNo() {
return authBankNo;
}
public void setAuthBankNo(String authBankNo) {
this.authBankNo = authBankNo;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy