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

com.alipay.api.domain.AlipayBossFncAntbudgetGroupbudgetRefundModel 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, 2021-08-06 10:17:49
 */
public class AlipayBossFncAntbudgetGroupbudgetRefundModel extends AlipayObject {

	private static final long serialVersionUID = 6163615916955522328L;

	/**
	 * 批次id,作为幂等id
	 */
	@ApiField("batch_id")
	private String batchId;

	/**
	 * 集团预算释放集合
	 */
	@ApiListField("group_budget_release_request_list")
	@ApiField("gb_release_request")
	private List groupBudgetReleaseRequestList;

	/**
	 * 命名空间 例如: 智科:ZK,业管:RESOURCE
	 */
	@ApiField("ns")
	private String ns;

	public String getBatchId() {
		return this.batchId;
	}
	public void setBatchId(String batchId) {
		this.batchId = batchId;
	}

	public List getGroupBudgetReleaseRequestList() {
		return this.groupBudgetReleaseRequestList;
	}
	public void setGroupBudgetReleaseRequestList(List groupBudgetReleaseRequestList) {
		this.groupBudgetReleaseRequestList = groupBudgetReleaseRequestList;
	}

	public String getNs() {
		return this.ns;
	}
	public void setNs(String ns) {
		this.ns = ns;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy