mirror of https://gitee.com/makejava/EasyCode.git
修复短类型有时无法获取bug
This commit is contained in:
parent
fca1a0e43a
commit
534420b33b
|
@ -171,9 +171,9 @@ public class TableInfoServiceImpl implements TableInfoService {
|
|||
// 覆盖空值
|
||||
if (configColumn.getType() == null) {
|
||||
configColumn.setType(column.getType());
|
||||
// 短类型
|
||||
configColumn.setShortType(nameUtils.getClsNameByFullName(configColumn.getType()));
|
||||
}
|
||||
// 短类型
|
||||
configColumn.setShortType(nameUtils.getClsNameByFullName(configColumn.getType()));
|
||||
if (configColumn.getComment() == null) {
|
||||
configColumn.setComment(column.getComment());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue