|
@@ -76,7 +76,13 @@ public class MsgSysMonitorNoticeServiceImpl extends ServiceImpl<MsgSysMonitorNot
|
|
|
save(saveInfo);
|
|
|
Long userId = save.getUserId();
|
|
|
if (userId != null) {
|
|
|
+ String channelType = save.getChannelType();
|
|
|
+
|
|
|
MsgUserMessageDto.Save mum = new MsgUserMessageDto.Save();
|
|
|
+ if ("ORDER_CUT".equals(channelType)) {
|
|
|
+ //补扣设置为已读
|
|
|
+ mum.setReadState("2");
|
|
|
+ }
|
|
|
mum.setMsgId(saveInfo.getMsgId());
|
|
|
mum.setMsgType(saveInfo.getMsgType());
|
|
|
mum.setPriority(saveInfo.getPriority());
|