/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* 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);
}
}