com.alipay.api.domain.AlipayBossAntlescenterPartcontractFinishModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 半份签归档合同
*
* @author auto create
* @since 1.0, 2024-08-14 15:48:28
*/
public class AlipayBossAntlescenterPartcontractFinishModel extends AlipayObject {
private static final long serialVersionUID = 5569479983552111443L;
/**
* 合同编号
*/
@ApiField("contract_no")
private String contractNo;
/**
* 上传的合同文件
*/
@ApiField("file_info")
private AntlescenterFileDTO fileInfo;
/**
* 租户
*/
@ApiField("tenant")
private String tenant;
public String getContractNo() {
return this.contractNo;
}
public void setContractNo(String contractNo) {
this.contractNo = contractNo;
}
public AntlescenterFileDTO getFileInfo() {
return this.fileInfo;
}
public void setFileInfo(AntlescenterFileDTO fileInfo) {
this.fileInfo = fileInfo;
}
public String getTenant() {
return this.tenant;
}
public void setTenant(String tenant) {
this.tenant = tenant;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy