16 lines
403 B
C#
16 lines
403 B
C#
using JNPF.Message.Entitys.Entity;
|
||
|
||
namespace JNPF.Message.Interfaces.Message;
|
||
|
||
/// <summary>
|
||
/// 系统消息
|
||
/// 版 本:V3.2
|
||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||
/// 日 期:2021-06-01.
|
||
/// </summary>
|
||
public interface IShortLinkService
|
||
{
|
||
Task<MessageShortLinkEntity> Create(string userId, string bodyText);
|
||
|
||
string CreateToken(string userId);
|
||
} |