cn.com.antcloud.api.ato.v1_0.response.QueryInnerMerchantpayexpandResponse Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.response;
import cn.com.antcloud.api.ato.v1_0.model.ApplicationInfo;
import cn.com.antcloud.api.ato.v1_0.model.AuditInfo;
import cn.com.antcloud.api.ato.v1_0.model.CompanyInfo;
import cn.com.antcloud.api.ato.v1_0.model.LegalInfo;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;
import java.util.List;
/**
* 查询进件信息 */
public class QueryInnerMerchantpayexpandResponse extends AntCloudProdResponse {
private CompanyInfo companyInfo;
private LegalInfo legalInfo;
private ApplicationInfo applicationInfo;
private List auditInfos;
private String payExpandId;
private String expandMode;
private String expandStatus;
private String expandFailReason;
/**
* 公司信息 */
public CompanyInfo getCompanyInfo() {
return this.companyInfo;
}
/**
* 公司信息 */
public void setCompanyInfo(CompanyInfo companyInfo) {
this.companyInfo = companyInfo;
}
/**
* 法人信息 */
public LegalInfo getLegalInfo() {
return this.legalInfo;
}
/**
* 法人信息 */
public void setLegalInfo(LegalInfo legalInfo) {
this.legalInfo = legalInfo;
}
/**
* 应用信息 */
public ApplicationInfo getApplicationInfo() {
return this.applicationInfo;
}
/**
* 应用信息 */
public void setApplicationInfo(ApplicationInfo applicationInfo) {
this.applicationInfo = applicationInfo;
}
/**
* 审核列表 */
public List getAuditInfos() {
return this.auditInfos;
}
/**
* 审核列表 */
public void setAuditInfos(List auditInfos) {
this.auditInfos = auditInfos;
}
/**
* 进件流水号 */
public String getPayExpandId() {
return this.payExpandId;
}
/**
* 进件流水号 */
public void setPayExpandId(String payExpandId) {
this.payExpandId = payExpandId;
}
/**
* 进件模式 DIRECT(直连进件) AGENT(代理进件) */
public String getExpandMode() {
return this.expandMode;
}
/**
* 进件模式 DIRECT(直连进件) AGENT(代理进件) */
public void setExpandMode(String expandMode) {
this.expandMode = expandMode;
}
/**
* INIT:草稿态 SUB_MERCHANT_CREDIT:二级户商户签约中 AUDIT:审核中 AUDIT_PASSED:进件成功 AUDIT_NOT_PASSED:进件失败 MERCHANT_CONFIRM:待商户确认 */
public String getExpandStatus() {
return this.expandStatus;
}
/**
* INIT:草稿态 SUB_MERCHANT_CREDIT:二级户商户签约中 AUDIT:审核中 AUDIT_PASSED:进件成功 AUDIT_NOT_PASSED:进件失败 MERCHANT_CONFIRM:待商户确认 */
public void setExpandStatus(String expandStatus) {
this.expandStatus = expandStatus;
}
/**
* 进件失败描述 */
public String getExpandFailReason() {
return this.expandFailReason;
}
/**
* 进件失败描述 */
public void setExpandFailReason(String expandFailReason) {
this.expandFailReason = expandFailReason;
}
}