mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	fix
This commit is contained in:
		@@ -59,12 +59,12 @@ public class GenController extends BaseController
 | 
			
		||||
     * 修改代码生成业务
 | 
			
		||||
     */
 | 
			
		||||
    @PreAuthorize("@ss.hasPermi('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);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user