albertshaw 8 yıl önce
ebeveyn
işleme
1ddd3b4c98

+ 1 - 2
src/main/java/com/goafanti/common/mapper/NewsMapperExt.xml

@@ -140,8 +140,7 @@
 			a.type,
 			a.hot,
 			a.summary,
-			a.source,
-			a.content
+			a.source
 		from news a
 		join branch_office_info b
 		on a.province_id = b.province_id

+ 1 - 11
src/main/java/com/goafanti/news/bo/NewsPortalList.java

@@ -1,9 +1,7 @@
 package com.goafanti.news.bo;
 
 public class NewsPortalList extends NewsSummary {
-	private String	source;
-
-	private String	content;
+	private String source;
 
 	public String getSource() {
 		return source;
@@ -13,12 +11,4 @@ public class NewsPortalList extends NewsSummary {
 		this.source = source;
 	}
 
-	public String getContent() {
-		return content;
-	}
-
-	public void setContent(String content) {
-		this.content = content;
-	}
-
 }