|
|
@@ -53,11 +53,12 @@ public class ChatMsgController extends BaseController {
|
|
|
public TableDataInfo record(@PathVariable Long toId) {
|
|
|
startPage();
|
|
|
List<ChatMsg> list = chatMsgService.selectRecordList(SecurityUtils.getUserId(), toId);
|
|
|
+ String isRead = "Y";
|
|
|
list.forEach(msg -> {
|
|
|
- if (msg.getToId().equals(SecurityUtils.getUserId()) && !"Y".equals(msg.getIsRead())) {
|
|
|
+ if (msg.getToId().equals(SecurityUtils.getUserId()) && !isRead.equals(msg.getIsRead())) {
|
|
|
ChatMsg chatMsg = new ChatMsg();
|
|
|
chatMsg.setMsgId(msg.getMsgId());
|
|
|
- chatMsg.setIsRead("Y");
|
|
|
+ chatMsg.setIsRead(isRead);
|
|
|
chatMsgService.updateChatMsg(chatMsg);
|
|
|
}
|
|
|
});
|