| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- package com.goafanti.portal.bo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonFormat.Shape;
- public class AchievementDetailBo extends AchievementSearchListBo {
- /**
- * 摘要
- */
- private String summary;
- /**
- * 成果简介
- */
- private String introduction;
- /**
- * 技术图片
- */
- private String technicalPictureUrl;
- /**
- * 成熟度资料--图片URL
- */
- private String maturityPictureUrl;
- /**
- * 成熟度资料--文本文件URL
- */
- private String maturityTextFileUrl;
- /**
- * 成熟度资料--视屏URL
- */
- private String maturityVideoUrl;
- /**
- * 创新度(0--行业先进,1--行业领先,2--国内先进,3--国内领先,4--国际先进,5--国际领先)
- */
- private Integer innovation;
- /**
- * 合作方式(0--技术转让,1--授权生产)
- */
- private Integer cooperationMode;
- /**
- * 议价方式(0--面议,1--定价)
- */
- private Integer bargainingMode;
- /**
- * 技术场景
- */
- private String technicalScene;
- /**
- * 技术突破
- */
- private String breakthrough;
- /**
- * 专利情况
- */
- private String patentCase;
- /**
- * 获奖情况
- */
- private String awards;
-
- /**
- * 技术团队情况
- */
- private String teamDes;
-
- /**
- * 技术参数
- */
- private String parameter;
-
- /**
- * 技术方案URL
- */
- private String techPlanUrl;
-
- /**
- * 商业计划书URL
- */
- private String businessPlanUrl;
-
- /**
- * 关注ID
- */
- private String achievementInterestId;
-
- public String getAchievementInterestId() {
- return achievementInterestId;
- }
- public void setAchievementInterestId(String achievementInterestId) {
- this.achievementInterestId = achievementInterestId;
- }
- public String getSummary() {
- return summary;
- }
- public void setSummary(String summary) {
- this.summary = summary;
- }
- public String getIntroduction() {
- return introduction;
- }
- public void setIntroduction(String introduction) {
- this.introduction = introduction;
- }
- public String getTechnicalPictureUrl() {
- return technicalPictureUrl;
- }
- public void setTechnicalPictureUrl(String technicalPictureUrl) {
- this.technicalPictureUrl = technicalPictureUrl;
- }
- public String getMaturityPictureUrl() {
- return maturityPictureUrl;
- }
- public void setMaturityPictureUrl(String maturityPictureUrl) {
- this.maturityPictureUrl = maturityPictureUrl;
- }
- public String getMaturityTextFileUrl() {
- return maturityTextFileUrl;
- }
- public void setMaturityTextFileUrl(String maturityTextFileUrl) {
- this.maturityTextFileUrl = maturityTextFileUrl;
- }
- public String getMaturityVideoUrl() {
- return maturityVideoUrl;
- }
- public void setMaturityVideoUrl(String maturityVideoUrl) {
- this.maturityVideoUrl = maturityVideoUrl;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getInnovation() {
- return innovation;
- }
- public void setInnovation(Integer innovation) {
- this.innovation = innovation;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getCooperationMode() {
- return cooperationMode;
- }
- public void setCooperationMode(Integer cooperationMode) {
- this.cooperationMode = cooperationMode;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getBargainingMode() {
- return bargainingMode;
- }
- public void setBargainingMode(Integer bargainingMode) {
- this.bargainingMode = bargainingMode;
- }
- public String getTechnicalScene() {
- return technicalScene;
- }
- public void setTechnicalScene(String technicalScene) {
- this.technicalScene = technicalScene;
- }
- public String getBreakthrough() {
- return breakthrough;
- }
- public void setBreakthrough(String breakthrough) {
- this.breakthrough = breakthrough;
- }
- public String getPatentCase() {
- return patentCase;
- }
- public void setPatentCase(String patentCase) {
- this.patentCase = patentCase;
- }
- public String getAwards() {
- return awards;
- }
- public void setAwards(String awards) {
- this.awards = awards;
- }
- public String getTeamDes() {
- return teamDes;
- }
- public void setTeamDes(String teamDes) {
- this.teamDes = teamDes;
- }
- public String getParameter() {
- return parameter;
- }
- public void setParameter(String parameter) {
- this.parameter = parameter;
- }
- public String getTechPlanUrl() {
- return techPlanUrl;
- }
- public void setTechPlanUrl(String techPlanUrl) {
- this.techPlanUrl = techPlanUrl;
- }
- public String getBusinessPlanUrl() {
- return businessPlanUrl;
- }
- public void setBusinessPlanUrl(String businessPlanUrl) {
- this.businessPlanUrl = businessPlanUrl;
- }
-
-
- }
|