|
@ -218,7 +218,11 @@ public class StatisticsEsService {
|
|
|
|
|
|
jsonObject.put("doctorCode",code);
|
|
|
BaseDoctorDO doctorDO = doctorDao.findById(code);
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
if (doctorDO!=null){
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
}else {
|
|
|
jsonObject.put("doctorJob",null);
|
|
|
}
|
|
|
jsonObject.put("doctorName",saveModel.getDoctorName());
|
|
|
jsonObject.put("specialist",saveModel.getResult1());
|
|
|
specialist = saveModel.getResult1();
|
|
@ -252,7 +256,12 @@ public class StatisticsEsService {
|
|
|
jsonObject.put("name",dictHospitalDeptDO.getName());
|
|
|
}
|
|
|
BaseDoctorDO doctorDO = doctorDao.findById(code);
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
if (doctorDO!=null){
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
}else {
|
|
|
jsonObject.put("doctorJob",null);
|
|
|
}
|
|
|
|
|
|
jsonObject.put("doctorCode",code);
|
|
|
jsonObject.put("doctorName",saveModel.getDoctorName());
|
|
|
jsonObject.put("synegy",saveModel.getResult1());
|
|
@ -285,7 +294,11 @@ public class StatisticsEsService {
|
|
|
jsonObject.put("name",dictHospitalDeptDO.getName());
|
|
|
}
|
|
|
BaseDoctorDO doctorDO = doctorDao.findById(code);
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
if (doctorDO!=null){
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
}else {
|
|
|
jsonObject.put("doctorJob",null);
|
|
|
}
|
|
|
jsonObject.put("doctorCode",code);
|
|
|
jsonObject.put("doctorName",saveModel.getDoctorName());
|
|
|
jsonObject.put("topic",saveModel.getResult1());
|
|
@ -319,7 +332,11 @@ public class StatisticsEsService {
|
|
|
}
|
|
|
jsonObject.put("doctorCode",code);
|
|
|
BaseDoctorDO doctorDO = doctorDao.findById(code);
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
if (doctorDO!=null){
|
|
|
jsonObject.put("doctorJob",doctorDO.getJobTitleName());
|
|
|
}else {
|
|
|
jsonObject.put("doctorJob",null);
|
|
|
}
|
|
|
jsonObject.put("doctorName",saveModel.getDoctorName());
|
|
|
jsonObject.put("vedio",saveModel.getResult1());
|
|
|
vedio = saveModel.getResult1();
|