Browse Source

app2.0 收件箱查阅

临城职教中职
ndbs 2 years ago
parent
commit
4e3fc0a70c
1 changed files with 11 additions and 1 deletions
  1. +11
    -1
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SYS_ReceiveMessageApi.cs

+ 11
- 1
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SYS_ReceiveMessageApi.cs View File

@@ -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);
}

/// <summary>
/// 查阅收件箱
/// <summary>
/// <returns></returns>
public Response NewsRead(dynamic _)
{
ReqFormEntity parameter = this.GetReqData<ReqFormEntity>();
sYS_ReceiveMessageIBLL.Read(parameter.keyValue);
return Success("查阅成功!");
}
#endregion

#region  提交数据


Loading…
Cancel
Save