AchievementDetailBo.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. package com.goafanti.portal.bo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  4. public class AchievementDetailBo extends AchievementSearchListBo {
  5. /**
  6. * 摘要
  7. */
  8. private String summary;
  9. /**
  10. * 成果简介
  11. */
  12. private String introduction;
  13. /**
  14. * 技术图片
  15. */
  16. private String technicalPictureUrl;
  17. /**
  18. * 成熟度资料--图片URL
  19. */
  20. private String maturityPictureUrl;
  21. /**
  22. * 成熟度资料--文本文件URL
  23. */
  24. private String maturityTextFileUrl;
  25. /**
  26. * 成熟度资料--视屏URL
  27. */
  28. private String maturityVideoUrl;
  29. /**
  30. * 创新度(0--行业先进,1--行业领先,2--国内先进,3--国内领先,4--国际先进,5--国际领先)
  31. */
  32. private Integer innovation;
  33. /**
  34. * 合作方式(0--技术转让,1--授权生产)
  35. */
  36. private Integer cooperationMode;
  37. /**
  38. * 议价方式(0--面议,1--定价)
  39. */
  40. private Integer bargainingMode;
  41. /**
  42. * 技术场景
  43. */
  44. private String technicalScene;
  45. /**
  46. * 技术突破
  47. */
  48. private String breakthrough;
  49. /**
  50. * 专利情况
  51. */
  52. private String patentCase;
  53. /**
  54. * 获奖情况
  55. */
  56. private String awards;
  57. /**
  58. * 技术团队情况
  59. */
  60. private String teamDes;
  61. /**
  62. * 技术参数
  63. */
  64. private String parameter;
  65. /**
  66. * 技术方案URL
  67. */
  68. private String techPlanUrl;
  69. /**
  70. * 商业计划书URL
  71. */
  72. private String businessPlanUrl;
  73. /**
  74. * 关注ID
  75. */
  76. private String achievementInterestId;
  77. public String getAchievementInterestId() {
  78. return achievementInterestId;
  79. }
  80. public void setAchievementInterestId(String achievementInterestId) {
  81. this.achievementInterestId = achievementInterestId;
  82. }
  83. public String getSummary() {
  84. return summary;
  85. }
  86. public void setSummary(String summary) {
  87. this.summary = summary;
  88. }
  89. public String getIntroduction() {
  90. return introduction;
  91. }
  92. public void setIntroduction(String introduction) {
  93. this.introduction = introduction;
  94. }
  95. public String getTechnicalPictureUrl() {
  96. return technicalPictureUrl;
  97. }
  98. public void setTechnicalPictureUrl(String technicalPictureUrl) {
  99. this.technicalPictureUrl = technicalPictureUrl;
  100. }
  101. public String getMaturityPictureUrl() {
  102. return maturityPictureUrl;
  103. }
  104. public void setMaturityPictureUrl(String maturityPictureUrl) {
  105. this.maturityPictureUrl = maturityPictureUrl;
  106. }
  107. public String getMaturityTextFileUrl() {
  108. return maturityTextFileUrl;
  109. }
  110. public void setMaturityTextFileUrl(String maturityTextFileUrl) {
  111. this.maturityTextFileUrl = maturityTextFileUrl;
  112. }
  113. public String getMaturityVideoUrl() {
  114. return maturityVideoUrl;
  115. }
  116. public void setMaturityVideoUrl(String maturityVideoUrl) {
  117. this.maturityVideoUrl = maturityVideoUrl;
  118. }
  119. @JsonFormat(shape = Shape.STRING)
  120. public Integer getInnovation() {
  121. return innovation;
  122. }
  123. public void setInnovation(Integer innovation) {
  124. this.innovation = innovation;
  125. }
  126. @JsonFormat(shape = Shape.STRING)
  127. public Integer getCooperationMode() {
  128. return cooperationMode;
  129. }
  130. public void setCooperationMode(Integer cooperationMode) {
  131. this.cooperationMode = cooperationMode;
  132. }
  133. @JsonFormat(shape = Shape.STRING)
  134. public Integer getBargainingMode() {
  135. return bargainingMode;
  136. }
  137. public void setBargainingMode(Integer bargainingMode) {
  138. this.bargainingMode = bargainingMode;
  139. }
  140. public String getTechnicalScene() {
  141. return technicalScene;
  142. }
  143. public void setTechnicalScene(String technicalScene) {
  144. this.technicalScene = technicalScene;
  145. }
  146. public String getBreakthrough() {
  147. return breakthrough;
  148. }
  149. public void setBreakthrough(String breakthrough) {
  150. this.breakthrough = breakthrough;
  151. }
  152. public String getPatentCase() {
  153. return patentCase;
  154. }
  155. public void setPatentCase(String patentCase) {
  156. this.patentCase = patentCase;
  157. }
  158. public String getAwards() {
  159. return awards;
  160. }
  161. public void setAwards(String awards) {
  162. this.awards = awards;
  163. }
  164. public String getTeamDes() {
  165. return teamDes;
  166. }
  167. public void setTeamDes(String teamDes) {
  168. this.teamDes = teamDes;
  169. }
  170. public String getParameter() {
  171. return parameter;
  172. }
  173. public void setParameter(String parameter) {
  174. this.parameter = parameter;
  175. }
  176. public String getTechPlanUrl() {
  177. return techPlanUrl;
  178. }
  179. public void setTechPlanUrl(String techPlanUrl) {
  180. this.techPlanUrl = techPlanUrl;
  181. }
  182. public String getBusinessPlanUrl() {
  183. return businessPlanUrl;
  184. }
  185. public void setBusinessPlanUrl(String businessPlanUrl) {
  186. this.businessPlanUrl = businessPlanUrl;
  187. }
  188. }