|
@@ -54,6 +54,11 @@ public class LibraryDetail implements Serializable {
|
|
|
*/
|
|
|
private Long conceptId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 静态知识来源
|
|
|
+ */
|
|
|
+ private String source;
|
|
|
+
|
|
|
/**
|
|
|
* 提示明细标题
|
|
|
*/
|
|
@@ -133,6 +138,13 @@ public class LibraryDetail implements Serializable {
|
|
|
public void setConceptId(Long conceptId) {
|
|
|
this.conceptId = conceptId;
|
|
|
}
|
|
|
+ public String getSource() {
|
|
|
+ return source;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSource(String source) {
|
|
|
+ this.source = source;
|
|
|
+ }
|
|
|
public String getTitle() {
|
|
|
return title;
|
|
|
}
|
|
@@ -186,6 +198,7 @@ public class LibraryDetail implements Serializable {
|
|
|
", creator=" + creator +
|
|
|
", modifier=" + modifier +
|
|
|
", conceptId=" + conceptId +
|
|
|
+ ", source=" + source +
|
|
|
", title=" + title +
|
|
|
", content=" + content +
|
|
|
", text=" + text +
|