|
@@ -4,8 +4,8 @@ import com.lantone.qc.pub.model.doc.NoticeOfConversationDoc;
|
|
|
import com.lantone.qc.pub.model.vo.MedrecVo;
|
|
|
import com.lantone.qc.trans.ModelDocTrans;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* @Description: 谈话告知书
|
|
@@ -14,8 +14,10 @@ import java.util.List;
|
|
|
*/
|
|
|
public class TaizhouNoticeOfConversationDocTrans extends ModelDocTrans {
|
|
|
@Override
|
|
|
- public List<NoticeOfConversationDoc> extract(MedrecVo medrecVo) {
|
|
|
- List<NoticeOfConversationDoc> noticeOfConversationDocs = new ArrayList<>();
|
|
|
- return noticeOfConversationDocs;
|
|
|
+ public NoticeOfConversationDoc extract(MedrecVo medrecVo) {
|
|
|
+ NoticeOfConversationDoc noticeOfConversationDoc = new NoticeOfConversationDoc();
|
|
|
+ Map<String, List<String>> map = (Map)medrecVo.getContent().get("content");
|
|
|
+ noticeOfConversationDoc.getStructureMap().put("","");
|
|
|
+ return noticeOfConversationDoc;
|
|
|
}
|
|
|
}
|