This commit is contained in:
wangjinlei
2023-11-03 15:10:54 +08:00
parent 1c5f8c7f9c
commit b683c29ad5
2 changed files with 1 additions and 16 deletions

View File

@@ -1,14 +0,0 @@
package com.peanut.common.utils;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
public class MyUtil {
public static boolean notEmpty(Object o){
if(o!=null&& StringUtils.isNotBlank(o.toString())){
return true;
}else {
return false;
}
}
}