12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.Tools;
- namespace GxPress.Common.Address
- {
- public static class Address
- {
-
-
-
-
- public static string GetImChatMassageUrl(string times)
- {
- var imServiceUrl= ConfigHelper.GetValue("ServiceAddress:ImUrl");
- string imChatMassageUrl = $"{imServiceUrl}/chatmessages/{times}";
- return imChatMassageUrl;
- }
- }
- }
|