消息通知

This commit is contained in:
2025-08-04 15:42:20 +08:00
parent 5107f7e0b4
commit cedfd4096a
2 changed files with 21 additions and 22 deletions

View File

@@ -139,7 +139,12 @@ public class NotificationManagementServiceImpl extends ServiceImpl<NotificationM
.collect(Collectors.toList());
// 批量插入
return notificationManagementMapper.batchInsertNotification(notifications);
int i= notificationManagementMapper.batchInsertNotification(notifications);
if (i > 0){
// todo 给这些学生发送企业微信消息
// 先给20200016
}
return i;
}
/**