CognizanceOrgInfoBo.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package com.goafanti.techservice.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 accient;
  17. public String getUid() {
  18. return uid;
  19. }
  20. public void setUid(String uid) {
  21. this.uid = uid;
  22. }
  23. public String getCid() {
  24. return cid;
  25. }
  26. public void setCid(String cid) {
  27. this.cid = cid;
  28. }
  29. public String getUnitName() {
  30. return unitName;
  31. }
  32. public void setUnitName(String unitName) {
  33. this.unitName = unitName;
  34. }
  35. public String getOrgCode() {
  36. return orgCode;
  37. }
  38. public void setOrgCode(String orgCode) {
  39. this.orgCode = orgCode;
  40. }
  41. public String getPostalAddress() {
  42. return postalAddress;
  43. }
  44. public void setPostalAddress(String postalAddress) {
  45. this.postalAddress = postalAddress;
  46. }
  47. @JsonFormat(shape = Shape.STRING)
  48. public Integer getContacts() {
  49. return contacts;
  50. }
  51. public void setContacts(Integer contacts) {
  52. this.contacts = contacts;
  53. }
  54. @JsonFormat(shape = Shape.STRING)
  55. public Integer getTechnicalField1() {
  56. return technicalField1;
  57. }
  58. public void setTechnicalField1(Integer technicalField1) {
  59. this.technicalField1 = technicalField1;
  60. }
  61. @JsonFormat(shape = Shape.STRING)
  62. public Integer getTechnicalField2() {
  63. return technicalField2;
  64. }
  65. public void setTechnicalField2(Integer technicalField2) {
  66. this.technicalField2 = technicalField2;
  67. }
  68. @JsonFormat(shape = Shape.STRING)
  69. public Integer getTechnicalField3() {
  70. return technicalField3;
  71. }
  72. public void setTechnicalField3(Integer technicalField3) {
  73. this.technicalField3 = technicalField3;
  74. }
  75. public BigDecimal getBasicResearchCost() {
  76. return basicResearchCost;
  77. }
  78. public void setBasicResearchCost(BigDecimal basicResearchCost) {
  79. this.basicResearchCost = basicResearchCost;
  80. }
  81. public Integer getAccient() {
  82. return accient;
  83. }
  84. public void setAccient(Integer accient) {
  85. this.accient = accient;
  86. }
  87. }