AnnualReportBo.java 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. package com.goafanti.cognizance.bo;
  2. import java.math.BigDecimal;
  3. /**
  4. * 企业年报
  5. */
  6. public class AnnualReportBo {
  7. private String uid;
  8. /**
  9. * 企业名称
  10. */
  11. private String unitName;
  12. /**
  13. * 组织机构代码
  14. */
  15. private String orgCode;
  16. /**
  17. * 所属地区--省
  18. */
  19. private Integer locationProvince;
  20. /**
  21. * 所属地区--市
  22. */
  23. private Integer locationCity;
  24. /**
  25. * 所属地区--区
  26. */
  27. private Integer locationArea;
  28. /**
  29. * 高企认定证书编号
  30. */
  31. private String certificateNumber;
  32. /**
  33. * 高企认定时间
  34. */
  35. private String issuingDate;
  36. /**
  37. * 是否上市
  38. */
  39. private String listed;
  40. /**
  41. * 上市时间
  42. */
  43. private String listedDate;
  44. /**
  45. * 上市类型
  46. */
  47. private String listedType;
  48. /**
  49. * 股票代码
  50. */
  51. private String stockCode;
  52. /**
  53. * 企业联系人及联系方式
  54. */
  55. private String contacts;
  56. /**
  57. * 发明专利数
  58. */
  59. private Integer inventionPatent;
  60. /**
  61. * 国防专利数
  62. */
  63. private Integer defensePatent;
  64. /**
  65. * 国家级农作物品种数
  66. */
  67. private Integer nationalCrop;
  68. /**
  69. * 植物新品种数
  70. */
  71. private Integer newPlantCariety;
  72. /**
  73. * 国家新药数
  74. */
  75. private Integer nationalDrug;
  76. /**
  77. * 国家一级中药保护品种数
  78. */
  79. private Integer chineseMedicine;
  80. /**
  81. * 实用新型专利数
  82. */
  83. private Integer utilityPatent;
  84. /**
  85. * 集成电路布图设计专有权数
  86. */
  87. private Integer circuitDesign;
  88. /**
  89. * 外观设计专利数
  90. */
  91. private Integer exteriorPatent;
  92. /**
  93. * 软件著作权数
  94. */
  95. private Integer softwareWorks;
  96. /**
  97. * 职工总人数
  98. */
  99. private Integer firmTotal;
  100. /**
  101. * 科技人员数
  102. */
  103. private Integer techTotal;
  104. /**
  105. * 新增就业人数
  106. */
  107. private Integer newEmployment;
  108. /**
  109. * 高校应届毕业生人数
  110. */
  111. private Integer graduateNumber;
  112. /**
  113. * 企业总收入
  114. */
  115. private BigDecimal totalRevenue;
  116. /**
  117. * 销售收入(万元)
  118. */
  119. private BigDecimal salesRevenue;
  120. /**
  121. * 所有者权益合计(万元)
  122. */
  123. private BigDecimal netAsset;
  124. /**
  125. * 高新技术产品(服务)收入
  126. */
  127. private BigDecimal lastYearRevenue;
  128. /**
  129. * 利润总额
  130. */
  131. private BigDecimal grossProfit;
  132. /**
  133. * 研发费用总额
  134. */
  135. private BigDecimal researchCost;
  136. /**
  137. * 在中国境内研发费用
  138. */
  139. private BigDecimal territory;
  140. public String getUid() {
  141. return uid;
  142. }
  143. public void setUid(String uid) {
  144. this.uid = uid;
  145. }
  146. public String getUnitName() {
  147. return unitName;
  148. }
  149. public void setUnitName(String unitName) {
  150. this.unitName = unitName;
  151. }
  152. public String getOrgCode() {
  153. return orgCode;
  154. }
  155. public void setOrgCode(String orgCode) {
  156. this.orgCode = orgCode;
  157. }
  158. public Integer getLocationProvince() {
  159. return locationProvince;
  160. }
  161. public void setLocationProvince(Integer locationProvince) {
  162. this.locationProvince = locationProvince;
  163. }
  164. public Integer getLocationCity() {
  165. return locationCity;
  166. }
  167. public void setLocationCity(Integer locationCity) {
  168. this.locationCity = locationCity;
  169. }
  170. public Integer getLocationArea() {
  171. return locationArea;
  172. }
  173. public void setLocationArea(Integer locationArea) {
  174. this.locationArea = locationArea;
  175. }
  176. public String getIssuingDate() {
  177. return issuingDate;
  178. }
  179. public void setIssuingDate(String issuingDate) {
  180. this.issuingDate = issuingDate;
  181. }
  182. public String getListed() {
  183. return listed;
  184. }
  185. public void setListed(String listed) {
  186. this.listed = listed;
  187. }
  188. public String getListedDate() {
  189. return listedDate;
  190. }
  191. public void setListedDate(String listedDate) {
  192. this.listedDate = listedDate;
  193. }
  194. public String getListedType() {
  195. return listedType;
  196. }
  197. public void setListedType(String listedType) {
  198. this.listedType = listedType;
  199. }
  200. public String getStockCode() {
  201. return stockCode;
  202. }
  203. public void setStockCode(String stockCode) {
  204. this.stockCode = stockCode;
  205. }
  206. public String getCertificateNumber() {
  207. return certificateNumber;
  208. }
  209. public void setCertificateNumber(String certificateNumber) {
  210. this.certificateNumber = certificateNumber;
  211. }
  212. public String getContacts() {
  213. return contacts;
  214. }
  215. public void setContacts(String contacts) {
  216. this.contacts = contacts;
  217. }
  218. public Integer getInventionPatent() {
  219. return inventionPatent;
  220. }
  221. public void setInventionPatent(Integer inventionPatent) {
  222. this.inventionPatent = inventionPatent;
  223. }
  224. public Integer getDefensePatent() {
  225. return defensePatent;
  226. }
  227. public void setDefensePatent(Integer defensePatent) {
  228. this.defensePatent = defensePatent;
  229. }
  230. public Integer getNationalCrop() {
  231. return nationalCrop;
  232. }
  233. public void setNationalCrop(Integer nationalCrop) {
  234. this.nationalCrop = nationalCrop;
  235. }
  236. public Integer getNewPlantCariety() {
  237. return newPlantCariety;
  238. }
  239. public void setNewPlantCariety(Integer newPlantCariety) {
  240. this.newPlantCariety = newPlantCariety;
  241. }
  242. public Integer getNationalDrug() {
  243. return nationalDrug;
  244. }
  245. public void setNationalDrug(Integer nationalDrug) {
  246. this.nationalDrug = nationalDrug;
  247. }
  248. public Integer getChineseMedicine() {
  249. return chineseMedicine;
  250. }
  251. public void setChineseMedicine(Integer chineseMedicine) {
  252. this.chineseMedicine = chineseMedicine;
  253. }
  254. public Integer getUtilityPatent() {
  255. return utilityPatent;
  256. }
  257. public void setUtilityPatent(Integer utilityPatent) {
  258. this.utilityPatent = utilityPatent;
  259. }
  260. public Integer getCircuitDesign() {
  261. return circuitDesign;
  262. }
  263. public void setCircuitDesign(Integer circuitDesign) {
  264. this.circuitDesign = circuitDesign;
  265. }
  266. public Integer getExteriorPatent() {
  267. return exteriorPatent;
  268. }
  269. public void setExteriorPatent(Integer exteriorPatent) {
  270. this.exteriorPatent = exteriorPatent;
  271. }
  272. public Integer getSoftwareWorks() {
  273. return softwareWorks;
  274. }
  275. public void setSoftwareWorks(Integer softwareWorks) {
  276. this.softwareWorks = softwareWorks;
  277. }
  278. public Integer getFirmTotal() {
  279. return firmTotal;
  280. }
  281. public void setFirmTotal(Integer firmTotal) {
  282. this.firmTotal = firmTotal;
  283. }
  284. public Integer getTechTotal() {
  285. return techTotal;
  286. }
  287. public void setTechTotal(Integer techTotal) {
  288. this.techTotal = techTotal;
  289. }
  290. public Integer getNewEmployment() {
  291. return newEmployment;
  292. }
  293. public void setNewEmployment(Integer newEmployment) {
  294. this.newEmployment = newEmployment;
  295. }
  296. public Integer getGraduateNumber() {
  297. return graduateNumber;
  298. }
  299. public void setGraduateNumber(Integer graduateNumber) {
  300. this.graduateNumber = graduateNumber;
  301. }
  302. public BigDecimal getTotalRevenue() {
  303. return totalRevenue;
  304. }
  305. public void setTotalRevenue(BigDecimal totalRevenue) {
  306. this.totalRevenue = totalRevenue;
  307. }
  308. public BigDecimal getSalesRevenue() {
  309. return salesRevenue;
  310. }
  311. public void setSalesRevenue(BigDecimal salesRevenue) {
  312. this.salesRevenue = salesRevenue;
  313. }
  314. public BigDecimal getNetAsset() {
  315. return netAsset;
  316. }
  317. public void setNetAsset(BigDecimal netAsset) {
  318. this.netAsset = netAsset;
  319. }
  320. public BigDecimal getLastYearRevenue() {
  321. return lastYearRevenue;
  322. }
  323. public void setLastYearRevenue(BigDecimal lastYearRevenue) {
  324. this.lastYearRevenue = lastYearRevenue;
  325. }
  326. public BigDecimal getGrossProfit() {
  327. return grossProfit;
  328. }
  329. public void setGrossProfit(BigDecimal grossProfit) {
  330. this.grossProfit = grossProfit;
  331. }
  332. public BigDecimal getResearchCost() {
  333. return researchCost;
  334. }
  335. public void setResearchCost(BigDecimal researchCost) {
  336. this.researchCost = researchCost;
  337. }
  338. public BigDecimal getTerritory() {
  339. return territory;
  340. }
  341. public void setTerritory(BigDecimal territory) {
  342. this.territory = territory;
  343. }
  344. }