修改变量名称使其更规范

cen => gen

Signed-off-by: 有颜色的猫 <wuweixin@gmail.com>
pull/425/head
有颜色的猫 2022-11-23 15:02:22 +00:00 committed by Gitee
parent e5b905c455
commit 8ab50a2925
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -130,9 +130,9 @@ public class GenTableServiceImpl implements IGenTableService
int row = genTableMapper.updateGenTable(genTable);
if (row > 0)
{
for (GenTableColumn cenTableColumn : genTable.getColumns())
for (GenTableColumn genTableColumn : genTable.getColumns())
{
genTableColumnMapper.updateGenTableColumn(cenTableColumn);
genTableColumnMapper.updateGenTableColumn(genTableColumn);
}
}
}