稽查的单位要加空格

Test_IRC_Net8
he 2025-06-24 16:38:32 +08:00
parent 3859dc0d79
commit b30d11b5dd
1 changed files with 2 additions and 2 deletions

View File

@ -101,10 +101,10 @@ namespace IRaCIS.Core.Infra.EFCore.Common
if (unit == ValueUnit.Custom)
{
return answer + customUnit;
return answer + string.Empty + customUnit;
}
return answer + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
return answer +string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
}
public string GetEntityAuditOpt(EntityEntry entityEntry)
{