com.alipay.api.response.AntMerchantExpandMapplyorderQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.MerchantApplyResultRecord;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: ant.merchant.expand.mapplyorder.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:17
*/
public class AntMerchantExpandMapplyorderQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6127631318223911431L;
/**
* 支付宝端商户入驻申请单据号
*/
@ApiField("order_no")
private String orderNo;
/**
* 支付宝商户入驻申请单状态
*/
@ApiField("order_status")
private String orderStatus;
/**
* 外部入驻申请单据号
*/
@ApiField("out_biz_no")
private String outBizNo;
/**
* 入驻申请单认证审核、签约审核详情
*/
@ApiListField("result_info")
@ApiField("merchant_apply_result_record")
private List resultInfo;
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getOrderNo( ) {
return this.orderNo;
}
public void setOrderStatus(String orderStatus) {
this.orderStatus = orderStatus;
}
public String getOrderStatus( ) {
return this.orderStatus;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public String getOutBizNo( ) {
return this.outBizNo;
}
public void setResultInfo(List resultInfo) {
this.resultInfo = resultInfo;
}
public List getResultInfo( ) {
return this.resultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy