|
@@ -2,6 +2,7 @@ package com.ym.mec.biz.service.impl;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.ym.mec.auth.api.entity.SysUser;
|
|
|
import com.ym.mec.biz.dal.dao.*;
|
|
|
import com.ym.mec.biz.dal.dto.*;
|
|
|
import com.ym.mec.biz.dal.entity.*;
|
|
@@ -2076,6 +2077,11 @@ public class CourseScheduleTeacherSalaryServiceImpl extends BaseServiceImpl<Long
|
|
|
if(CollectionUtils.isEmpty(teacherIds)){
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+ Map<Integer, String> userMap = new HashMap<>();
|
|
|
+ for (Integer teacherId : teacherIds) {
|
|
|
+ userMap.put(teacherId, teacherId.toString());
|
|
|
+ }
|
|
|
+ sysMessageService.batchSendMessage(MessageSenderPluginContext.MessageSender.JIGUANG, MessageTypeEnum.TEACHER_INCOME_REMIND,
|
|
|
+ userMap, null, 0, "12?", "TEACHER");
|
|
|
}
|
|
|
}
|