|
|
@ -50,9 +50,15 @@ public class ExportService implements IExportService{ |
|
|
|
//基本信息查询患者年龄
|
|
|
|
FirstAid firstAid = firstAidDao.selectByPrimaryKey(param.getFirstAidId()); |
|
|
|
if (ObjectUtil.isNotNull(firstAid)) { |
|
|
|
textMap.put("age",String.valueOf(firstAid.getAge())); |
|
|
|
textMap.put("CJBL-NAME",firstAid.getName()); |
|
|
|
textMap.put("CJBL-SEX",firstAid.getGender()==1?"男":"女"); |
|
|
|
if (ObjectUtil.isNotNull(firstAid.getAge())) { |
|
|
|
textMap.put("age",String.valueOf(firstAid.getAge())); |
|
|
|
} |
|
|
|
if (StrUtil.isNotBlank(firstAid.getName())) { |
|
|
|
textMap.put("CJBL-NAME",firstAid.getName()); |
|
|
|
} |
|
|
|
if (ObjectUtil.isNotNull(firstAid.getGender())) { |
|
|
|
textMap.put("CJBL-SEX",firstAid.getGender()==1?"男":"女"); |
|
|
|
} |
|
|
|
} |
|
|
|
//当前时间
|
|
|
|
// long currentTime = System.currentTimeMillis();
|
|
|
|