|
@@ -30,6 +30,7 @@ public class ChatServiceImpl implements ChatService {
|
|
|
chatDO.setUpdater(SecurityFrameworkUtils.getLoginUserId());
|
|
|
chatDO.setCreateTime(LocalDateTime.now());
|
|
|
chatDO.setUpdateTime(LocalDateTime.now());
|
|
|
+ chatDO.setCreator(SecurityFrameworkUtils.getLoginUserId());
|
|
|
chatMapper.insert(chatDO);
|
|
|
return chatDO.getId();
|
|
|
}
|