From 4a93e7f59fb279a0b5bf791fffb5b925b3bcf8d4 Mon Sep 17 00:00:00 2001 From: ndbs Date: Thu, 4 Aug 2022 15:09:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=B1=E8=AF=AF=E6=8B=9B=E9=A2=86-=E6=92=A4?= =?UTF-8?q?=E9=94=80=E6=B8=85=E7=A9=BA=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LostArticleInfo/LostArticleInfoService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.OA/LostArticleInfo/LostArticleInfoService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.OA/LostArticleInfo/LostArticleInfoService.cs index 82a922556..4dda49caf 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.OA/LostArticleInfo/LostArticleInfoService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.OA/LostArticleInfo/LostArticleInfoService.cs @@ -213,7 +213,7 @@ namespace Learun.Application.OA try { //草稿0、待认领1、已认领2 - string sql = $"update LostArticleInfo set F_State=0 where F_LId='{keyValue}'"; + string sql = $"update LostArticleInfo set F_State=0,F_User='',F_UserTime=null,F_ClaimImage='' where F_LId='{keyValue}'"; this.BaseRepository().ExecuteBySql(sql); } catch (Exception ex)