-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## 菜单 | ||
|
||
``` | ||
## 先通过root 获取根菜单 | ||
select * from md_sysparameters s where s.name like '%root%' and systemid='dev' | ||
## 然后再通过MenuID获取下级菜单 | ||
select * from md_sysparameters s where s.`name` like '%90000' and systemid='dev' | ||
``` | ||
|
||
## 数据导入菜单 | ||
``` | ||
{ | ||
"MenuID": "60000", | ||
"MenuTitle": "乡村摸底调查数据导入", | ||
"DisplayOrder": 25, | ||
"FatherID": "0", | ||
"IconName": "", | ||
"MenuType": "LoadFromServer", | ||
"MenuParameter": "", | ||
"CanUse": true, | ||
"Level": 1, | ||
"IconIndex": "-1", | ||
"Children": [] | ||
} | ||
``` |