com.alipay.api.response.ZhimaMerchantSubsidiariesCloseResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.merchant.subsidiaries.close response.
*
* @author auto create
* @since 1.0, 2024-10-16 11:25:49
*/
public class ZhimaMerchantSubsidiariesCloseResponse extends AlipayResponse {
private static final long serialVersionUID = 7564159942864212526L;
/**
* 业务错误码
*/
@ApiField("biz_error_code")
private String bizErrorCode;
/**
* 业务错误信息
*/
@ApiField("biz_error_message")
private String bizErrorMessage;
/**
* 工单审核备注
*/
@ApiField("order_memo")
private String orderMemo;
/**
* 工单标识,业务成功时返回工单号
*/
@ApiField("order_no")
private String orderNo;
/**
* 工单状态
*/
@ApiField("order_status")
private String orderStatus;
public void setBizErrorCode(String bizErrorCode) {
this.bizErrorCode = bizErrorCode;
}
public String getBizErrorCode( ) {
return this.bizErrorCode;
}
public void setBizErrorMessage(String bizErrorMessage) {
this.bizErrorMessage = bizErrorMessage;
}
public String getBizErrorMessage( ) {
return this.bizErrorMessage;
}
public void setOrderMemo(String orderMemo) {
this.orderMemo = orderMemo;
}
public String getOrderMemo( ) {
return this.orderMemo;
}
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy