InputOrganizationIdentity.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. package com.goafanti.user.bo;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import javax.validation.constraints.Max;
  5. import javax.validation.constraints.Min;
  6. import javax.validation.constraints.Size;
  7. import com.goafanti.common.constant.ErrorConstants;
  8. public class InputOrganizationIdentity {
  9. @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  10. private String id;
  11. @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  12. private String uid;
  13. @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  14. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  15. private Integer type;
  16. @Size(min = 0, max = 6, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  17. private String contacts;
  18. @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  19. private String contactMobile;
  20. @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  21. private String fixedTel;
  22. @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  23. private String qq;
  24. @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  25. private String postalAddress;
  26. @Size(min = 0, max = 8, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  27. private String postcode;
  28. @Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  29. private String identifyName;
  30. @Max(value = 999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  31. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  32. private BigDecimal registeredCapital;
  33. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  34. private String licenceNumber;
  35. @Max(value = 99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  36. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  37. private Integer licenceProvince;
  38. @Max(value = 999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  39. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  40. private Integer licenceCity;
  41. @Max(value = 9999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  42. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  43. private Integer licenceArea;
  44. @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  45. private String licenceScanningUrl;
  46. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  47. private String orgCode;
  48. @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  49. private String orgCodeUrl;
  50. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  51. private String bankAccount;
  52. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  53. private String banks;
  54. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  55. private String bankBranch;
  56. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  57. private String bankCardNumber;
  58. @Max(value = (long) 99.9999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  59. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  60. private BigDecimal validationAmount;
  61. @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  62. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  63. private Integer identityType;
  64. @Max(value = 99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  65. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  66. private Integer locationProvince;
  67. @Max(value = 999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  68. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  69. private Integer locationCity;
  70. @Max(value = 9999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  71. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  72. private Integer locationArea;
  73. @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  74. private String legalPerson;
  75. @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  76. private String legalPersonTel;
  77. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  78. private String legalPersonIdCard;
  79. @Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  80. private String legalPersonEmail;
  81. @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  82. private String lastYearTaxReportUrl;
  83. @Max(value = 5, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  84. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  85. private Integer auditStatus;
  86. @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  87. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  88. private Integer process;
  89. @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  90. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  91. private Integer wrongCount;
  92. private Date paymentDate;
  93. @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  94. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  95. private Integer listed;
  96. private Date listedDate;
  97. @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  98. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  99. private Integer listedType;
  100. @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  101. private String stockCode;
  102. @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  103. private String certificateNumber;
  104. private Date issuingDate;
  105. @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  106. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  107. private Integer cogContacts;
  108. @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  109. private String consultant;
  110. @Max(value = 5, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  111. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  112. private Integer level;
  113. @Max(value = 99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  114. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  115. private Integer industry;
  116. private String enterpriseScale;
  117. @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  118. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  119. private Integer highTechZone;
  120. @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  121. @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
  122. private Integer authentication;
  123. @Size(min = 0, max = 400, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  124. private String businessScope;
  125. @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  126. private String field;
  127. @Size(min = 0, max = 127, message = "{" + ErrorConstants.EMAIL_SIZE_ERROR + "}")
  128. private String email;
  129. @Size(min = 0, max = 127, message = "{" + ErrorConstants.EMAIL_SIZE_ERROR + "}")
  130. private String companyLogoUrl;
  131. @Size(min = 0, max = 1, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  132. private String societyTag;
  133. @Size(min = 0, max = 512, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
  134. private String introduction;
  135. public String getId() {
  136. return id;
  137. }
  138. public void setId(String id) {
  139. this.id = id;
  140. }
  141. public String getUid() {
  142. return uid;
  143. }
  144. public void setUid(String uid) {
  145. this.uid = uid;
  146. }
  147. public Integer getType() {
  148. return type;
  149. }
  150. public void setType(Integer type) {
  151. this.type = type;
  152. }
  153. public String getContacts() {
  154. return contacts;
  155. }
  156. public void setContacts(String contacts) {
  157. this.contacts = contacts;
  158. }
  159. public String getContactMobile() {
  160. return contactMobile;
  161. }
  162. public void setContactMobile(String contactMobile) {
  163. this.contactMobile = contactMobile;
  164. }
  165. public String getFixedTel() {
  166. return fixedTel;
  167. }
  168. public void setFixedTel(String fixedTel) {
  169. this.fixedTel = fixedTel;
  170. }
  171. public String getQq() {
  172. return qq;
  173. }
  174. public void setQq(String qq) {
  175. this.qq = qq;
  176. }
  177. public String getPostalAddress() {
  178. return postalAddress;
  179. }
  180. public void setPostalAddress(String postalAddress) {
  181. this.postalAddress = postalAddress;
  182. }
  183. public String getPostcode() {
  184. return postcode;
  185. }
  186. public void setPostcode(String postcode) {
  187. this.postcode = postcode;
  188. }
  189. public String getIdentifyName() {
  190. return identifyName;
  191. }
  192. public void setIdentifyName(String identifyName) {
  193. this.identifyName = identifyName;
  194. }
  195. public BigDecimal getRegisteredCapital() {
  196. return registeredCapital;
  197. }
  198. public void setRegisteredCapital(BigDecimal registeredCapital) {
  199. this.registeredCapital = registeredCapital;
  200. }
  201. public String getLicenceNumber() {
  202. return licenceNumber;
  203. }
  204. public void setLicenceNumber(String licenceNumber) {
  205. this.licenceNumber = licenceNumber;
  206. }
  207. public Integer getLicenceProvince() {
  208. return licenceProvince;
  209. }
  210. public void setLicenceProvince(Integer licenceProvince) {
  211. this.licenceProvince = licenceProvince;
  212. }
  213. public Integer getLicenceCity() {
  214. return licenceCity;
  215. }
  216. public void setLicenceCity(Integer licenceCity) {
  217. this.licenceCity = licenceCity;
  218. }
  219. public Integer getLicenceArea() {
  220. return licenceArea;
  221. }
  222. public void setLicenceArea(Integer licenceArea) {
  223. this.licenceArea = licenceArea;
  224. }
  225. public void setLocationProvince(Integer locationProvince) {
  226. this.locationProvince = locationProvince;
  227. }
  228. public void setLocationCity(Integer locationCity) {
  229. this.locationCity = locationCity;
  230. }
  231. public void setLocationArea(Integer locationArea) {
  232. this.locationArea = locationArea;
  233. }
  234. public String getLicenceScanningUrl() {
  235. return licenceScanningUrl;
  236. }
  237. public void setLicenceScanningUrl(String licenceScanningUrl) {
  238. this.licenceScanningUrl = licenceScanningUrl;
  239. }
  240. public String getOrgCode() {
  241. return orgCode;
  242. }
  243. public void setOrgCode(String orgCode) {
  244. this.orgCode = orgCode;
  245. }
  246. public String getOrgCodeUrl() {
  247. return orgCodeUrl;
  248. }
  249. public void setOrgCodeUrl(String orgCodeUrl) {
  250. this.orgCodeUrl = orgCodeUrl;
  251. }
  252. public String getBankAccount() {
  253. return bankAccount;
  254. }
  255. public void setBankAccount(String bankAccount) {
  256. this.bankAccount = bankAccount;
  257. }
  258. public String getBanks() {
  259. return banks;
  260. }
  261. public void setBanks(String banks) {
  262. this.banks = banks;
  263. }
  264. public String getBankBranch() {
  265. return bankBranch;
  266. }
  267. public void setBankBranch(String bankBranch) {
  268. this.bankBranch = bankBranch;
  269. }
  270. public String getBankCardNumber() {
  271. return bankCardNumber;
  272. }
  273. public void setBankCardNumber(String bankCardNumber) {
  274. this.bankCardNumber = bankCardNumber;
  275. }
  276. public BigDecimal getValidationAmount() {
  277. return validationAmount;
  278. }
  279. public void setValidationAmount(BigDecimal validationAmount) {
  280. this.validationAmount = validationAmount;
  281. }
  282. public Integer getIdentityType() {
  283. return identityType;
  284. }
  285. public void setIdentityType(Integer identityType) {
  286. this.identityType = identityType;
  287. }
  288. public String getLegalPerson() {
  289. return legalPerson;
  290. }
  291. public void setLegalPerson(String legalPerson) {
  292. this.legalPerson = legalPerson;
  293. }
  294. public String getLegalPersonTel() {
  295. return legalPersonTel;
  296. }
  297. public void setLegalPersonTel(String legalPersonTel) {
  298. this.legalPersonTel = legalPersonTel;
  299. }
  300. public String getLegalPersonIdCard() {
  301. return legalPersonIdCard;
  302. }
  303. public void setLegalPersonIdCard(String legalPersonIdCard) {
  304. this.legalPersonIdCard = legalPersonIdCard;
  305. }
  306. public String getLegalPersonEmail() {
  307. return legalPersonEmail;
  308. }
  309. public void setLegalPersonEmail(String legalPersonEmail) {
  310. this.legalPersonEmail = legalPersonEmail;
  311. }
  312. public String getLastYearTaxReportUrl() {
  313. return lastYearTaxReportUrl;
  314. }
  315. public void setLastYearTaxReportUrl(String lastYearTaxReportUrl) {
  316. this.lastYearTaxReportUrl = lastYearTaxReportUrl;
  317. }
  318. public Integer getAuditStatus() {
  319. return auditStatus;
  320. }
  321. public void setAuditStatus(Integer auditStatus) {
  322. this.auditStatus = auditStatus;
  323. }
  324. public Integer getProcess() {
  325. return process;
  326. }
  327. public void setProcess(Integer process) {
  328. this.process = process;
  329. }
  330. public Integer getWrongCount() {
  331. return wrongCount;
  332. }
  333. public void setWrongCount(Integer wrongCount) {
  334. this.wrongCount = wrongCount;
  335. }
  336. public Date getPaymentDate() {
  337. return paymentDate;
  338. }
  339. public void setPaymentDate(Date paymentDate) {
  340. this.paymentDate = paymentDate;
  341. }
  342. public Integer getListed() {
  343. return listed;
  344. }
  345. public void setListed(Integer listed) {
  346. this.listed = listed;
  347. }
  348. public Date getListedDate() {
  349. return listedDate;
  350. }
  351. public void setListedDate(Date listedDate) {
  352. this.listedDate = listedDate;
  353. }
  354. public Integer getListedType() {
  355. return listedType;
  356. }
  357. public void setListedType(Integer listedType) {
  358. this.listedType = listedType;
  359. }
  360. public String getStockCode() {
  361. return stockCode;
  362. }
  363. public void setStockCode(String stockCode) {
  364. this.stockCode = stockCode;
  365. }
  366. public String getCertificateNumber() {
  367. return certificateNumber;
  368. }
  369. public void setCertificateNumber(String certificateNumber) {
  370. this.certificateNumber = certificateNumber;
  371. }
  372. public Date getIssuingDate() {
  373. return issuingDate;
  374. }
  375. public void setIssuingDate(Date issuingDate) {
  376. this.issuingDate = issuingDate;
  377. }
  378. public Integer getCogContacts() {
  379. return cogContacts;
  380. }
  381. public void setCogContacts(Integer cogContacts) {
  382. this.cogContacts = cogContacts;
  383. }
  384. public String getConsultant() {
  385. return consultant;
  386. }
  387. public void setConsultant(String consultant) {
  388. this.consultant = consultant;
  389. }
  390. public Integer getLevel() {
  391. return level;
  392. }
  393. public void setLevel(Integer level) {
  394. this.level = level;
  395. }
  396. public Integer getLocationProvince() {
  397. return locationProvince;
  398. }
  399. public Integer getLocationCity() {
  400. return locationCity;
  401. }
  402. public Integer getLocationArea() {
  403. return locationArea;
  404. }
  405. public Integer getIndustry() {
  406. return industry;
  407. }
  408. public void setIndustry(Integer industry) {
  409. this.industry = industry;
  410. }
  411. public String getEnterpriseScale() {
  412. return enterpriseScale;
  413. }
  414. public void setEnterpriseScale(String enterpriseScale) {
  415. this.enterpriseScale = enterpriseScale;
  416. }
  417. public Integer getHighTechZone() {
  418. return highTechZone;
  419. }
  420. public void setHighTechZone(Integer highTechZone) {
  421. this.highTechZone = highTechZone;
  422. }
  423. public Integer getAuthentication() {
  424. return authentication;
  425. }
  426. public void setAuthentication(Integer authentication) {
  427. this.authentication = authentication;
  428. }
  429. public String getBusinessScope() {
  430. return businessScope;
  431. }
  432. public void setBusinessScope(String businessScope) {
  433. this.businessScope = businessScope;
  434. }
  435. public String getField() {
  436. return field;
  437. }
  438. public void setField(String field) {
  439. this.field = field;
  440. }
  441. public String getEmail() {
  442. return email;
  443. }
  444. public void setEmail(String email) {
  445. this.email = email;
  446. }
  447. public String getCompanyLogoUrl() {
  448. return companyLogoUrl;
  449. }
  450. public void setCompanyLogoUrl(String companyLogoUrl) {
  451. this.companyLogoUrl = companyLogoUrl;
  452. }
  453. public String getSocietyTag() {
  454. return societyTag;
  455. }
  456. public void setSocietyTag(String societyTag) {
  457. this.societyTag = societyTag;
  458. }
  459. public String getIntroduction() {
  460. return introduction;
  461. }
  462. public void setIntroduction(String introduction) {
  463. this.introduction = introduction;
  464. }
  465. }