From 6628d9bda9d34a7f611b951c931f7a465ee20c6d Mon Sep 17 00:00:00 2001 From: yangle <admin@YINMOU> Date: 星期五, 12 一月 2024 10:30:47 +0800 Subject: [PATCH] 用户关联用户查询 删除 --- WebAPI/Controllers/BLL/Xt_UserController.cs | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/WebAPI/Controllers/BLL/Xt_UserController.cs b/WebAPI/Controllers/BLL/Xt_UserController.cs index 2073814..1ee4d5b 100644 --- a/WebAPI/Controllers/BLL/Xt_UserController.cs +++ b/WebAPI/Controllers/BLL/Xt_UserController.cs @@ -914,6 +914,45 @@ } #endregion + #region 鐢ㄦ埛鍏宠仈鐢ㄦ埛鍒楄〃鏌ヨ + [Route("Xt_User/Gy_UserByUserList")] + [HttpGet] + public object Gy_UserByUserList(string sWhere, string user) + { + try + { + List<object> columnNameList = new List<object>(); + + string sql1 = "select * from h_v_Gy_UserByUserRelationList where 1 = 1"; + string sql = sql1 + sWhere + " order by 鐢ㄦ埛浠g爜 "; + ds = oCN.RunProcReturn(sql, "h_v_Gy_UserStockRelation"); + + //娣诲姞鍒楀悕 + foreach (DataColumn col in ds.Tables[0].Columns) + { + Type dataType = col.DataType; + string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; + columnNameList.Add(JsonConvert.DeserializeObject(ColmString));//鑾峰彇鍒癉ataColumn鍒楀璞$殑鍒楀悕 + } + + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = "Sucess锛�"; + objJsonResult.data = ds.Tables[0]; + objJsonResult.list = columnNameList; + return objJsonResult; + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "Exception锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + #endregion + #region 鏍规嵁鐢ㄦ埛缂栫爜鏌ユ壘宸插垎閰嶇彮缁勫垪琛� [Route("Xt_User/UserGrouplistPlaylist")] [HttpGet] -- Gitblit v1.9.1