cn.com.antcloud.api.ato.v1_0.response.QueryInnerFunddividerelationResponse 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.AuditInfo;
import cn.com.antcloud.api.ato.v1_0.model.FileInfo;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;
import java.util.List;
/**
* 查询分账关系信息 */
public class QueryInnerFunddividerelationResponse extends AntCloudProdResponse {
private String companyName;
private String subjectMerchantId;
private String merchantId;
private List contractFiles;
private String desc;
private String alipayPid;
private String alipayAccount;
private List auditInfos;
private String relationStatus;
private String relationFailReason;
/**
* 分账公司名称 */
public String getCompanyName() {
return this.companyName;
}
/**
* 分账公司名称 */
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* 分账主体企业统一社会信用代码 */
public String getSubjectMerchantId() {
return this.subjectMerchantId;
}
/**
* 分账主体企业统一社会信用代码 */
public void setSubjectMerchantId(String subjectMerchantId) {
this.subjectMerchantId = subjectMerchantId;
}
/**
* 分账对象统一社会信用代码 */
public String getMerchantId() {
return this.merchantId;
}
/**
* 分账对象统一社会信用代码 */
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
/**
* 分账合同或协议 */
public List getContractFiles() {
return this.contractFiles;
}
/**
* 分账合同或协议 */
public void setContractFiles(List contractFiles) {
this.contractFiles = contractFiles;
}
/**
* 分账关系说明 */
public String getDesc() {
return this.desc;
}
/**
* 分账关系说明 */
public void setDesc(String desc) {
this.desc = desc;
}
/**
* 分账方企业pid */
public String getAlipayPid() {
return this.alipayPid;
}
/**
* 分账方企业pid */
public void setAlipayPid(String alipayPid) {
this.alipayPid = alipayPid;
}
/**
* 分账方企业支付宝账号 */
public String getAlipayAccount() {
return this.alipayAccount;
}
/**
* 分账方企业支付宝账号 */
public void setAlipayAccount(String alipayAccount) {
this.alipayAccount = alipayAccount;
}
/**
* 审核列表 */
public List getAuditInfos() {
return this.auditInfos;
}
/**
* 审核列表 */
public void setAuditInfos(List auditInfos) {
this.auditInfos = auditInfos;
}
/**
* INIT:待提交 AUDIT:审批中 AUDIT_PASSED:审批通过 AUDIT_NOT_PASSED:审批不通过 */
public String getRelationStatus() {
return this.relationStatus;
}
/**
* INIT:待提交 AUDIT:审批中 AUDIT_PASSED:审批通过 AUDIT_NOT_PASSED:审批不通过 */
public void setRelationStatus(String relationStatus) {
this.relationStatus = relationStatus;
}
/**
* 分账关系绑定失败原因 */
public String getRelationFailReason() {
return this.relationFailReason;
}
/**
* 分账关系绑定失败原因 */
public void setRelationFailReason(String relationFailReason) {
this.relationFailReason = relationFailReason;
}
}