com.alipay.api.response.MybankCreditLoantradePayOrderQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.CreditPayOrderQueryVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: mybank.credit.loantrade.pay.order.query response.
*
* @author auto create
* @since 1.0, 2023-08-21 05:41:44
*/
public class MybankCreditLoantradePayOrderQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8253748291982127754L;
/**
* 系统异常
*/
@ApiField("error_code")
private String errorCode;
/**
* 查询接口列表
*/
@ApiListField("query_result")
@ApiField("credit_pay_order_query_v_o")
private List queryResult;
/**
* 是否成功
*/
@ApiField("success")
private String success;
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorCode( ) {
return this.errorCode;
}
public void setQueryResult(List queryResult) {
this.queryResult = queryResult;
}
public List getQueryResult( ) {
return this.queryResult;
}
public void setSuccess(String success) {
this.success = success;
}
public String getSuccess( ) {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy