diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SYS_ReceiveMessageApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SYS_ReceiveMessageApi.cs index 53ac50bb5..4234ff76e 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SYS_ReceiveMessageApi.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SYS_ReceiveMessageApi.cs @@ -26,6 +26,7 @@ namespace Learun.Application.WebApi Get["/form"] = GetForm; Post["/delete"] = DeleteForm; Post["/save"] = SaveForm; + Post["/read"] = NewsRead; } #region  获取数据 @@ -80,7 +81,16 @@ namespace Learun.Application.WebApi }; return Success(jsonData); } - + /// + /// 查阅收件箱 + /// + /// + public Response NewsRead(dynamic _) + { + ReqFormEntity parameter = this.GetReqData(); + sYS_ReceiveMessageIBLL.Read(parameter.keyValue); + return Success("查阅成功!"); + } #endregion #region  提交数据