All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.ContractInformationVo Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 合同基本信息
 *
 * @author auto create
 * @since 1.0, 2022-12-07 14:05:47
 */
public class ContractInformationVo extends AlipayObject {

	private static final long serialVersionUID = 8729296888637125553L;

	/**
	 * 合同id
	 */
	@ApiField("contract_id")
	private String contractId;

	/**
	 * 合同周期
	 */
	@ApiField("contract_period")
	private String contractPeriod;

	/**
	 * 合同状态
	 */
	@ApiField("contract_status")
	private String contractStatus;

	/**
	 * 合同名称
	 */
	@ApiField("contract_title")
	private String contractTitle;

	/**
	 * 对方公司名称
	 */
	@ApiField("other_company")
	private String otherCompany;

	/**
	 * 对方公司所在国家(地区)
	 */
	@ApiField("other_company_location")
	private String otherCompanyLocation;

	/**
	 * 我方公司code
	 */
	@ApiField("our_company")
	private String ourCompany;

	/**
	 * 本方公司名称
	 */
	@ApiField("our_company_name")
	private String ourCompanyName;

	/**
	 * 机房信息
	 */
	@ApiField("region")
	private String region;

	/**
	 * 合同所属的租户
	 */
	@ApiField("tenant")
	private String tenant;

	public String getContractId() {
		return this.contractId;
	}
	public void setContractId(String contractId) {
		this.contractId = contractId;
	}

	public String getContractPeriod() {
		return this.contractPeriod;
	}
	public void setContractPeriod(String contractPeriod) {
		this.contractPeriod = contractPeriod;
	}

	public String getContractStatus() {
		return this.contractStatus;
	}
	public void setContractStatus(String contractStatus) {
		this.contractStatus = contractStatus;
	}

	public String getContractTitle() {
		return this.contractTitle;
	}
	public void setContractTitle(String contractTitle) {
		this.contractTitle = contractTitle;
	}

	public String getOtherCompany() {
		return this.otherCompany;
	}
	public void setOtherCompany(String otherCompany) {
		this.otherCompany = otherCompany;
	}

	public String getOtherCompanyLocation() {
		return this.otherCompanyLocation;
	}
	public void setOtherCompanyLocation(String otherCompanyLocation) {
		this.otherCompanyLocation = otherCompanyLocation;
	}

	public String getOurCompany() {
		return this.ourCompany;
	}
	public void setOurCompany(String ourCompany) {
		this.ourCompany = ourCompany;
	}

	public String getOurCompanyName() {
		return this.ourCompanyName;
	}
	public void setOurCompanyName(String ourCompanyName) {
		this.ourCompanyName = ourCompanyName;
	}

	public String getRegion() {
		return this.region;
	}
	public void setRegion(String region) {
		this.region = region;
	}

	public String getTenant() {
		return this.tenant;
	}
	public void setTenant(String tenant) {
		this.tenant = tenant;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy