| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554 |
- package com.goafanti.user.bo;
- import java.math.BigDecimal;
- import java.util.Date;
- import org.apache.commons.lang3.time.DateFormatUtils;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonFormat.Shape;
- import com.goafanti.common.constant.AFTConstants;
- public class OrgBasicInfoBo {
- private String id;
-
- private String uid;
-
- private String hid;
-
- /**
- * 企业名称
- */
- private String unitName;
-
-
- /**
- * 行政区域--省
- */
- private Integer province;
-
- /**
- * 行政区域--市
- */
- private Integer city;
-
- /**
- * 行政区域--区
- */
- private Integer area;
-
- /**
- * 通讯地址
- */
- private String postalAddress;
-
- /**
- * 邮编
- */
- private String postcode;
-
- /**
- * 联系人姓名(第一联系人)
- */
- private String firstContacts;
-
- /**
- * 联系人手机(第一联系人)
- */
- private String firstMobile;
-
- /**
- * 联系人电话
- */
- private String contactsFixedTel;
-
- /**
- * 联系人传真
- */
- private String contactsFax;
-
- /**
- * 法人电话
- */
- private String legalPersonTel;
-
- /**
- * 法人传真
- */
- private String legalPersonFax;
-
- /**
- * 法人Email
- */
- private String legalPersonEmail;
-
- /**
- * 注册资金
- */
- private BigDecimal registeredCapital;
-
- /**
- * 注册时间
- */
- private Date registrationTime;
-
- /**
- * 法人代表姓名
- */
- private String legalPerson;
-
- /**
- * 法人身份证号
- */
- private String legalPersonIdCard;
-
- /**
- * 组织机构代码/统一社会信用代码
- */
- private String orgCode;
-
- /**
- * 税务登记号/统一社会信用代码
- */
- private String ratepayCode;
-
- /**
- * 所属行业
- */
- private Integer industry;
-
- /**
- * 企业规模(注册资金)
- */
- private Integer enterpriseScale;
-
- /**
- * 注册类型
- */
- private String registerType;
-
- /**
- * 外资来源地
- */
- private String foreignInvestment;
-
- /**
- * 领域
- */
- private String field;
-
- /**
- * 企业所得税主管税务机关
- */
- private Integer taxAuthority;
-
- /**
- * 企业所得税征收方式
- */
- private Integer ratepayMethod;
-
- /**
- * 是否上市
- */
- private Integer listed;
-
- /**
- * 上市时间
- */
- private Date listedDate;
-
- /**
- * 上市类型
- */
- private Integer listedType;
-
- /**
- * 股票代码
- */
- private String stockCode;
-
- /**
- * 是否属于国家级高新区内企业
- */
- private Integer highTechZone;
-
- /**
- * 国家级高新区名称
- */
- private String highTechName;
-
- /**
- * 是否引入风险投资
- */
- private Integer riskInvestment;
-
- /**
- * 经营范围
- */
- private String businessScope;
-
- /**
- * 企业职工
- */
- private Integer firmTotal;
-
- /**
- * 科技人员
- */
- private Integer techTotal;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public String getHid() {
- return hid;
- }
- public void setHid(String hid) {
- this.hid = hid;
- }
- public String getUnitName() {
- return unitName;
- }
- public void setUnitName(String unitName) {
- this.unitName = unitName;
- }
- @JsonFormat(shape =Shape.STRING)
- public Integer getProvince() {
- return province;
- }
- public void setProvince(Integer province) {
- this.province = province;
- }
-
- @JsonFormat(shape =Shape.STRING)
- public Integer getCity() {
- return city;
- }
- public void setCity(Integer city) {
- this.city = city;
- }
-
- @JsonFormat(shape =Shape.STRING)
- public Integer getArea() {
- return area;
- }
- public void setArea(Integer area) {
- this.area = area;
- }
- public String getPostalAddress() {
- return postalAddress;
- }
- public void setPostalAddress(String postalAddress) {
- this.postalAddress = postalAddress;
- }
- public String getPostcode() {
- return postcode;
- }
- public void setPostcode(String postcode) {
- this.postcode = postcode;
- }
- public String getFirstContacts() {
- return firstContacts;
- }
- public void setFirstContacts(String firstContacts) {
- this.firstContacts = firstContacts;
- }
- public String getFirstMobile() {
- return firstMobile;
- }
- public void setFirstMobile(String firstMobile) {
- this.firstMobile = firstMobile;
- }
- public String getContactsFixedTel() {
- return contactsFixedTel;
- }
- public void setContactsFixedTel(String contactsFixedTel) {
- this.contactsFixedTel = contactsFixedTel;
- }
- public String getContactsFax() {
- return contactsFax;
- }
- public void setContactsFax(String contactsFax) {
- this.contactsFax = contactsFax;
- }
- public String getLegalPersonTel() {
- return legalPersonTel;
- }
- public void setLegalPersonTel(String legalPersonTel) {
- this.legalPersonTel = legalPersonTel;
- }
- public String getLegalPersonFax() {
- return legalPersonFax;
- }
- public void setLegalPersonFax(String legalPersonFax) {
- this.legalPersonFax = legalPersonFax;
- }
- public String getLegalPersonEmail() {
- return legalPersonEmail;
- }
- public void setLegalPersonEmail(String legalPersonEmail) {
- this.legalPersonEmail = legalPersonEmail;
- }
- public BigDecimal getRegisteredCapital() {
- return registeredCapital;
- }
- public void setRegisteredCapital(BigDecimal registeredCapital) {
- this.registeredCapital = registeredCapital;
- }
- public Date getRegistrationTime() {
- return registrationTime;
- }
- public void setRegistrationTime(Date registrationTime) {
- this.registrationTime = registrationTime;
- }
- public String getLegalPerson() {
- return legalPerson;
- }
- public void setLegalPerson(String legalPerson) {
- this.legalPerson = legalPerson;
- }
- public String getLegalPersonIdCard() {
- return legalPersonIdCard;
- }
- public void setLegalPersonIdCard(String legalPersonIdCard) {
- this.legalPersonIdCard = legalPersonIdCard;
- }
- public String getOrgCode() {
- return orgCode;
- }
- public void setOrgCode(String orgCode) {
- this.orgCode = orgCode;
- }
- public String getRatepayCode() {
- return ratepayCode;
- }
- public void setRatepayCode(String ratepayCode) {
- this.ratepayCode = ratepayCode;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getIndustry() {
- return industry;
- }
- public void setIndustry(Integer industry) {
- this.industry = industry;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getEnterpriseScale() {
- return enterpriseScale;
- }
- public void setEnterpriseScale(Integer enterpriseScale) {
- this.enterpriseScale = enterpriseScale;
- }
-
-
- public String getRegisterType() {
- return registerType;
- }
- public void setRegisterType(String registerType) {
- this.registerType = registerType;
- }
- public String getForeignInvestment() {
- return foreignInvestment;
- }
- public void setForeignInvestment(String foreignInvestment) {
- this.foreignInvestment = foreignInvestment;
- }
- public String getField() {
- return field;
- }
- public void setField(String field) {
- this.field = field;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getTaxAuthority() {
- return taxAuthority;
- }
- public void setTaxAuthority(Integer taxAuthority) {
- this.taxAuthority = taxAuthority;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getRatepayMethod() {
- return ratepayMethod;
- }
- public void setRatepayMethod(Integer ratepayMethod) {
- this.ratepayMethod = ratepayMethod;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getListed() {
- return listed;
- }
- public void setListed(Integer listed) {
- this.listed = listed;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getHighTechZone() {
- return highTechZone;
- }
- public void setHighTechZone(Integer highTechZone) {
- this.highTechZone = highTechZone;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getRiskInvestment() {
- return riskInvestment;
- }
- public void setRiskInvestment(Integer riskInvestment) {
- this.riskInvestment = riskInvestment;
- }
- public String getBusinessScope() {
- return businessScope;
- }
- public void setBusinessScope(String businessScope) {
- this.businessScope = businessScope;
- }
- public Integer getFirmTotal() {
- return firmTotal;
- }
- public void setFirmTotal(Integer firmTotal) {
- this.firmTotal = firmTotal;
- }
- public Integer getTechTotal() {
- return techTotal;
- }
- public void setTechTotal(Integer techTotal) {
- this.techTotal = techTotal;
- }
-
- public Date getListedDate() {
- return listedDate;
- }
- public void setListedDate(Date listedDate) {
- this.listedDate = listedDate;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getListedType() {
- return listedType;
- }
- public void setListedType(Integer listedType) {
- this.listedType = listedType;
- }
- public String getStockCode() {
- return stockCode;
- }
- public void setStockCode(String stockCode) {
- this.stockCode = stockCode;
- }
- public String getHighTechName() {
- return highTechName;
- }
- public void setHighTechName(String highTechName) {
- this.highTechName = highTechName;
- }
- public String getRegistrationTimeFormattedDate() {
- if (this.registrationTime == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getRegistrationTime(), AFTConstants.YYYYMMDD);
- }
- }
- public void setRegistrationTimeFormattedDate(String registrationTimeFormattedDate) {
- }
-
- public String getListedDateFormattedDate() {
- if (this.listedDate == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getListedDate(), AFTConstants.YYYYMMDD);
- }
- }
- public void setListedDateFormattedDate(String listedDateFormattedDate) {
- }
-
-
-
-
- }
|