| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- package com.goafanti.cognizance.bo;
- import java.math.BigDecimal;
- /**
- * 企业年报
- */
- public class AnnualReportBo {
- private String uid;
- /**
- * 企业名称
- */
- private String unitName;
- /**
- * 组织机构代码
- */
- private String orgCode;
- /**
- * 所属地区--省
- */
- private Integer locationProvince;
- /**
- * 所属地区--市
- */
- private Integer locationCity;
- /**
- * 所属地区--区
- */
- private Integer locationArea;
- /**
- * 高企认定证书编号
- */
- private String certificateNumber;
- /**
- * 高企认定时间
- */
- private String issuingDate;
- /**
- * 是否上市
- */
- private String listed;
- /**
- * 上市时间
- */
- private String listedDate;
- /**
- * 上市类型
- */
- private String listedType;
- /**
- * 股票代码
- */
- private String stockCode;
- /**
- * 企业联系人及联系方式
- */
- private String contacts;
- /**
- * 发明专利数
- */
- private Integer inventionPatent;
- /**
- * 国防专利数
- */
- private Integer defensePatent;
- /**
- * 国家级农作物品种数
- */
- private Integer nationalCrop;
- /**
- * 植物新品种数
- */
- private Integer newPlantCariety;
- /**
- * 国家新药数
- */
- private Integer nationalDrug;
- /**
- * 国家一级中药保护品种数
- */
- private Integer chineseMedicine;
- /**
- * 实用新型专利数
- */
- private Integer utilityPatent;
- /**
- * 集成电路布图设计专有权数
- */
- private Integer circuitDesign;
- /**
- * 外观设计专利数
- */
- private Integer exteriorPatent;
- /**
- * 软件著作权数
- */
- private Integer softwareWorks;
- /**
- * 职工总人数
- */
- private Integer firmTotal;
- /**
- * 科技人员数
- */
- private Integer techTotal;
- /**
- * 新增就业人数
- */
- private Integer newEmployment;
- /**
- * 高校应届毕业生人数
- */
- private Integer graduateNumber;
- /**
- * 企业总收入
- */
- private BigDecimal totalRevenue;
- /**
- * 销售收入(万元)
- */
- private BigDecimal salesRevenue;
- /**
- * 所有者权益合计(万元)
- */
- private BigDecimal netAsset;
- /**
- * 高新技术产品(服务)收入
- */
- private BigDecimal lastYearRevenue;
- /**
- * 利润总额
- */
- private BigDecimal grossProfit;
- /**
- * 研发费用总额
- */
- private BigDecimal researchCost;
- /**
- * 在中国境内研发费用
- */
- private BigDecimal territory;
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public String getUnitName() {
- return unitName;
- }
- public void setUnitName(String unitName) {
- this.unitName = unitName;
- }
- public String getOrgCode() {
- return orgCode;
- }
- public void setOrgCode(String orgCode) {
- this.orgCode = orgCode;
- }
- public Integer getLocationProvince() {
- return locationProvince;
- }
- public void setLocationProvince(Integer locationProvince) {
- this.locationProvince = locationProvince;
- }
-
- public Integer getLocationCity() {
- return locationCity;
- }
- public void setLocationCity(Integer locationCity) {
- this.locationCity = locationCity;
- }
-
- public Integer getLocationArea() {
- return locationArea;
- }
- public void setLocationArea(Integer locationArea) {
- this.locationArea = locationArea;
- }
- public String getIssuingDate() {
- return issuingDate;
- }
- public void setIssuingDate(String issuingDate) {
- this.issuingDate = issuingDate;
- }
- public String getListed() {
- return listed;
- }
- public void setListed(String listed) {
- this.listed = listed;
- }
- public String getListedDate() {
- return listedDate;
- }
- public void setListedDate(String listedDate) {
- this.listedDate = listedDate;
- }
- public String getListedType() {
- return listedType;
- }
- public void setListedType(String listedType) {
- this.listedType = listedType;
- }
- public String getStockCode() {
- return stockCode;
- }
- public void setStockCode(String stockCode) {
- this.stockCode = stockCode;
- }
- public String getCertificateNumber() {
- return certificateNumber;
- }
- public void setCertificateNumber(String certificateNumber) {
- this.certificateNumber = certificateNumber;
- }
- public String getContacts() {
- return contacts;
- }
- public void setContacts(String contacts) {
- this.contacts = contacts;
- }
- public Integer getInventionPatent() {
- return inventionPatent;
- }
- public void setInventionPatent(Integer inventionPatent) {
- this.inventionPatent = inventionPatent;
- }
- public Integer getDefensePatent() {
- return defensePatent;
- }
- public void setDefensePatent(Integer defensePatent) {
- this.defensePatent = defensePatent;
- }
- public Integer getNationalCrop() {
- return nationalCrop;
- }
- public void setNationalCrop(Integer nationalCrop) {
- this.nationalCrop = nationalCrop;
- }
- public Integer getNewPlantCariety() {
- return newPlantCariety;
- }
- public void setNewPlantCariety(Integer newPlantCariety) {
- this.newPlantCariety = newPlantCariety;
- }
- public Integer getNationalDrug() {
- return nationalDrug;
- }
- public void setNationalDrug(Integer nationalDrug) {
- this.nationalDrug = nationalDrug;
- }
- public Integer getChineseMedicine() {
- return chineseMedicine;
- }
- public void setChineseMedicine(Integer chineseMedicine) {
- this.chineseMedicine = chineseMedicine;
- }
- public Integer getUtilityPatent() {
- return utilityPatent;
- }
- public void setUtilityPatent(Integer utilityPatent) {
- this.utilityPatent = utilityPatent;
- }
- public Integer getCircuitDesign() {
- return circuitDesign;
- }
- public void setCircuitDesign(Integer circuitDesign) {
- this.circuitDesign = circuitDesign;
- }
- public Integer getExteriorPatent() {
- return exteriorPatent;
- }
- public void setExteriorPatent(Integer exteriorPatent) {
- this.exteriorPatent = exteriorPatent;
- }
- public Integer getSoftwareWorks() {
- return softwareWorks;
- }
- public void setSoftwareWorks(Integer softwareWorks) {
- this.softwareWorks = softwareWorks;
- }
- 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 Integer getNewEmployment() {
- return newEmployment;
- }
- public void setNewEmployment(Integer newEmployment) {
- this.newEmployment = newEmployment;
- }
- public Integer getGraduateNumber() {
- return graduateNumber;
- }
- public void setGraduateNumber(Integer graduateNumber) {
- this.graduateNumber = graduateNumber;
- }
- public BigDecimal getTotalRevenue() {
- return totalRevenue;
- }
- public void setTotalRevenue(BigDecimal totalRevenue) {
- this.totalRevenue = totalRevenue;
- }
- public BigDecimal getSalesRevenue() {
- return salesRevenue;
- }
- public void setSalesRevenue(BigDecimal salesRevenue) {
- this.salesRevenue = salesRevenue;
- }
- public BigDecimal getNetAsset() {
- return netAsset;
- }
- public void setNetAsset(BigDecimal netAsset) {
- this.netAsset = netAsset;
- }
- public BigDecimal getLastYearRevenue() {
- return lastYearRevenue;
- }
- public void setLastYearRevenue(BigDecimal lastYearRevenue) {
- this.lastYearRevenue = lastYearRevenue;
- }
- public BigDecimal getGrossProfit() {
- return grossProfit;
- }
- public void setGrossProfit(BigDecimal grossProfit) {
- this.grossProfit = grossProfit;
- }
- public BigDecimal getResearchCost() {
- return researchCost;
- }
- public void setResearchCost(BigDecimal researchCost) {
- this.researchCost = researchCost;
- }
- public BigDecimal getTerritory() {
- return territory;
- }
- public void setTerritory(BigDecimal territory) {
- this.territory = territory;
- }
- }
|