| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package com.goafanti.app.bo;
- import com.goafanti.common.utils.StringUtils;
- public class ProjectBo {
- private String id;
-
- private String minLogoUrl;
-
- private String name;
-
- private String introduce;
-
- private String interestCount;
-
- private String boutique;
-
- private String projectUrl;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMinLogoUrl() {
- return minLogoUrl;
- }
- public void setMinLogoUrl(String minLogoUrl) {
- this.minLogoUrl = minLogoUrl;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getIntroduce() {
- return introduce;
- }
- public void setIntroduce(String introduce) {
- this.introduce = introduce;
- }
- public String getInterestCount() {
- return String.valueOf(Integer.valueOf(interestCount)+20);
- }
- public void setInterestCount(String interestCount) {
- this.interestCount = interestCount;
- }
- public String getBoutique() {
- return boutique;
- }
- public void setBoutique(String boutique) {
- this.boutique = boutique;
- }
- public String getProjectUrl() {
- if (StringUtils.isBlank(projectUrl)) {
- return "";
- }
- return projectUrl;
- }
- public void setProjectUrl(String projectUrl) {
- this.projectUrl = projectUrl;
- }
- }
|