|
@@ -49,7 +49,7 @@ public abstract class BaseQuestionVO {
|
|
|
this.keyPoints = questionVO.getKeyPoints();
|
|
this.keyPoints = questionVO.getKeyPoints();
|
|
|
this.tags = questionVO.getTags();
|
|
this.tags = questionVO.getTags();
|
|
|
this.knowledgeId = questionVO.getKnowledgeId();
|
|
this.knowledgeId = questionVO.getKnowledgeId();
|
|
|
- this.lastModified = Date.from(questionVO.getLastModifiedTime());
|
|
|
|
|
|
|
+ this.lastModified = questionVO.getLastModifiedTime()==null?null:Date.from(questionVO.getLastModifiedTime());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|