cnf
2025-06-13 4e3503ad797d70b4c48a9cd2a13fa41273d6e1ce
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;
    }
    /**