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

com.alipay.api.response.DatadigitalFincloudFinsaasFormtemplateRelationsBatchqueryResponse Maven / Gradle / Ivy

package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.FormTemplateRelationDTO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: datadigital.fincloud.finsaas.formtemplate.relations.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2023-05-31 08:27:09
 */
public class DatadigitalFincloudFinsaasFormtemplateRelationsBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 3653374332691719744L;

	/** 
	 * form_template_relations + 关联关系查询 + 数据库。
	 */
	@ApiListField("form_template_relations")
	@ApiField("form_template_relation_d_t_o")
	private List formTemplateRelations;

	/** 
	 * total + 关联关系查询 + 数据库
	 */
	@ApiField("total")
	private Long total;

	public void setFormTemplateRelations(List formTemplateRelations) {
		this.formTemplateRelations = formTemplateRelations;
	}
	public List getFormTemplateRelations( ) {
		return this.formTemplateRelations;
	}

	public void setTotal(Long total) {
		this.total = total;
	}
	public Long getTotal( ) {
		return this.total;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy