From 7ff81f2d8133575c31f00c3dba40ec2c46e4a14d Mon Sep 17 00:00:00 2001 From: gaofei1985 <181547018@qq.com> Date: Thu, 21 Sep 2023 16:12:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SGGL/BLL/HSSE/Manager/HSSELogService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SGGL/BLL/HSSE/Manager/HSSELogService.cs b/SGGL/BLL/HSSE/Manager/HSSELogService.cs index dfaf88af..30638046 100644 --- a/SGGL/BLL/HSSE/Manager/HSSELogService.cs +++ b/SGGL/BLL/HSSE/Manager/HSSELogService.cs @@ -1023,7 +1023,7 @@ namespace BLL } if (!string.IsNullOrEmpty(CompileDate)) { - getInfoList = getInfoList.Where(x => x.CompileDate == CompileDate).ToList(); + getInfoList = getInfoList.Where(x => x.CompileDate.Contains(CompileDate)).ToList(); } return getInfoList;