数据穿透

This commit is contained in:
geh
2026-03-06 14:24:20 +08:00
parent 474e208256
commit a05f640047
115 changed files with 14173 additions and 203 deletions
@@ -567,5 +567,19 @@ namespace BLL
F_Stream.Close();
return rx;
}
public static string ConvertImageUrlByImage(object ToeyId)
{
string url = string.Empty;
if (ToeyId != null)
{
var imhurl = BLL.AttachFileService.getFileUrl(ToeyId.ToString());
if (imhurl != null)
{
url = ShowImage(Funs.SGGLUrl, imhurl);
}
}
return url;
}
}
}