|
@@ -11,7 +11,7 @@ import com.thinkgem.jeesite.common.persistence.DataEntity;
|
|
|
* @version 2016-06-27
|
|
|
*/
|
|
|
public class Info extends DataEntity<Info> {
|
|
|
-
|
|
|
+
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
private InfoType infoType; // 信息分类
|
|
|
private String title; // 标题
|
|
@@ -44,6 +44,7 @@ public class Info extends DataEntity<Info> {
|
|
|
private Integer auditFlag; // 是否审核保存,1是
|
|
|
private String relatedLabels; //关联标签库
|
|
|
private String labelIds;
|
|
|
+ private String isRelevance;
|
|
|
|
|
|
public Info() {
|
|
|
super();
|
|
@@ -80,11 +81,11 @@ public class Info extends DataEntity<Info> {
|
|
|
public InfoType getInfoType() {
|
|
|
return infoType;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public void setInfoType(InfoType infoType) {
|
|
|
this.infoType = infoType;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getTitle() {
|
|
|
return title;
|
|
|
}
|
|
@@ -92,7 +93,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setTitle(String title) {
|
|
|
this.title = title;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getLabel() {
|
|
|
return label;
|
|
|
}
|
|
@@ -100,7 +101,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setLabel(String label) {
|
|
|
this.label = label;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getPublisher() {
|
|
|
return publisher;
|
|
|
}
|
|
@@ -108,7 +109,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setPublisher(String publisher) {
|
|
|
this.publisher = publisher;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getSource() {
|
|
|
return source;
|
|
|
}
|
|
@@ -132,7 +133,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setRecommendContent(String recommendContent) {
|
|
|
this.recommendContent = recommendContent;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getInfoContent() {
|
|
|
return infoContent;
|
|
|
}
|
|
@@ -140,7 +141,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setInfoContent(String infoContent) {
|
|
|
this.infoContent = infoContent;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getGuidanceImage() {
|
|
|
return guidanceImage;
|
|
|
}
|
|
@@ -165,7 +166,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setPubdate(Date pubdate) {
|
|
|
this.pubdate = pubdate;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getRecommendStatus() {
|
|
|
return recommendStatus;
|
|
|
}
|
|
@@ -173,7 +174,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setRecommendStatus(String recommendStatus) {
|
|
|
this.recommendStatus = recommendStatus;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getBasePraise() {
|
|
|
return basePraise;
|
|
|
}
|
|
@@ -181,7 +182,7 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setBasePraise(Long basePraise) {
|
|
|
this.basePraise = basePraise;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getRealPraise() {
|
|
|
return realPraise;
|
|
|
}
|
|
@@ -301,4 +302,12 @@ public class Info extends DataEntity<Info> {
|
|
|
public void setOnlineStatus(Integer onlineStatus) {
|
|
|
this.onlineStatus = onlineStatus;
|
|
|
}
|
|
|
-}
|
|
|
+
|
|
|
+ public String getIsRelevance() {
|
|
|
+ return isRelevance;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsRelevance(String isRelevance) {
|
|
|
+ this.isRelevance = isRelevance;
|
|
|
+ }
|
|
|
+}
|