Browse Source

fix 修复变量拼写错误

tags/v3.5.0
疯狂的狮子Li 3 years ago committed by Gitee
parent
commit
4feb0adb6e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
  1. 8
      ruoyi-modules/ruoyi-gen/src/main/java/com/ruoyi/gen/controller/GenController.java

8
ruoyi-modules/ruoyi-gen/src/main/java/com/ruoyi/gen/controller/GenController.java

@ -59,12 +59,12 @@ public class GenController extends BaseController @@ -59,12 +59,12 @@ public class GenController extends BaseController
* 修改代码生成业务
*/
@RequiresPermissions("tool:gen:query")
@GetMapping(value = "/{talbleId}")
public AjaxResult getInfo(@PathVariable Long talbleId)
@GetMapping(value = "/{tableId}")
public AjaxResult getInfo(@PathVariable Long tableId)
{
GenTable table = genTableService.selectGenTableById(talbleId);
GenTable table = genTableService.selectGenTableById(tableId);
List<GenTable> tables = genTableService.selectGenTableAll();
List<GenTableColumn> list = genTableColumnService.selectGenTableColumnListByTableId(talbleId);
List<GenTableColumn> list = genTableColumnService.selectGenTableColumnListByTableId(tableId);
Map<String, Object> map = new HashMap<String, Object>();
map.put("info", table);
map.put("rows", list);

Loading…
Cancel
Save