mirror of
https://gitee.com/jzsw-it/yexuejc-base.git
synced 2025-06-08 23:04:03 +08:00
1.3.2
This commit is contained in:
parent
5129cdd162
commit
93488c6fff
@ -1,6 +1,12 @@
|
|||||||
yexuejc-base 更新记录
|
yexuejc-base 更新记录
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
#### version :1.3.2
|
||||||
|
**time:2019-1-2 14:06:47** <br/>
|
||||||
|
**branch:** master <br/>
|
||||||
|
**update:** <br/>
|
||||||
|
>1. objUtil 枚举类型修复
|
||||||
|
#
|
||||||
#### version :1.3.1
|
#### version :1.3.1
|
||||||
**time:2019-1-2 14:06:47** <br/>
|
**time:2019-1-2 14:06:47** <br/>
|
||||||
**branch:** master <br/>
|
**branch:** master <br/>
|
||||||
|
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>top.yexuejc</groupId>
|
<groupId>top.yexuejc</groupId>
|
||||||
<artifactId>yexuejc-base</artifactId>
|
<artifactId>yexuejc-base</artifactId>
|
||||||
<version>1.3.1</version>
|
<version>1.3.2</version>
|
||||||
|
|
||||||
<name>${project.artifactId}</name>
|
<name>${project.artifactId}</name>
|
||||||
<url>https://github.com/yexuejc/yexuejc-base</url>
|
<url>https://github.com/yexuejc/yexuejc-base</url>
|
||||||
|
@ -116,7 +116,7 @@ public class ObjUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Object o = f.get(obj);
|
Object o = f.get(obj);
|
||||||
if (null == o || o.getClass().isPrimitive() || o instanceof String) {
|
if (null == o || o.getClass().isPrimitive() || o instanceof String || o instanceof Enum) {
|
||||||
if (null == o && !putNull) {
|
if (null == o && !putNull) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user