package com.smartearth.poiexcel.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 企业实体类
|
* @author WWW
|
* @date 2023-10-05
|
*/
|
public class EntEntity implements Serializable {
|
private static final long serialVersionUID = -8624235184539814990L;
|
|
private Long id;
|
|
private String enterprise_id;
|
|
private String entName;
|
|
private String fingerId;
|
|
private Integer regCapital;
|
|
private Integer regCapitalCNY;
|
|
private String legalPerson;
|
|
private String address;
|
|
private Date buildDate;
|
|
private String entType;
|
|
private String industryCategory;
|
|
private String businessScope;
|
|
private String qylabel;
|
|
private String creator;
|
|
private Double x;
|
|
private Double y;
|
|
private String enterprise_area;
|
|
public EntEntity() {
|
}
|
|
public EntEntity(String enterprise_id, String entName, String fingerId, Integer regCapital, Integer regCapitalCNY, String legalPerson, String address, Date buildDate, String entType, String industryCategory, String businessScope, String qylabel, String creator, Double x, Double y, String enterprise_area) {
|
this.enterprise_id = enterprise_id;
|
this.entName = entName;
|
this.fingerId = fingerId;
|
this.regCapital = regCapital;
|
this.regCapitalCNY = regCapitalCNY;
|
this.legalPerson = legalPerson;
|
this.address = address;
|
this.buildDate = buildDate;
|
this.entType = entType;
|
this.industryCategory = industryCategory;
|
this.businessScope = businessScope;
|
this.qylabel = qylabel;
|
this.creator = creator;
|
this.x = x;
|
this.y = y;
|
this.enterprise_area = enterprise_area;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getEnterprise_id() {
|
return enterprise_id;
|
}
|
|
public void setEnterprise_id(String enterprise_id) {
|
this.enterprise_id = enterprise_id;
|
}
|
|
public String getEntName() {
|
return entName;
|
}
|
|
public void setEntName(String entName) {
|
this.entName = entName;
|
}
|
|
public String getFingerId() {
|
return fingerId;
|
}
|
|
public void setFingerId(String fingerId) {
|
this.fingerId = fingerId;
|
}
|
|
public Integer getRegCapital() {
|
return regCapital;
|
}
|
|
public void setRegCapital(Integer regCapital) {
|
this.regCapital = regCapital;
|
}
|
|
public Integer getRegCapitalCNY() {
|
return regCapitalCNY;
|
}
|
|
public void setRegCapitalCNY(Integer regCapitalCNY) {
|
this.regCapitalCNY = regCapitalCNY;
|
}
|
|
public String getLegalPerson() {
|
return legalPerson;
|
}
|
|
public void setLegalPerson(String legalPerson) {
|
this.legalPerson = legalPerson;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public Date getBuildDate() {
|
return buildDate;
|
}
|
|
public void setBuildDate(Date buildDate) {
|
this.buildDate = buildDate;
|
}
|
|
public String getEntType() {
|
return entType;
|
}
|
|
public void setEntType(String entType) {
|
this.entType = entType;
|
}
|
|
public String getIndustryCategory() {
|
return industryCategory;
|
}
|
|
public void setIndustryCategory(String industryCategory) {
|
this.industryCategory = industryCategory;
|
}
|
|
public String getBusinessScope() {
|
return businessScope;
|
}
|
|
public void setBusinessScope(String businessScope) {
|
this.businessScope = businessScope;
|
}
|
|
public String getQylabel() {
|
return qylabel;
|
}
|
|
public void setQylabel(String qylabel) {
|
this.qylabel = qylabel;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public Double getX() {
|
return x;
|
}
|
|
public void setX(Double x) {
|
this.x = x;
|
}
|
|
public Double getY() {
|
return y;
|
}
|
|
public void setY(Double y) {
|
this.y = y;
|
}
|
|
public String getEnterprise_area() {
|
return enterprise_area;
|
}
|
|
public void setEnterprise_area(String enterprise_area) {
|
this.enterprise_area = enterprise_area;
|
}
|
}
|