com.alipay.api.response.AlipayZdataserviceUnidataQueryResponse 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.zdataservice.unidata.query response.
*
* @author auto create
* @since 1.0, 2017-04-26 16:20:03
*/
public class AlipayZdataserviceUnidataQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5637631534224633834L;
/**
* 查询结果集,统一用string方式返回
*/
@ApiField("query_result")
private String queryResult;
/**
* 查询是否成功具体描述
*/
@ApiField("result_code")
private String resultCode;
/**
* 查询是否成功
*/
@ApiField("success")
private String success;
public void setQueryResult(String queryResult) {
this.queryResult = queryResult;
}
public String getQueryResult( ) {
return this.queryResult;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getResultCode( ) {
return this.resultCode;
}
public void setSuccess(String success) {
this.success = success;
}
public String getSuccess( ) {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy