|
@@ -62,14 +62,14 @@ public class DataTask implements ITask {
|
|
|
//临床诊断
|
|
|
params.put("clin_diag", record.getStr("Diagnosis")==null?"":record.getStr("Diagnosis"));
|
|
|
//症状
|
|
|
- params.put("clin_symp", record.getStr("Symptom")==null?"":record.getStr("Symptom"));
|
|
|
+ params.put("clin_symp", "");
|
|
|
//patient_infos表
|
|
|
//患者姓名
|
|
|
params.put("name", record.getStr("PatCName"));
|
|
|
//患者手机号
|
|
|
params.put("phone", record.getStr("Phone")==null?"":record.getStr("Phone"));
|
|
|
//患者身份证号
|
|
|
- params.put("card_num", record.getStr("IDCard")==null?"":record.getStr("IDCard"));
|
|
|
+ params.put("card_num", record.getStr("PatAge")==null?"":record.getStr("PatAge"));
|
|
|
//检查结果1阴2阳
|
|
|
params.put("report_result", record.getStr("Result").contains("1")?"2":"1");
|
|
|
//门诊号住院号
|