From 16593a5ca1e6b7f84a3e1aa140407cee9b1f5ab6 Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期四, 24 七月 2025 13:06:18 +0800 Subject: [PATCH] 1 --- WebAPI/Controllers/LMESController.cs | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/WebAPI/Controllers/LMESController.cs b/WebAPI/Controllers/LMESController.cs index 855bf86..a110b64 100644 --- a/WebAPI/Controllers/LMESController.cs +++ b/WebAPI/Controllers/LMESController.cs @@ -4188,5 +4188,36 @@ } } #endregion + + #region 鏇存柊app + /// <summary> + ///鍙傛暟锛歴tring HInterID銆� + ///杩斿洖鍊硷細object銆� + /// </summary> + [Route("LMES/AppUpdate")] + [HttpGet] + public object AppUpdate(string Type) + { + try + { + DataSet ds; + ds = oCN.RunProcReturn("exec h_p_Gy_APPUpdateInformation " + Type , "h_p_Gy_APPUpdateInformation"); + + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = "Sucess"; + objJsonResult.data = ds.Tables[0]; + 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