|
@@ -50,7 +50,7 @@ public class MyController extends BaseController {
|
|
@GetMapping("/loadTable")
|
|
@GetMapping("/loadTable")
|
|
public AjaxResult loadTable(GenTable genTable) {
|
|
public AjaxResult loadTable(GenTable genTable) {
|
|
List<GenTable> tableList = genTableService.selectGenTableList(genTable);
|
|
List<GenTable> tableList = genTableService.selectGenTableList(genTable);
|
|
- requireNonNull(tableList);
|
|
|
|
|
|
+ requiredNonNull(tableList);
|
|
|
|
|
|
// load table and tableColumn
|
|
// load table and tableColumn
|
|
List<Long> tableIdList = tableList.stream().map(GenTable::getTableId).collect(Collectors.toList());
|
|
List<Long> tableIdList = tableList.stream().map(GenTable::getTableId).collect(Collectors.toList());
|