From 7d6ad10785778a7c8e8f766f9284f5ad840271bf Mon Sep 17 00:00:00 2001 From: lgd Date: Fri, 18 Jul 2025 13:45:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9parentkey?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OpenAuth.App/ServiceApp/AirportMaintenanceApp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenAuth.App/ServiceApp/AirportMaintenanceApp.cs b/OpenAuth.App/ServiceApp/AirportMaintenanceApp.cs index 2de70fc..9be2080 100644 --- a/OpenAuth.App/ServiceApp/AirportMaintenanceApp.cs +++ b/OpenAuth.App/ServiceApp/AirportMaintenanceApp.cs @@ -429,7 +429,7 @@ namespace OpenAuth.App.ServiceApp public async Task> UpdatePicParentKey(string id, string ParentKey) { - string sql = "update lasa_mediafile set \"Name\"='" + ParentKey + "' where \"Id\"='" + id + "'"; + string sql = "update lasa_mediafile set \"ParentKey\"='" + ParentKey + "' where \"Id\"='" + id + "'"; await _client.Ado.ExecuteCommandAsync(sql); return new Response { Result = "修改成功!" }; }