CognizanceOrgInfoBo.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. package com.goafanti.cognizance.bo;
  2. import java.math.BigDecimal;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  5. public class CognizanceOrgInfoBo {
  6. private String uid;
  7. private String cid;
  8. private String unitName;
  9. private String orgCode;
  10. private String postalAddress;
  11. private Integer contacts;
  12. private Integer technicalField1;
  13. private Integer technicalField2;
  14. private Integer technicalField3;
  15. private BigDecimal basicResearchCost;
  16. private Integer largeOrder;
  17. private Integer accident;
  18. private Integer year;
  19. private String certificateNumber;
  20. public String getUid() {
  21. return uid;
  22. }
  23. public void setUid(String uid) {
  24. this.uid = uid;
  25. }
  26. public String getCid() {
  27. return cid;
  28. }
  29. public void setCid(String cid) {
  30. this.cid = cid;
  31. }
  32. public String getUnitName() {
  33. return unitName;
  34. }
  35. public void setUnitName(String unitName) {
  36. this.unitName = unitName;
  37. }
  38. public String getOrgCode() {
  39. return orgCode;
  40. }
  41. public void setOrgCode(String orgCode) {
  42. this.orgCode = orgCode;
  43. }
  44. public String getPostalAddress() {
  45. return postalAddress;
  46. }
  47. public void setPostalAddress(String postalAddress) {
  48. this.postalAddress = postalAddress;
  49. }
  50. @JsonFormat(shape = Shape.STRING)
  51. public Integer getContacts() {
  52. return contacts;
  53. }
  54. public void setContacts(Integer contacts) {
  55. this.contacts = contacts;
  56. }
  57. @JsonFormat(shape = Shape.STRING)
  58. public Integer getTechnicalField1() {
  59. return technicalField1;
  60. }
  61. public void setTechnicalField1(Integer technicalField1) {
  62. this.technicalField1 = technicalField1;
  63. }
  64. @JsonFormat(shape = Shape.STRING)
  65. public Integer getTechnicalField2() {
  66. return technicalField2;
  67. }
  68. public void setTechnicalField2(Integer technicalField2) {
  69. this.technicalField2 = technicalField2;
  70. }
  71. @JsonFormat(shape = Shape.STRING)
  72. public Integer getTechnicalField3() {
  73. return technicalField3;
  74. }
  75. public void setTechnicalField3(Integer technicalField3) {
  76. this.technicalField3 = technicalField3;
  77. }
  78. public BigDecimal getBasicResearchCost() {
  79. return basicResearchCost;
  80. }
  81. public void setBasicResearchCost(BigDecimal basicResearchCost) {
  82. this.basicResearchCost = basicResearchCost;
  83. }
  84. public Integer getAccident() {
  85. return accident;
  86. }
  87. public void setAccident(Integer accident) {
  88. this.accident = accident;
  89. }
  90. public Integer getLargeOrder() {
  91. return largeOrder;
  92. }
  93. public void setLargeOrder(Integer largeOrder) {
  94. this.largeOrder = largeOrder;
  95. }
  96. public Integer getYear() {
  97. return year;
  98. }
  99. public void setYear(Integer year) {
  100. this.year = year;
  101. }
  102. public String getCertificateNumber() {
  103. return certificateNumber;
  104. }
  105. public void setCertificateNumber(String certificateNumber) {
  106. this.certificateNumber = certificateNumber;
  107. }
  108. }