定时任务违规的字符

This commit is contained in:
RuoYi
2022-12-03 11:32:41 +08:00
parent faa4bfaef3
commit df1c283335
3 changed files with 3 additions and 90 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);
}
}
}