/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
using Newtonsoft.Json.Linq;
namespace CoreCms.Net.IServices
{
///
/// 消息发送表 服务工厂接口
///
public interface ICoreCmsMessageServices : IBaseServices
{
///
/// 站内消息
///
/// 接受者id
/// 模板编码
/// 参数
///
Task Send(int userId, string code, JObject parameters);
///
/// 消息查看,更新已读状态
///
///
///
///
Task info(int userId, int id);
///
/// 判断是否有新消息
///
///
///
Task HasNew(int userId);
}
}