Address.cs 559 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using GxPress.Common.Tools;
  5. namespace GxPress.Common.Address
  6. {
  7. public static class Address
  8. {
  9. /// <summary>
  10. /// 获取环信历史聊天记录
  11. /// </summary>
  12. /// <returns></returns>
  13. public static string GetImChatMassageUrl(string times)
  14. {
  15. var imServiceUrl= ConfigHelper.GetValue("ServiceAddress:ImUrl");
  16. string imChatMassageUrl = $"{imServiceUrl}/chatmessages/{times}";
  17. return imChatMassageUrl;
  18. }
  19. }
  20. }