We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6488b98 commit 5c99dd7Copy full SHA for 5c99dd7
src/main/java/com/github/abel533/mapperhelper/EntityHelper.java
@@ -433,8 +433,8 @@ public static synchronized void initEntityNameMap(Class<?> entityClass) {
433
}
434
//列
435
List<Field> fieldList = getAllField(entityClass, null);
436
- Set<EntityColumn> columnSet = new HashSet<EntityColumn>();
437
- Set<EntityColumn> pkColumnSet = new HashSet<EntityColumn>();
+ Set<EntityColumn> columnSet = new LinkedHashSet<EntityColumn>();
+ Set<EntityColumn> pkColumnSet = new LinkedHashSet<EntityColumn>();
438
for (Field field : fieldList) {
439
//排除字段
440
if (field.isAnnotationPresent(Transient.class)) {
0 commit comments