From 4f0c5307c697114eb965ac09c5021e109440960f Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期五, 15 三月 2024 15:30:56 +0800 Subject: [PATCH] 增加导出功能权限控制 --- WebAPI/Controllers/LMESController.cs | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/WebAPI/Controllers/LMESController.cs b/WebAPI/Controllers/LMESController.cs index 85f99bd..21e9df8 100644 --- a/WebAPI/Controllers/LMESController.cs +++ b/WebAPI/Controllers/LMESController.cs @@ -2870,6 +2870,44 @@ #endregion + #region 鎶ヨ〃鏌ョ湅鏉冮檺鎺у埗 + /// <summary> + ///鍙傛暟锛歴tring HInterID銆� + ///杩斿洖鍊硷細object銆� + /// </summary> + [Route("LMES/getReportByModRightNameCheck")] + [HttpGet] + public object getReportByModRightNameCheck(string ModRightNameCheck, string user) + { + try + { + string s = ""; + //鏌ョ湅鏉冮檺 + if (!DBUtility.ClsPub.Security_Log(ModRightNameCheck, 1, false, user)) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = ""; + objJsonResult.data = null; + return objJsonResult; + } + + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = ""; + objJsonResult.data = null; + return objJsonResult; + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "Exception锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + #endregion } } \ No newline at end of file -- Gitblit v1.9.1