|
@ -49,7 +49,7 @@ public class PatientSosContactsJob implements Job {
|
|
|
List<Map<String,Object>> sims = jdbcTemplate.queryForList(sql);
|
|
|
List<PatientSosContactsDO> modify = new ArrayList<>();
|
|
|
for(Map<String,Object> tmp:sims){//添加白名单,添加设备联系人
|
|
|
String sim = tmp.get("sim").toString() ;
|
|
|
String sim = tmp.get("sim")==null?null:tmp.get("sim").toString() ;
|
|
|
String patient = tmp.get("patient").toString() ;
|
|
|
String device_sn = tmp.get("device_sn").toString() ;
|
|
|
String category_code = tmp.get("category_code").toString() ;
|