|
@ -39,7 +39,10 @@ public class RemindFocusWechatTask implements Runnable {
|
|
|
public void run() {
|
|
|
for (Map<String, Object> p : patients) {
|
|
|
try {
|
|
|
if (p.get("mobile") == null || StringUtils.isEmpty(p.get("mobile").toString())||Integer.parseInt(p.get("status").toString())!=1) {
|
|
|
// if (p.get("mobile") == null || StringUtils.isEmpty(p.get("mobile").toString())||Integer.parseInt(p.get("status").toString())!=1) {
|
|
|
// continue;
|
|
|
// }
|
|
|
if (p.get("mobile") == null || StringUtils.isEmpty(p.get("mobile").toString())) {
|
|
|
continue;
|
|
|
}
|
|
|
String msg = "尊敬的" + p.get("name").toString() + "," + doctor.getName() + "医生提醒您:" +
|