|
@@ -1245,6 +1245,18 @@ public class ImGroupServiceImpl extends ServiceImpl<ImGroupDao, ImGroup> impleme
|
|
|
return rtcRoomPluginContext.getPluginService(serviceProvider);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public Boolean updateImGroup(ImGroup imGroup) {
|
|
|
+
|
|
|
+ this.updateById(imGroup);
|
|
|
+ try {
|
|
|
+ imGroupCoreService.modifyGroupInfo(imGroup.getId(),imGroup.getName(),imGroup.getImg());
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("修改群组信息失败",e);
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
private void groupTransfer(List<ImGroup> records) {
|
|
|
String fansIcon = sysConfigService.findConfigValue(SysConfigConstant.ICON_FANS_GROUP_DEFAULT);
|