Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
finance-manage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
finance-oa
finance-manage
Commits
e9571fc2
Commit
e9571fc2
authored
Mar 05, 2022
by
疯狂的狮子Li
Committed by
Gitee
Mar 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
22f7ccc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ruoyi-generator/src/main/java/com/ruoyi/generator/controller/GenController.java
...in/java/com/ruoyi/generator/controller/GenController.java
+4
-4
No files found.
ruoyi-generator/src/main/java/com/ruoyi/generator/controller/GenController.java
View file @
e9571fc2
...
@@ -59,12 +59,12 @@ public class GenController extends BaseController
...
@@ -59,12 +59,12 @@ public class GenController extends BaseController
* 修改代码生成业务
* 修改代码生成业务
*/
*/
@PreAuthorize
(
"@ss.hasPermi('tool:gen:query')"
)
@PreAuthorize
(
"@ss.hasPermi('tool:gen:query')"
)
@GetMapping
(
value
=
"/{ta
l
bleId}"
)
@GetMapping
(
value
=
"/{tableId}"
)
public
AjaxResult
getInfo
(
@PathVariable
Long
ta
l
bleId
)
public
AjaxResult
getInfo
(
@PathVariable
Long
tableId
)
{
{
GenTable
table
=
genTableService
.
selectGenTableById
(
ta
l
bleId
);
GenTable
table
=
genTableService
.
selectGenTableById
(
tableId
);
List
<
GenTable
>
tables
=
genTableService
.
selectGenTableAll
();
List
<
GenTable
>
tables
=
genTableService
.
selectGenTableAll
();
List
<
GenTableColumn
>
list
=
genTableColumnService
.
selectGenTableColumnListByTableId
(
ta
l
bleId
);
List
<
GenTableColumn
>
list
=
genTableColumnService
.
selectGenTableColumnListByTableId
(
tableId
);
Map
<
String
,
Object
>
map
=
new
HashMap
<
String
,
Object
>();
Map
<
String
,
Object
>
map
=
new
HashMap
<
String
,
Object
>();
map
.
put
(
"info"
,
table
);
map
.
put
(
"info"
,
table
);
map
.
put
(
"rows"
,
list
);
map
.
put
(
"rows"
,
list
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment