提交代码

This commit is contained in:
高飞 2023-09-21 16:12:41 +08:00
parent a1246056bf
commit 7ff81f2d81
1 changed files with 1 additions and 1 deletions

View File

@ -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;