EmptyBeanUtil】的更多相关文章

package com.rscode.credits.util; import java.util.List; /** * * 判断实体是否为空 * @author tn * */ public class EmptyUtil { /** * 判断对象为空 * @param obj * @return是否为空 */ public static boolean isEmpty(Object obj) { if (obj == null) { return true; } if ((obj inst…