|
|
@@ -221,9 +221,10 @@ public class AsyncUtils {
|
|
|
for (String s : list) {
|
|
|
notes.add(new Notice(UUID.randomUUID().toString(), new Date(), 0, s,
|
|
|
noticeType, str));
|
|
|
- emails=emails.append("s").append(",");
|
|
|
+ emails=emails.append(s).append(",");
|
|
|
}
|
|
|
noticeMapper.insertBatch(notes);
|
|
|
+ System.out.println(emails.substring(0,emails.length()-1));
|
|
|
send(new EmailBo(NoticeStatus.getValueByCode(noticeType),emails.substring(0,emails.length()-1),str));
|
|
|
}
|
|
|
}
|