增加缓存AOP切面

This commit is contained in:
JINBO
2023-01-06 16:32:43 +08:00
parent 1ed37897d5
commit 898be6c733
11 changed files with 332 additions and 3 deletions

View File

@@ -110,6 +110,11 @@ namespace Yi.Framework.Common.Base
}
public static string TryStringNull(this object value)
{
return value == null ? "" : value.ToString().Trim();
}
/// <summary>
/// Object类型无值判断
/// </summary>