更新IM相关

This commit is contained in:
Chopper 2022-02-21 22:59:55 +08:00
parent d95fce2efb
commit 961ac20213
2 changed files with 1 additions and 5 deletions

View File

@ -39,7 +39,7 @@ public class IMController {
try {
Setting imSettingVal = settingService.get(SettingEnum.IM_SETTING.name());
ImSetting imSetting = JSONUtil.toBean(imSettingVal.getSettingValue(), ImSetting.class);
imUrl = imSetting.getHttpUrl() + "?tenant_id=" + imSetting.getTenantId()+"&merchant_euid=";
imUrl = imSetting.getHttpUrl();
} catch (Exception e) {
throw new ServiceException(ResultCode.PLATFORM_NOT_SUPPORTED_IM);
}

View File

@ -19,8 +19,4 @@ public class ImSetting implements Serializable {
private String httpUrl;
@ApiModelProperty(value = "平台ID")
private String tenantId;
}