update 优化 补全代码生成 columnList 接口参数注解缺失
parent
abe1f6397e
commit
93b9d55640
|
|
@ -79,7 +79,7 @@ public class GenController extends BaseController {
|
|||
*/
|
||||
@SaCheckPermission("tool:gen:list")
|
||||
@GetMapping(value = "/column/{tableId}")
|
||||
public TableDataInfo<GenTableColumn> columnList(Long tableId) {
|
||||
public TableDataInfo<GenTableColumn> columnList(@PathVariable("tableId") Long tableId) {
|
||||
TableDataInfo<GenTableColumn> dataInfo = new TableDataInfo<>();
|
||||
List<GenTableColumn> list = genTableService.selectGenTableColumnListByTableId(tableId);
|
||||
dataInfo.setRows(list);
|
||||
|
|
|
|||
Loading…
Reference in New Issue