OrgBasicInfoBo.java 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. package com.goafanti.user.bo;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import org.apache.commons.lang3.time.DateFormatUtils;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  7. import com.goafanti.common.constant.AFTConstants;
  8. public class OrgBasicInfoBo {
  9. private String id;
  10. private String uid;
  11. private String hid;
  12. /**
  13. * 企业名称
  14. */
  15. private String unitName;
  16. /**
  17. * 行政区域--省
  18. */
  19. private Integer province;
  20. /**
  21. * 行政区域--市
  22. */
  23. private Integer city;
  24. /**
  25. * 行政区域--区
  26. */
  27. private Integer area;
  28. /**
  29. * 通讯地址
  30. */
  31. private String postalAddress;
  32. /**
  33. * 邮编
  34. */
  35. private String postcode;
  36. /**
  37. * 联系人姓名(第一联系人)
  38. */
  39. private String firstContacts;
  40. /**
  41. * 联系人手机(第一联系人)
  42. */
  43. private String firstMobile;
  44. /**
  45. * 联系人电话
  46. */
  47. private String contactsFixedTel;
  48. /**
  49. * 联系人传真
  50. */
  51. private String contactsFax;
  52. /**
  53. * 法人电话
  54. */
  55. private String legalPersonTel;
  56. /**
  57. * 法人传真
  58. */
  59. private String legalPersonFax;
  60. /**
  61. * 法人Email
  62. */
  63. private String legalPersonEmail;
  64. /**
  65. * 注册资金
  66. */
  67. private BigDecimal registeredCapital;
  68. /**
  69. * 注册时间
  70. */
  71. private Date registrationTime;
  72. /**
  73. * 法人代表姓名
  74. */
  75. private String legalPerson;
  76. /**
  77. * 法人身份证号
  78. */
  79. private String legalPersonIdCard;
  80. /**
  81. * 组织机构代码/统一社会信用代码
  82. */
  83. private String orgCode;
  84. /**
  85. * 税务登记号/统一社会信用代码
  86. */
  87. private String ratepayCode;
  88. /**
  89. * 所属行业
  90. */
  91. private Integer industry;
  92. /**
  93. * 企业规模(注册资金)
  94. */
  95. private Integer enterpriseScale;
  96. /**
  97. * 注册类型
  98. */
  99. private String registerType;
  100. /**
  101. * 外资来源地
  102. */
  103. private String foreignInvestment;
  104. /**
  105. * 领域
  106. */
  107. private String field;
  108. /**
  109. * 企业所得税主管税务机关
  110. */
  111. private Integer taxAuthority;
  112. /**
  113. * 企业所得税征收方式
  114. */
  115. private Integer ratepayMethod;
  116. /**
  117. * 是否上市
  118. */
  119. private Integer listed;
  120. /**
  121. * 上市时间
  122. */
  123. private Date listedDate;
  124. /**
  125. * 上市类型
  126. */
  127. private Integer listedType;
  128. /**
  129. * 股票代码
  130. */
  131. private String stockCode;
  132. /**
  133. * 是否属于国家级高新区内企业
  134. */
  135. private Integer highTechZone;
  136. /**
  137. * 国家级高新区名称
  138. */
  139. private String highTechName;
  140. /**
  141. * 是否引入风险投资
  142. */
  143. private Integer riskInvestment;
  144. /**
  145. * 经营范围
  146. */
  147. private String businessScope;
  148. /**
  149. * 企业职工
  150. */
  151. private Integer firmTotal;
  152. /**
  153. * 科技人员
  154. */
  155. private Integer techTotal;
  156. public String getId() {
  157. return id;
  158. }
  159. public void setId(String id) {
  160. this.id = id;
  161. }
  162. public String getUid() {
  163. return uid;
  164. }
  165. public void setUid(String uid) {
  166. this.uid = uid;
  167. }
  168. public String getHid() {
  169. return hid;
  170. }
  171. public void setHid(String hid) {
  172. this.hid = hid;
  173. }
  174. public String getUnitName() {
  175. return unitName;
  176. }
  177. public void setUnitName(String unitName) {
  178. this.unitName = unitName;
  179. }
  180. @JsonFormat(shape =Shape.STRING)
  181. public Integer getProvince() {
  182. return province;
  183. }
  184. public void setProvince(Integer province) {
  185. this.province = province;
  186. }
  187. @JsonFormat(shape =Shape.STRING)
  188. public Integer getCity() {
  189. return city;
  190. }
  191. public void setCity(Integer city) {
  192. this.city = city;
  193. }
  194. @JsonFormat(shape =Shape.STRING)
  195. public Integer getArea() {
  196. return area;
  197. }
  198. public void setArea(Integer area) {
  199. this.area = area;
  200. }
  201. public String getPostalAddress() {
  202. return postalAddress;
  203. }
  204. public void setPostalAddress(String postalAddress) {
  205. this.postalAddress = postalAddress;
  206. }
  207. public String getPostcode() {
  208. return postcode;
  209. }
  210. public void setPostcode(String postcode) {
  211. this.postcode = postcode;
  212. }
  213. public String getFirstContacts() {
  214. return firstContacts;
  215. }
  216. public void setFirstContacts(String firstContacts) {
  217. this.firstContacts = firstContacts;
  218. }
  219. public String getFirstMobile() {
  220. return firstMobile;
  221. }
  222. public void setFirstMobile(String firstMobile) {
  223. this.firstMobile = firstMobile;
  224. }
  225. public String getContactsFixedTel() {
  226. return contactsFixedTel;
  227. }
  228. public void setContactsFixedTel(String contactsFixedTel) {
  229. this.contactsFixedTel = contactsFixedTel;
  230. }
  231. public String getContactsFax() {
  232. return contactsFax;
  233. }
  234. public void setContactsFax(String contactsFax) {
  235. this.contactsFax = contactsFax;
  236. }
  237. public String getLegalPersonTel() {
  238. return legalPersonTel;
  239. }
  240. public void setLegalPersonTel(String legalPersonTel) {
  241. this.legalPersonTel = legalPersonTel;
  242. }
  243. public String getLegalPersonFax() {
  244. return legalPersonFax;
  245. }
  246. public void setLegalPersonFax(String legalPersonFax) {
  247. this.legalPersonFax = legalPersonFax;
  248. }
  249. public String getLegalPersonEmail() {
  250. return legalPersonEmail;
  251. }
  252. public void setLegalPersonEmail(String legalPersonEmail) {
  253. this.legalPersonEmail = legalPersonEmail;
  254. }
  255. public BigDecimal getRegisteredCapital() {
  256. return registeredCapital;
  257. }
  258. public void setRegisteredCapital(BigDecimal registeredCapital) {
  259. this.registeredCapital = registeredCapital;
  260. }
  261. public Date getRegistrationTime() {
  262. return registrationTime;
  263. }
  264. public void setRegistrationTime(Date registrationTime) {
  265. this.registrationTime = registrationTime;
  266. }
  267. public String getLegalPerson() {
  268. return legalPerson;
  269. }
  270. public void setLegalPerson(String legalPerson) {
  271. this.legalPerson = legalPerson;
  272. }
  273. public String getLegalPersonIdCard() {
  274. return legalPersonIdCard;
  275. }
  276. public void setLegalPersonIdCard(String legalPersonIdCard) {
  277. this.legalPersonIdCard = legalPersonIdCard;
  278. }
  279. public String getOrgCode() {
  280. return orgCode;
  281. }
  282. public void setOrgCode(String orgCode) {
  283. this.orgCode = orgCode;
  284. }
  285. public String getRatepayCode() {
  286. return ratepayCode;
  287. }
  288. public void setRatepayCode(String ratepayCode) {
  289. this.ratepayCode = ratepayCode;
  290. }
  291. @JsonFormat(shape = Shape.STRING)
  292. public Integer getIndustry() {
  293. return industry;
  294. }
  295. public void setIndustry(Integer industry) {
  296. this.industry = industry;
  297. }
  298. @JsonFormat(shape = Shape.STRING)
  299. public Integer getEnterpriseScale() {
  300. return enterpriseScale;
  301. }
  302. public void setEnterpriseScale(Integer enterpriseScale) {
  303. this.enterpriseScale = enterpriseScale;
  304. }
  305. public String getRegisterType() {
  306. return registerType;
  307. }
  308. public void setRegisterType(String registerType) {
  309. this.registerType = registerType;
  310. }
  311. public String getForeignInvestment() {
  312. return foreignInvestment;
  313. }
  314. public void setForeignInvestment(String foreignInvestment) {
  315. this.foreignInvestment = foreignInvestment;
  316. }
  317. public String getField() {
  318. return field;
  319. }
  320. public void setField(String field) {
  321. this.field = field;
  322. }
  323. @JsonFormat(shape = Shape.STRING)
  324. public Integer getTaxAuthority() {
  325. return taxAuthority;
  326. }
  327. public void setTaxAuthority(Integer taxAuthority) {
  328. this.taxAuthority = taxAuthority;
  329. }
  330. @JsonFormat(shape = Shape.STRING)
  331. public Integer getRatepayMethod() {
  332. return ratepayMethod;
  333. }
  334. public void setRatepayMethod(Integer ratepayMethod) {
  335. this.ratepayMethod = ratepayMethod;
  336. }
  337. @JsonFormat(shape = Shape.STRING)
  338. public Integer getListed() {
  339. return listed;
  340. }
  341. public void setListed(Integer listed) {
  342. this.listed = listed;
  343. }
  344. @JsonFormat(shape = Shape.STRING)
  345. public Integer getHighTechZone() {
  346. return highTechZone;
  347. }
  348. public void setHighTechZone(Integer highTechZone) {
  349. this.highTechZone = highTechZone;
  350. }
  351. @JsonFormat(shape = Shape.STRING)
  352. public Integer getRiskInvestment() {
  353. return riskInvestment;
  354. }
  355. public void setRiskInvestment(Integer riskInvestment) {
  356. this.riskInvestment = riskInvestment;
  357. }
  358. public String getBusinessScope() {
  359. return businessScope;
  360. }
  361. public void setBusinessScope(String businessScope) {
  362. this.businessScope = businessScope;
  363. }
  364. public Integer getFirmTotal() {
  365. return firmTotal;
  366. }
  367. public void setFirmTotal(Integer firmTotal) {
  368. this.firmTotal = firmTotal;
  369. }
  370. public Integer getTechTotal() {
  371. return techTotal;
  372. }
  373. public void setTechTotal(Integer techTotal) {
  374. this.techTotal = techTotal;
  375. }
  376. public Date getListedDate() {
  377. return listedDate;
  378. }
  379. public void setListedDate(Date listedDate) {
  380. this.listedDate = listedDate;
  381. }
  382. @JsonFormat(shape = Shape.STRING)
  383. public Integer getListedType() {
  384. return listedType;
  385. }
  386. public void setListedType(Integer listedType) {
  387. this.listedType = listedType;
  388. }
  389. public String getStockCode() {
  390. return stockCode;
  391. }
  392. public void setStockCode(String stockCode) {
  393. this.stockCode = stockCode;
  394. }
  395. public String getHighTechName() {
  396. return highTechName;
  397. }
  398. public void setHighTechName(String highTechName) {
  399. this.highTechName = highTechName;
  400. }
  401. public String getRegistrationTimeFormattedDate() {
  402. if (this.registrationTime == null) {
  403. return null;
  404. } else {
  405. return DateFormatUtils.format(this.getRegistrationTime(), AFTConstants.YYYYMMDD);
  406. }
  407. }
  408. public void setRegistrationTimeFormattedDate(String registrationTimeFormattedDate) {
  409. }
  410. public String getListedDateFormattedDate() {
  411. if (this.listedDate == null) {
  412. return null;
  413. } else {
  414. return DateFormatUtils.format(this.getListedDate(), AFTConstants.YYYYMMDD);
  415. }
  416. }
  417. public void setListedDateFormattedDate(String listedDateFormattedDate) {
  418. }
  419. }