Skip to content

Commit

Permalink
修复注解模式多注入问题
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyanbin committed Apr 8, 2018
1 parent 623bc05 commit af6f156
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ private void createColumn(String fieldName,Field field, List<Column> columns, Ma
parentColumn.setId(id);
columns.add(parentColumn);
parentMap.put(parent, parentColumn);
}else {
parentColumn.addChildren(column);
}
parentColumn.addChildren(column);
if (id < parentColumn.getId()) {
parentColumn.setId(id);
}
Expand Down

0 comments on commit af6f156

Please sign in to comment.