Commit e8828cd2 by wangli

新增

1 parent a85b3039
package com.dituhui.pea.order.common;
import java.util.List;
public class ListUtils {
public static <T> boolean isNotEmpty(List<T> list) {
return list != null && !list.isEmpty();
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!