فهرست منبع

bugFix 解决通知提醒类型不正确的问题

xiahan 1 سال پیش
والد
کامیت
956a5ce69f

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

@@ -219,7 +219,7 @@ public class TrainingSendNotifyServiceImpl implements TrainingSendNotifyService
     public void sendTrainingPlanCancelNotify(Map<String, List<String>> planAndUserIdMap) {
         planAndUserIdMap.forEach((k, v) -> {
             CXCommonUtils.sendNotify(CANCEL_TRAIN_TITLE, String.format(CANCEL_TRAIN_CONTENT, k), "",
-                    v, null, TRAINING);
+                    v, null, COURSE);
         });
     }