
com.alipay.api.domain.AlipaySecurityRiskAntifraudBatchqueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The 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, 2017-07-20 10:50:29
*/
public class AlipaySecurityRiskAntifraudBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 4194121164553886159L;
/**
* company_list+传入的一批待检查的企业名单+用户传入+还可以传入{"creditCode":"企业信用代码"}或者{"regNo":"企业工商注册号"}
*/
@ApiListField("company_list")
@ApiField("string")
private List companyList;
/**
* partner_name+唯一+作为标识调用者身份的字段+用户填入
*/
@ApiField("partner_name")
private String partnerName;
/**
* staff_list+传入的一批待检查员工信息+用户传入+手机号/身份证姓名二选一+还可以传入{"name":"姓名","phone":"手机号码"}
*/
@ApiListField("staff_list")
@ApiField("string")
private List staffList;
public List getCompanyList() {
return this.companyList;
}
public void setCompanyList(List companyList) {
this.companyList = companyList;
}
public String getPartnerName() {
return this.partnerName;
}
public void setPartnerName(String partnerName) {
this.partnerName = partnerName;
}
public List getStaffList() {
return this.staffList;
}
public void setStaffList(List staffList) {
this.staffList = staffList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy