From 4e3fc0a70c7f292f313a54ddb3c20c259ed5d3d6 Mon Sep 17 00:00:00 2001 From: ndbs Date: Mon, 29 Aug 2022 19:13:53 +0800 Subject: [PATCH] =?UTF-8?q?app2.0=20=E6=94=B6=E4=BB=B6=E7=AE=B1=E6=9F=A5?= =?UTF-8?q?=E9=98=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Modules/SYS_ReceiveMessageApi.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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  提交数据