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

com.alipay.api.domain.AlipayBossContractManagementIdentifyModel 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 java.util.List;

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

/**
 * 蚂蚁关联方识别
 *
 * @author auto create
 * @since 1.0, 2024-04-16 15:36:49
 */
public class AlipayBossContractManagementIdentifyModel extends AlipayObject {

	private static final long serialVersionUID = 8278227551627493912L;

	/**
	 * 访问接口的来源(如:采购系统-ALI_PURCHASE_SYSTEM)
	 */
	@ApiField("biz_source")
	private String bizSource;

	/**
	 * 合约批次列表
	 */
	@ApiListField("contracts")
	@ApiField("batch_info")
	private List contracts;

	public String getBizSource() {
		return this.bizSource;
	}
	public void setBizSource(String bizSource) {
		this.bizSource = bizSource;
	}

	public List getContracts() {
		return this.contracts;
	}
	public void setContracts(List contracts) {
		this.contracts = contracts;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy