cn.com.antcloud.api.ato.v1_0.request.CreateInnerFunddividerelationRequest 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.request;
import cn.com.antcloud.api.ato.v1_0.model.FileInfo;
import cn.com.antcloud.api.ato.v1_0.response.CreateInnerFunddividerelationResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.String;
import java.util.List;
import javax.validation.constraints.NotNull;
/**
* 保存/编辑分账关系信息 */
public class CreateInnerFunddividerelationRequest extends AntCloudProdRequest {
@NotNull
private String tenantId;
private String relationId;
private String companyName;
private String merchantId;
private List contractFiles;
private String desc;
private String alipayPid;
private String alipayAccount;
@NotNull
private String submit;
@NotNull
private String userName;
private String subjectMerchantId;
private String expandMode;
public CreateInnerFunddividerelationRequest(String productInstanceId) {
super("antchain.ato.inner.funddividerelation.create", "1.0", "Java-SDK-20240923", productInstanceId);
}
public CreateInnerFunddividerelationRequest() {
super("antchain.ato.inner.funddividerelation.create", "1.0", null);
this.setSdkVersion("Java-SDK-20240923");
}
/**
* 租户8位id */
public String getTenantId() {
return this.tenantId;
}
/**
* 租户8位id */
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
/**
* 第一次暂存或提交可以不传,由后端生成 */
public String getRelationId() {
return this.relationId;
}
/**
* 第一次暂存或提交可以不传,由后端生成 */
public void setRelationId(String relationId) {
this.relationId = relationId;
}
/**
* 分账公司名称 */
public String getCompanyName() {
return this.companyName;
}
/**
* 分账公司名称 */
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* 分账公司社会信用代码 */
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;
}
/**
* 是否直接提交
* SUBMITTED 直接提交
* STAGE 暂存 */
public String getSubmit() {
return this.submit;
}
/**
* 是否直接提交
* SUBMITTED 直接提交
* STAGE 暂存 */
public void setSubmit(String submit) {
this.submit = submit;
}
/**
* 操作人名称 */
public String getUserName() {
return this.userName;
}
/**
* 操作人名称 */
public void setUserName(String userName) {
this.userName = userName;
}
/**
* 商户公司社会统一信用代码,
* 如果expandMode=AGENT, 非空,长度不超过32位 */
public String getSubjectMerchantId() {
return this.subjectMerchantId;
}
/**
* 商户公司社会统一信用代码,
* 如果expandMode=AGENT, 非空,长度不超过32位 */
public void setSubjectMerchantId(String subjectMerchantId) {
this.subjectMerchantId = subjectMerchantId;
}
/**
* 进件模式 :DIRECT(直连进件) ,AGENT(代理进件)
* 默认值:DIRECT */
public String getExpandMode() {
return this.expandMode;
}
/**
* 进件模式 :DIRECT(直连进件) ,AGENT(代理进件)
* 默认值:DIRECT */
public void setExpandMode(String expandMode) {
this.expandMode = expandMode;
}
}