修改PI 审核空数组

Uat_Study
hang 2023-07-19 16:38:13 +08:00
parent 9425fc521e
commit a61b20ace6
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ namespace IRaCIS.Core.Domain.Models
try try
{ {
return this.PIAuditImagePath?.Trim().Split('|').ToList(); return this.PIAuditImagePath?.Trim().Split('|', StringSplitOptions.RemoveEmptyEntries).ToList();
} }
catch (Exception) catch (Exception)
{ {

View File

@ -437,7 +437,7 @@ namespace IRaCIS.Core.Domain.Models
try try
{ {
return this.PIAuditImagePath?.Trim().Split('|').ToList(); return this.PIAuditImagePath?.Trim().Split('|',StringSplitOptions.RemoveEmptyEntries).ToList();
} }
catch (Exception) catch (Exception)
{ {