1
啊鑫
2024-08-15 a64a56680f2d1e3c8ee673545ae5f09329a8ebbe
MES.Service/util/CollectionUtil.cs
@@ -8,7 +8,7 @@
     */
    public static bool IsNullOrEmpty<T>(List<T> list)
    {
        return list == null || !list.Any();
        return list == null || list.Count == 0;
    }
    /**