|
@@ -4,7 +4,6 @@ import com.alibaba.fastjson.JSON;
|
|
import com.alibaba.fastjson.JSONArray;
|
|
import com.alibaba.fastjson.JSONArray;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
-import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
|
|
|
import java.beans.BeanInfo;
|
|
import java.beans.BeanInfo;
|
|
import java.beans.Introspector;
|
|
import java.beans.Introspector;
|
|
@@ -56,7 +55,7 @@ public class EntityCopy {
|
|
if (value == null) {
|
|
if (value == null) {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
- return StringUtils.isBlank(value.toString());
|
|
|
|
|
|
+ return StringUtil.isBlank(value.toString());
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|