|
|
@@ -70,6 +70,11 @@ public abstract class AbstractQuestionVO {
|
|
|
*/
|
|
|
protected List<String> knowledgeId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 保留字段;对于更新题目的话,则存储的是中间状态题目的id
|
|
|
+ */
|
|
|
+ protected String remark;
|
|
|
+
|
|
|
/**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
@@ -152,6 +157,14 @@ public abstract class AbstractQuestionVO {
|
|
|
this.knowledgeId = knowledgeId;
|
|
|
}
|
|
|
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
public Instant getCreatedTime() {
|
|
|
return createdTime;
|
|
|
}
|
|
|
@@ -196,10 +209,10 @@ public abstract class AbstractQuestionVO {
|
|
|
public String toString() {
|
|
|
return "AbstractQuestionVO{" +
|
|
|
"id='" + id + '\'' +
|
|
|
+ ", type=" + type +
|
|
|
", state=" + state +
|
|
|
", checkedUserId=" + checkedUserId +
|
|
|
", savedUserId=" + savedUserId +
|
|
|
- ", type=" + type +
|
|
|
", title='" + title + '\'' +
|
|
|
", stem='" + stem + '\'' +
|
|
|
", analysis='" + analysis + '\'' +
|
|
|
@@ -207,6 +220,7 @@ public abstract class AbstractQuestionVO {
|
|
|
", keyPoints='" + keyPoints + '\'' +
|
|
|
", tags=" + tags +
|
|
|
", knowledgeId=" + knowledgeId +
|
|
|
+ ", remark='" + remark + '\'' +
|
|
|
", createdTime=" + createdTime +
|
|
|
", lastModifiedTime=" + lastModifiedTime +
|
|
|
'}';
|