WebAPI/Controllers/BaseSet/Gy_PropertyController.cs
@@ -25,10 +25,19 @@ /// </summary> [Route("Gy_Property/list")] [HttpGet] public object list(string sWhere) public object list(string sWhere,string user) { try { //编辑权限 if (!DBUtility.ClsPub.Security_Log_second("Gy_Property", 1, false, user)) { objJsonResult.code = "0"; objJsonResult.count = 0; objJsonResult.Message = "无查看权限!"; objJsonResult.data = null; return objJsonResult; } if (sWhere == null || sWhere.Equals("")) { ds = oCN.RunProcReturn("select * from h_v_IF_PropertyList " + sWhere, "h_v_IF_PropertyList");