com.alipay.api.domain.EpContactComplextInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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, 2024-08-20 17:41:20
*/
public class EpContactComplextInfo extends AlipayObject {
private static final long serialVersionUID = 5123728124337534495L;
/**
* 企业18位统一社会信用代码
*/
@ApiField("credit_code")
private String creditCode;
/**
* 企业名称
*/
@ApiField("ent_name")
private String entName;
/**
* 企业状态
*/
@ApiField("ent_status")
private String entStatus;
/**
* 企业类型
*/
@ApiField("ent_type")
private String entType;
/**
* 企业联系方式列表
*/
@ApiListField("ep_contact_info")
@ApiField("ep_contact_base_info")
private List epContactInfo;
/**
* 成立日期(yy-MM-dd)
*/
@ApiField("es_date")
private String esDate;
/**
* 法定代表人
*/
@ApiField("fr_name")
private String frName;
/**
* 经营范围
*/
@ApiField("oprt_scope")
private String oprtScope;
/**
* 注册地址
*/
@ApiField("reg_addr")
private String regAddr;
/**
* 注册资本(万元)
*/
@ApiField("reg_cap")
private String regCap;
/**
* 企业注册号
*/
@ApiField("reg_no")
private String regNo;
/**
* 登记机关
*/
@ApiField("reg_org")
private String regOrg;
public String getCreditCode() {
return this.creditCode;
}
public void setCreditCode(String creditCode) {
this.creditCode = creditCode;
}
public String getEntName() {
return this.entName;
}
public void setEntName(String entName) {
this.entName = entName;
}
public String getEntStatus() {
return this.entStatus;
}
public void setEntStatus(String entStatus) {
this.entStatus = entStatus;
}
public String getEntType() {
return this.entType;
}
public void setEntType(String entType) {
this.entType = entType;
}
public List getEpContactInfo() {
return this.epContactInfo;
}
public void setEpContactInfo(List epContactInfo) {
this.epContactInfo = epContactInfo;
}
public String getEsDate() {
return this.esDate;
}
public void setEsDate(String esDate) {
this.esDate = esDate;
}
public String getFrName() {
return this.frName;
}
public void setFrName(String frName) {
this.frName = frName;
}
public String getOprtScope() {
return this.oprtScope;
}
public void setOprtScope(String oprtScope) {
this.oprtScope = oprtScope;
}
public String getRegAddr() {
return this.regAddr;
}
public void setRegAddr(String regAddr) {
this.regAddr = regAddr;
}
public String getRegCap() {
return this.regCap;
}
public void setRegCap(String regCap) {
this.regCap = regCap;
}
public String getRegNo() {
return this.regNo;
}
public void setRegNo(String regNo) {
this.regNo = regNo;
}
public String getRegOrg() {
return this.regOrg;
}
public void setRegOrg(String regOrg) {
this.regOrg = regOrg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy