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

com.alipay.api.response.AlipaySecurityRiskAntifraudBatchqueryResponse 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.response;

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

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.security.risk.antifraud.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-21 02:49:47
 */
public class AlipaySecurityRiskAntifraudBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 1496741373876684318L;

	/** 
	 * 供应商关系列表+company_list是两个有关系的供应商,detail字段描述了具体的关系,detail为jsonArray表示两者之间可能的多种关系
	 */
	@ApiListField("company_relation_list")
	@ApiField("string")
	private List companyRelationList;

	/** 
	 * 员工供应商关系列表+staff字段为员工姓名,company字段为供应商,detail描述了员工和供应商的关系详情,detail为jsonArray表示两者之间可能的多种关系
	 */
	@ApiListField("staff_company_relation_list")
	@ApiField("string")
	private List staffCompanyRelationList;

	public void setCompanyRelationList(List companyRelationList) {
		this.companyRelationList = companyRelationList;
	}
	public List getCompanyRelationList( ) {
		return this.companyRelationList;
	}

	public void setStaffCompanyRelationList(List staffCompanyRelationList) {
		this.staffCompanyRelationList = staffCompanyRelationList;
	}
	public List getStaffCompanyRelationList( ) {
		return this.staffCompanyRelationList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy