package com.goafanti.portal.bo; import java.math.BigDecimal; import java.util.Date; import java.util.List; import org.apache.commons.lang3.time.DateFormatUtils; import com.goafanti.common.constant.AFTConstants; public class AchievementPortalDetailBo { private String id; private String name; private String keyword; private String introduction; private Integer maturity; private BigDecimal transferPrice; private String patentCase; private Integer fieldA; private Integer fieldB; private Integer fieldC; private Date releaseDate; private String province; private String city; private String technicalPictureUrl; private List pictureList; private List keywordList; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getKeyword() { return keyword; } public void setKeyword(String keyword) { this.keyword = keyword; } public String getIntroduction() { return introduction; } public void setIntroduction(String introduction) { this.introduction = introduction; } public Integer getMaturity() { return maturity; } public void setMaturity(Integer maturity) { this.maturity = maturity; } public BigDecimal getTransferPrice() { return transferPrice; } public void setTransferPrice(BigDecimal transferPrice) { this.transferPrice = transferPrice; } public String getPatentCase() { return patentCase; } public void setPatentCase(String patentCase) { this.patentCase = patentCase; } public Integer getFieldA() { return fieldA; } public void setFieldA(Integer fieldA) { this.fieldA = fieldA; } public Integer getFieldB() { return fieldB; } public void setFieldB(Integer fieldB) { this.fieldB = fieldB; } public Integer getFieldC() { return fieldC; } public void setFieldC(Integer fieldC) { this.fieldC = fieldC; } public Date getReleaseDate() { return releaseDate; } public void setReleaseDate(Date releaseDate) { this.releaseDate = releaseDate; } public String getTechnicalPictureUrl() { return technicalPictureUrl; } public void setTechnicalPictureUrl(String technicalPictureUrl) { this.technicalPictureUrl = technicalPictureUrl; } public List getPictureList() { return pictureList; } public void setPictureList(List pictureList) { this.pictureList = pictureList; } public List getKeywordList() { return keywordList; } public void setKeywordList(List keywordList) { this.keywordList = keywordList; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getReleaseDateFormattedDate() { if (this.releaseDate == null) { return null; } else { return DateFormatUtils.format(this.getReleaseDate(), AFTConstants.YYYYMMDD); } } public void setReleaseDateFormattedDate(String releaseDateFormattedDate) { } }