OrganizationProperties.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package com.goafanti.common.model;
  2. public class OrganizationProperties {
  3. private String id;
  4. private String oid;
  5. /**
  6. * 企业资质
  7. */
  8. private String qualification;
  9. /**
  10. * 年营业额
  11. */
  12. private Integer turnover;
  13. /**
  14. * 院校属性
  15. */
  16. private String collegeAttribute;
  17. /**
  18. * 院校创办时间
  19. */
  20. private String collegeEstablishTime;
  21. /**
  22. * 院士
  23. */
  24. private Integer academician;
  25. /**
  26. * 博士生导师
  27. */
  28. private Integer doctoralTutor;
  29. /**
  30. * 硕士生导师
  31. */
  32. private Integer masterTutor;
  33. /**
  34. * 其他专家
  35. */
  36. private Integer otherExpert;
  37. /**
  38. * 国家重点实验室
  39. */
  40. private Integer nationalLab;
  41. /**
  42. * 教育部重点实验室
  43. */
  44. private Integer educationLab;
  45. /**
  46. * 企业共建研究中心
  47. */
  48. private Integer enterpriseCenter;
  49. /**
  50. * 其他研究中心
  51. */
  52. private Integer otherCenter;
  53. /**
  54. * 研究机构创办时间
  55. */
  56. private String institutionEstablishTime;
  57. public String getId() {
  58. return id;
  59. }
  60. public void setId(String id) {
  61. this.id = id;
  62. }
  63. public String getOid() {
  64. return oid;
  65. }
  66. public void setOid(String oid) {
  67. this.oid = oid;
  68. }
  69. public String getQualification() {
  70. return qualification;
  71. }
  72. public void setQualification(String qualification) {
  73. this.qualification = qualification;
  74. }
  75. public Integer getTurnover() {
  76. return turnover;
  77. }
  78. public void setTurnover(Integer turnover) {
  79. this.turnover = turnover;
  80. }
  81. public String getCollegeAttribute() {
  82. return collegeAttribute;
  83. }
  84. public void setCollegeAttribute(String collegeAttribute) {
  85. this.collegeAttribute = collegeAttribute;
  86. }
  87. public String getCollegeEstablishTime() {
  88. return collegeEstablishTime;
  89. }
  90. public void setCollegeEstablishTime(String collegeEstablishTime) {
  91. this.collegeEstablishTime = collegeEstablishTime;
  92. }
  93. public Integer getAcademician() {
  94. return academician;
  95. }
  96. public void setAcademician(Integer academician) {
  97. this.academician = academician;
  98. }
  99. public Integer getDoctoralTutor() {
  100. return doctoralTutor;
  101. }
  102. public void setDoctoralTutor(Integer doctoralTutor) {
  103. this.doctoralTutor = doctoralTutor;
  104. }
  105. public Integer getMasterTutor() {
  106. return masterTutor;
  107. }
  108. public void setMasterTutor(Integer masterTutor) {
  109. this.masterTutor = masterTutor;
  110. }
  111. public Integer getOtherExpert() {
  112. return otherExpert;
  113. }
  114. public void setOtherExpert(Integer otherExpert) {
  115. this.otherExpert = otherExpert;
  116. }
  117. public Integer getNationalLab() {
  118. return nationalLab;
  119. }
  120. public void setNationalLab(Integer nationalLab) {
  121. this.nationalLab = nationalLab;
  122. }
  123. public Integer getEducationLab() {
  124. return educationLab;
  125. }
  126. public void setEducationLab(Integer educationLab) {
  127. this.educationLab = educationLab;
  128. }
  129. public Integer getEnterpriseCenter() {
  130. return enterpriseCenter;
  131. }
  132. public void setEnterpriseCenter(Integer enterpriseCenter) {
  133. this.enterpriseCenter = enterpriseCenter;
  134. }
  135. public Integer getOtherCenter() {
  136. return otherCenter;
  137. }
  138. public void setOtherCenter(Integer otherCenter) {
  139. this.otherCenter = otherCenter;
  140. }
  141. public String getInstitutionEstablishTime() {
  142. return institutionEstablishTime;
  143. }
  144. public void setInstitutionEstablishTime(String institutionEstablishTime) {
  145. this.institutionEstablishTime = institutionEstablishTime;
  146. }
  147. }