Browse Source

feature 消息提醒增加planId

xiahan 1 year ago
parent
commit
282bfe5cd2

+ 1 - 1
rw-training/training-common/src/main/java/com/rongwei/trainingcommon/sys/service/impl/TrainingSendNotifyServiceImpl.java

@@ -151,7 +151,7 @@ public class TrainingSendNotifyServiceImpl implements TrainingSendNotifyService
         collect.forEach((k,v)->{
             EmpExamDo empExamDo = v.get(0);
             CXCommonUtils.sendNotify(CUT_OFF_PAPER_TITLE, String.format(CUT_OFF_PAPER_CONTENT, empExamDo.getPapername(),empExamDo.getExamdeadtime()), "",
-                    v.stream().map(EmpExamDo::getEmpid).distinct().collect(Collectors.toList()), null, TRAINING);
+                    v.stream().map(EmpExamDo::getEmpid).distinct().collect(Collectors.toList()), empExamDo.getPlanid(), TRAINING);
         });
 
         return R.ok();