From 3065396433aeb5f03d3164780be7398dae21f9f7 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 05 十月 2023 11:49:46 +0800 Subject: [PATCH] 添加企业实体类 --- src/main/java/com/smartearth/poiexcel/entity/EntEntity.java | 190 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 190 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/smartearth/poiexcel/entity/EntEntity.java b/src/main/java/com/smartearth/poiexcel/entity/EntEntity.java index a1e6423..2e2a977 100644 --- a/src/main/java/com/smartearth/poiexcel/entity/EntEntity.java +++ b/src/main/java/com/smartearth/poiexcel/entity/EntEntity.java @@ -1,6 +1,7 @@ package com.smartearth.poiexcel.entity; import java.io.Serializable; +import java.util.Date; /** * 浼佷笟瀹炰綋绫� @@ -10,6 +11,195 @@ 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; + } } -- Gitblit v1.9.3