123456789101112131415161718 |
- package cn.com.ty.lift.common.utils;
- import java.util.List;
- /**
- * @author bieao
- * @date 2019/12/17
- * @description 字符串工具类
- */
- public class StringUtils {
- /**
- * 判断List是否为空,空返回true
- */
- public static boolean isListEmpty(List list) {
- return null != list && list.size() > 0;
- }
- }
|