|
|
|
@ -87,6 +87,11 @@ public class NoteRecordDetailDTO {
|
|
|
|
|
*/
|
|
|
|
|
private String percentage;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 提示词更新标记,用来判断是否需要重新提取三元组
|
|
|
|
|
*/
|
|
|
|
|
private Boolean isPromptUpdate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建时间
|
|
|
|
|
*/
|
|
|
|
@ -121,6 +126,7 @@ public class NoteRecordDetailDTO {
|
|
|
|
|
this.confessionEndTime = LocalDateTimeUtil.parse(noteRecordDTO.getConfessionEndTime(), DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))
|
|
|
|
|
.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"));
|
|
|
|
|
}
|
|
|
|
|
this.isPromptUpdate = noteRecordDTO.getIsPromptUpdate();
|
|
|
|
|
this.createTime = noteRecordDTO.getCreateTime();
|
|
|
|
|
this.updateTime = noteRecordDTO.getUpdateTime();
|
|
|
|
|
this.personIdCard = noteRecordDTO.getCasePersonIdCard();
|
|
|
|
|