Compare commits

...

2 Commits

Author SHA1 Message Date
he 0a6f2e2011 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-06-24 16:38:33 +08:00
he b30d11b5dd 稽查的单位要加空格 2025-06-24 16:38:32 +08:00
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)
{