com.alipay.api.response.ZhimaCreditEpRelatedPerformanceQueryResponse 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.PenCaseInfo;
import com.alipay.api.domain.PunishBreakInfo;
import com.alipay.api.domain.PunishedInfo;
import com.alipay.api.domain.RelatedPerformanceInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.credit.ep.related.performance.query response.
*
* @author auto create
* @since 1.0, 2024-12-13 10:57:21
*/
public class ZhimaCreditEpRelatedPerformanceQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2114177931959179773L;
/**
* 行政处罚(市监)信息列表
*/
@ApiListField("case_info_list")
@ApiField("pen_case_info")
private List caseInfoList;
/**
* 核验状态
*/
@ApiField("is_verified")
private String isVerified;
/**
* 失信被执行人信息列表
*/
@ApiListField("punish_break_list")
@ApiField("punish_break_info")
private List punishBreakList;
/**
* 被执行人信息列表
*/
@ApiListField("punished_list")
@ApiField("punished_info")
private List punishedList;
/**
* 作为法定代表人的企业信息列表
*/
@ApiListField("ry_pos_fr_list")
@ApiField("related_performance_info")
private List ryPosFrList;
/**
* 作为主要管理人员的企业信息列表
*/
@ApiListField("ry_pos_per_list")
@ApiField("related_performance_info")
private List ryPosPerList;
/**
* 作为股东的企业信息列表
*/
@ApiListField("ry_pos_sha_list")
@ApiField("related_performance_info")
private List ryPosShaList;
public void setCaseInfoList(List caseInfoList) {
this.caseInfoList = caseInfoList;
}
public List getCaseInfoList( ) {
return this.caseInfoList;
}
public void setIsVerified(String isVerified) {
this.isVerified = isVerified;
}
public String getIsVerified( ) {
return this.isVerified;
}
public void setPunishBreakList(List punishBreakList) {
this.punishBreakList = punishBreakList;
}
public List getPunishBreakList( ) {
return this.punishBreakList;
}
public void setPunishedList(List punishedList) {
this.punishedList = punishedList;
}
public List getPunishedList( ) {
return this.punishedList;
}
public void setRyPosFrList(List ryPosFrList) {
this.ryPosFrList = ryPosFrList;
}
public List getRyPosFrList( ) {
return this.ryPosFrList;
}
public void setRyPosPerList(List ryPosPerList) {
this.ryPosPerList = ryPosPerList;
}
public List getRyPosPerList( ) {
return this.ryPosPerList;
}
public void setRyPosShaList(List ryPosShaList) {
this.ryPosShaList = ryPosShaList;
}
public List getRyPosShaList( ) {
return this.ryPosShaList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy