mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
update spring-boot 3.4.6 => 3.4.7
update satoken 1.42.0 => 1.44.0 update hutool 5.8.35 => 5.8.38 update redisson 3.45.1 => 3.50.0 update aws-s3 2.28.22 => 2.31.67 update anyline 8.7.2-20250101 => 8.7.2-20250603 update maven-jar-plugin 3.2.2 => 3.4.2 update maven-war-plugin 3.2.2 => 3.4.0 update maven-compiler-plugin 3.11.0 => 3.14.0 update maven-surefire-plugin 3.1.2 => 3.5.3
This commit is contained in:
@ -302,8 +302,8 @@ public class GenTableServiceImpl implements IGenTableService {
|
||||
tableColumn.setColumnComment(column.getComment());
|
||||
tableColumn.setColumnType(column.getOriginType().toLowerCase());
|
||||
tableColumn.setSort(column.getPosition());
|
||||
tableColumn.setIsRequired(column.isNullable() == 0 ? "1" : "0");
|
||||
tableColumn.setIsIncrement(column.isAutoIncrement() == -1 ? "0" : "1");
|
||||
tableColumn.setIsRequired(column.isNullable() ? "1" : "0");
|
||||
tableColumn.setIsIncrement(column.isAutoIncrement() ? "0" : "1");
|
||||
tableColumns.add(tableColumn);
|
||||
});
|
||||
return tableColumns;
|
||||
|
Reference in New Issue
Block a user