路段管理,起重点验证失效bug处理

This commit is contained in:
alex
2023-07-03 11:58:10 +08:00
parent a8c894aac8
commit c901340266
4 changed files with 40 additions and 14 deletions

View File

@@ -691,6 +691,16 @@ public static partial class Extensions
{
return ObjToString(thisValue) != string.Empty && ObjToString(thisValue) != "undefined" && ObjToString(thisValue) != "null";
}
/// <summary>
/// 是否为空
/// added by ly on 20230703
/// </summary>
/// <param name="thisValue"></param>
/// <returns></returns>
public static bool IsNull(this object thisValue)
{
return thisValue == null;
}
#endregion