com.alipay.api.response.AlipayMobileStdPublicExpressUserQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.mobile.std.public.express.user.query response.
*
* @author auto create
* @since 1.0, 2017-04-14 20:18:49
*/
public class AlipayMobileStdPublicExpressUserQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5462247592866349453L;
/**
* 证件号
*/
@ApiField("cert_no")
private String certNo;
/**
* 证件类型,身份证
*/
@ApiField("cert_type")
private String certType;
public void setCertNo(String certNo) {
this.certNo = certNo;
}
public String getCertNo( ) {
return this.certNo;
}
public void setCertType(String certType) {
this.certType = certType;
}
public String getCertType( ) {
return this.certType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy