sys_menu.json 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481
  1. [
  2. {
  3. "id": 1,
  4. "createBy": 1,
  5. "createDept": 103,
  6. "updateBy": null,
  7. "updateTime": null,
  8. "component": null,
  9. "icon": "system",
  10. "isCache": "0",
  11. "isFrame": "1",
  12. "menuName": "系统管理",
  13. "menuType": "M",
  14. "orderNum": 1,
  15. "parentId": 0,
  16. "path": "system",
  17. "perms": "",
  18. "queryParam": "",
  19. "remark": "系统管理目录",
  20. "status": "0",
  21. "visible": "0"
  22. },
  23. {
  24. "id": 2,
  25. "createBy": 1,
  26. "createDept": 103,
  27. "updateBy": 1,
  28. "component": null,
  29. "icon": "monitor",
  30. "isCache": "0",
  31. "isFrame": "1",
  32. "menuName": "系统监控",
  33. "menuType": "M",
  34. "orderNum": 23,
  35. "parentId": 0,
  36. "path": "monitor",
  37. "perms": "",
  38. "queryParam": "",
  39. "remark": "系统监控目录",
  40. "status": "0",
  41. "visible": "0"
  42. },
  43. {
  44. "id": 3,
  45. "createBy": 1,
  46. "createDept": 103,
  47. "updateBy": 1,
  48. "component": null,
  49. "icon": "tool",
  50. "isCache": "0",
  51. "isFrame": "1",
  52. "menuName": "系统工具",
  53. "menuType": "M",
  54. "orderNum": 24,
  55. "parentId": 0,
  56. "path": "tool",
  57. "perms": "",
  58. "queryParam": "",
  59. "remark": "系统工具目录",
  60. "status": "0",
  61. "visible": "0"
  62. },
  63. {
  64. "id": 4,
  65. "createBy": 1,
  66. "createDept": 103,
  67. "updateBy": 1,
  68. "component": null,
  69. "icon": "guide",
  70. "isCache": "0",
  71. "isFrame": "0",
  72. "menuName": "铱塔官网",
  73. "menuType": "M",
  74. "orderNum": 25,
  75. "parentId": 0,
  76. "path": "http://iotkit-open-source.gitee.io/document",
  77. "perms": "",
  78. "queryParam": "",
  79. "remark": "铱塔官网",
  80. "status": "0",
  81. "visible": "0"
  82. },
  83. {
  84. "id": 6,
  85. "createBy": 1,
  86. "createDept": 103,
  87. "updateBy": 1,
  88. "component": null,
  89. "icon": "chart",
  90. "isCache": "0",
  91. "isFrame": "1",
  92. "menuName": "租户管理",
  93. "menuType": "M",
  94. "orderNum": 22,
  95. "parentId": 0,
  96. "path": "tenant",
  97. "perms": "",
  98. "queryParam": "",
  99. "remark": "租户管理目录",
  100. "status": "0",
  101. "visible": "0"
  102. },
  103. {
  104. "id": 100,
  105. "createBy": 1,
  106. "createDept": 103,
  107. "updateBy": null,
  108. "updateTime": null,
  109. "component": "system/user/index",
  110. "icon": "user",
  111. "isCache": "0",
  112. "isFrame": "1",
  113. "menuName": "用户管理",
  114. "menuType": "C",
  115. "orderNum": 1,
  116. "parentId": 1,
  117. "path": "user",
  118. "perms": "system:user:list",
  119. "queryParam": "",
  120. "remark": "用户管理菜单",
  121. "status": "0",
  122. "visible": "0"
  123. },
  124. {
  125. "id": 101,
  126. "createBy": 1,
  127. "createDept": 103,
  128. "updateBy": null,
  129. "updateTime": null,
  130. "component": "system/role/index",
  131. "icon": "peoples",
  132. "isCache": "0",
  133. "isFrame": "1",
  134. "menuName": "角色管理",
  135. "menuType": "C",
  136. "orderNum": 2,
  137. "parentId": 1,
  138. "path": "role",
  139. "perms": "system:role:list",
  140. "queryParam": "",
  141. "remark": "角色管理菜单",
  142. "status": "0",
  143. "visible": "0"
  144. },
  145. {
  146. "id": 102,
  147. "createBy": 1,
  148. "createDept": 103,
  149. "updateBy": null,
  150. "updateTime": null,
  151. "component": "system/menu/index",
  152. "icon": "tree-table",
  153. "isCache": "0",
  154. "isFrame": "1",
  155. "menuName": "菜单管理",
  156. "menuType": "C",
  157. "orderNum": 3,
  158. "parentId": 1,
  159. "path": "menu",
  160. "perms": "system:menu:list",
  161. "queryParam": "",
  162. "remark": "菜单管理菜单",
  163. "status": "0",
  164. "visible": "0"
  165. },
  166. {
  167. "id": 103,
  168. "createBy": 1,
  169. "createDept": 103,
  170. "updateBy": null,
  171. "updateTime": null,
  172. "component": "system/dept/index",
  173. "icon": "tree",
  174. "isCache": "0",
  175. "isFrame": "1",
  176. "menuName": "部门管理",
  177. "menuType": "C",
  178. "orderNum": 4,
  179. "parentId": 1,
  180. "path": "dept",
  181. "perms": "system:dept:list",
  182. "queryParam": "",
  183. "remark": "部门管理菜单",
  184. "status": "0",
  185. "visible": "0"
  186. },
  187. {
  188. "id": 104,
  189. "createBy": 1,
  190. "createDept": 103,
  191. "updateBy": null,
  192. "updateTime": null,
  193. "component": "system/post/index",
  194. "icon": "post",
  195. "isCache": "0",
  196. "isFrame": "1",
  197. "menuName": "岗位管理",
  198. "menuType": "C",
  199. "orderNum": 5,
  200. "parentId": 1,
  201. "path": "post",
  202. "perms": "system:post:list",
  203. "queryParam": "",
  204. "remark": "岗位管理菜单",
  205. "status": "0",
  206. "visible": "0"
  207. },
  208. {
  209. "id": 105,
  210. "createBy": 1,
  211. "createDept": 103,
  212. "updateBy": null,
  213. "updateTime": null,
  214. "component": "system/dict/index",
  215. "icon": "dict",
  216. "isCache": "0",
  217. "isFrame": "1",
  218. "menuName": "字典管理",
  219. "menuType": "C",
  220. "orderNum": 6,
  221. "parentId": 1,
  222. "path": "dict",
  223. "perms": "system:dict:list",
  224. "queryParam": "",
  225. "remark": "字典管理菜单",
  226. "status": "0",
  227. "visible": "0"
  228. },
  229. {
  230. "id": 106,
  231. "createBy": 1,
  232. "createDept": 103,
  233. "updateBy": null,
  234. "updateTime": null,
  235. "component": "system/config/index",
  236. "icon": "edit",
  237. "isCache": "0",
  238. "isFrame": "1",
  239. "menuName": "参数设置",
  240. "menuType": "C",
  241. "orderNum": 7,
  242. "parentId": 1,
  243. "path": "sysconfig",
  244. "perms": "system:config:list",
  245. "queryParam": "",
  246. "remark": "参数设置菜单",
  247. "status": "0",
  248. "visible": "0"
  249. },
  250. {
  251. "id": 107,
  252. "createBy": 1,
  253. "createDept": 103,
  254. "updateBy": null,
  255. "updateTime": null,
  256. "component": "system/notice/index",
  257. "icon": "message",
  258. "isCache": "0",
  259. "isFrame": "1",
  260. "menuName": "通知公告",
  261. "menuType": "C",
  262. "orderNum": 8,
  263. "parentId": 1,
  264. "path": "notice",
  265. "perms": "system:notice:list",
  266. "queryParam": "",
  267. "remark": "通知公告菜单",
  268. "status": "0",
  269. "visible": "0"
  270. },
  271. {
  272. "id": 108,
  273. "createBy": 1,
  274. "createDept": 103,
  275. "updateBy": null,
  276. "updateTime": null,
  277. "component": "",
  278. "icon": "log",
  279. "isCache": "0",
  280. "isFrame": "1",
  281. "menuName": "日志管理",
  282. "menuType": "M",
  283. "orderNum": 9,
  284. "parentId": 1,
  285. "path": "log",
  286. "perms": "",
  287. "queryParam": "",
  288. "remark": "日志管理菜单",
  289. "status": "0",
  290. "visible": "0"
  291. },
  292. {
  293. "id": 109,
  294. "createBy": 1,
  295. "createDept": 103,
  296. "updateBy": null,
  297. "updateTime": null,
  298. "component": "monitor/online/index",
  299. "icon": "online",
  300. "isCache": "0",
  301. "isFrame": "1",
  302. "menuName": "在线用户",
  303. "menuType": "C",
  304. "orderNum": 1,
  305. "parentId": 2,
  306. "path": "online",
  307. "perms": "monitor:online:list",
  308. "queryParam": "",
  309. "remark": "在线用户菜单",
  310. "status": "0",
  311. "visible": "0"
  312. },
  313. {
  314. "id": 115,
  315. "createBy": 1,
  316. "createDept": 103,
  317. "updateBy": null,
  318. "updateTime": null,
  319. "component": "tool/gen/index",
  320. "icon": "code",
  321. "isCache": "0",
  322. "isFrame": "1",
  323. "menuName": "代码生成",
  324. "menuType": "C",
  325. "orderNum": 2,
  326. "parentId": 3,
  327. "path": "gen",
  328. "perms": "tool:gen:list",
  329. "queryParam": "",
  330. "remark": "代码生成菜单",
  331. "status": "0",
  332. "visible": "0"
  333. },
  334. {
  335. "id": 118,
  336. "createBy": 1,
  337. "createDept": 103,
  338. "updateBy": null,
  339. "updateTime": null,
  340. "component": "system/oss/index",
  341. "icon": "upload",
  342. "isCache": "0",
  343. "isFrame": "1",
  344. "menuName": "文件管理",
  345. "menuType": "C",
  346. "orderNum": 10,
  347. "parentId": 1,
  348. "path": "oss",
  349. "perms": "system:oss:list",
  350. "queryParam": "",
  351. "remark": "文件管理菜单",
  352. "status": "0",
  353. "visible": "0"
  354. },
  355. {
  356. "id": 121,
  357. "createBy": 1,
  358. "createDept": 103,
  359. "updateBy": null,
  360. "updateTime": null,
  361. "component": "system/tenant/index",
  362. "icon": "list",
  363. "isCache": "0",
  364. "isFrame": "1",
  365. "menuName": "租户管理",
  366. "menuType": "C",
  367. "orderNum": 1,
  368. "parentId": 6,
  369. "path": "tenant",
  370. "perms": "system:tenant:list",
  371. "queryParam": "",
  372. "remark": "租户管理菜单",
  373. "status": "0",
  374. "visible": "0"
  375. },
  376. {
  377. "id": 122,
  378. "createBy": 1,
  379. "createDept": 103,
  380. "updateBy": null,
  381. "updateTime": null,
  382. "component": "system/tenantPackage/index",
  383. "icon": "form",
  384. "isCache": "0",
  385. "isFrame": "1",
  386. "menuName": "租户套餐管理",
  387. "menuType": "C",
  388. "orderNum": 2,
  389. "parentId": 6,
  390. "path": "tenantPackage",
  391. "perms": "system:tenantPackage:list",
  392. "queryParam": "",
  393. "remark": "租户套餐管理菜单",
  394. "status": "0",
  395. "visible": "0"
  396. },
  397. {
  398. "id": 500,
  399. "createBy": 1,
  400. "createDept": 103,
  401. "updateBy": null,
  402. "updateTime": null,
  403. "component": "monitor/operlog/index",
  404. "icon": "form",
  405. "isCache": "0",
  406. "isFrame": "1",
  407. "menuName": "操作日志",
  408. "menuType": "C",
  409. "orderNum": 1,
  410. "parentId": 108,
  411. "path": "operlog",
  412. "perms": "monitor:operlog:list",
  413. "queryParam": "",
  414. "remark": "操作日志菜单",
  415. "status": "0",
  416. "visible": "0"
  417. },
  418. {
  419. "id": 501,
  420. "createBy": 1,
  421. "createDept": 103,
  422. "updateBy": null,
  423. "updateTime": null,
  424. "component": "monitor/logininfor/index",
  425. "icon": "logininfor",
  426. "isCache": "0",
  427. "isFrame": "1",
  428. "menuName": "登录日志",
  429. "menuType": "C",
  430. "orderNum": 2,
  431. "parentId": 108,
  432. "path": "logininfor",
  433. "perms": "monitor:logininfor:list",
  434. "queryParam": "",
  435. "remark": "登录日志菜单",
  436. "status": "0",
  437. "visible": "0"
  438. },
  439. {
  440. "id": 1001,
  441. "createBy": 1,
  442. "createDept": 103,
  443. "updateBy": null,
  444. "updateTime": null,
  445. "component": "",
  446. "icon": "#",
  447. "isCache": "0",
  448. "isFrame": "1",
  449. "menuName": "用户查询",
  450. "menuType": "F",
  451. "orderNum": 1,
  452. "parentId": 100,
  453. "path": "",
  454. "perms": "system:user:query",
  455. "queryParam": "",
  456. "remark": "",
  457. "status": "0",
  458. "visible": "0"
  459. },
  460. {
  461. "id": 1002,
  462. "createBy": 1,
  463. "createDept": 103,
  464. "updateBy": null,
  465. "updateTime": null,
  466. "component": "",
  467. "icon": "#",
  468. "isCache": "0",
  469. "isFrame": "1",
  470. "menuName": "用户新增",
  471. "menuType": "F",
  472. "orderNum": 2,
  473. "parentId": 100,
  474. "path": "",
  475. "perms": "system:user:add",
  476. "queryParam": "",
  477. "remark": "",
  478. "status": "0",
  479. "visible": "0"
  480. },
  481. {
  482. "id": 1003,
  483. "createBy": 1,
  484. "createDept": 103,
  485. "updateBy": null,
  486. "updateTime": null,
  487. "component": "",
  488. "icon": "#",
  489. "isCache": "0",
  490. "isFrame": "1",
  491. "menuName": "用户修改",
  492. "menuType": "F",
  493. "orderNum": 3,
  494. "parentId": 100,
  495. "path": "",
  496. "perms": "system:user:edit",
  497. "queryParam": "",
  498. "remark": "",
  499. "status": "0",
  500. "visible": "0"
  501. },
  502. {
  503. "id": 1004,
  504. "createBy": 1,
  505. "createDept": 103,
  506. "updateBy": null,
  507. "updateTime": null,
  508. "component": "",
  509. "icon": "#",
  510. "isCache": "0",
  511. "isFrame": "1",
  512. "menuName": "用户删除",
  513. "menuType": "F",
  514. "orderNum": 4,
  515. "parentId": 100,
  516. "path": "",
  517. "perms": "system:user:remove",
  518. "queryParam": "",
  519. "remark": "",
  520. "status": "0",
  521. "visible": "0"
  522. },
  523. {
  524. "id": 1005,
  525. "createBy": 1,
  526. "createDept": 103,
  527. "updateBy": null,
  528. "updateTime": null,
  529. "component": "",
  530. "icon": "#",
  531. "isCache": "0",
  532. "isFrame": "1",
  533. "menuName": "用户导出",
  534. "menuType": "F",
  535. "orderNum": 5,
  536. "parentId": 100,
  537. "path": "",
  538. "perms": "system:user:export",
  539. "queryParam": "",
  540. "remark": "",
  541. "status": "0",
  542. "visible": "0"
  543. },
  544. {
  545. "id": 1006,
  546. "createBy": 1,
  547. "createDept": 103,
  548. "updateBy": null,
  549. "updateTime": null,
  550. "component": "",
  551. "icon": "#",
  552. "isCache": "0",
  553. "isFrame": "1",
  554. "menuName": "用户导入",
  555. "menuType": "F",
  556. "orderNum": 6,
  557. "parentId": 100,
  558. "path": "",
  559. "perms": "system:user:import",
  560. "queryParam": "",
  561. "remark": "",
  562. "status": "0",
  563. "visible": "0"
  564. },
  565. {
  566. "id": 1007,
  567. "createBy": 1,
  568. "createDept": 103,
  569. "updateBy": null,
  570. "updateTime": null,
  571. "component": "",
  572. "icon": "#",
  573. "isCache": "0",
  574. "isFrame": "1",
  575. "menuName": "重置密码",
  576. "menuType": "F",
  577. "orderNum": 7,
  578. "parentId": 100,
  579. "path": "",
  580. "perms": "system:user:resetPwd",
  581. "queryParam": "",
  582. "remark": "",
  583. "status": "0",
  584. "visible": "0"
  585. },
  586. {
  587. "id": 1008,
  588. "createBy": 1,
  589. "createDept": 103,
  590. "updateBy": null,
  591. "updateTime": null,
  592. "component": "",
  593. "icon": "#",
  594. "isCache": "0",
  595. "isFrame": "1",
  596. "menuName": "角色查询",
  597. "menuType": "F",
  598. "orderNum": 1,
  599. "parentId": 101,
  600. "path": "",
  601. "perms": "system:role:query",
  602. "queryParam": "",
  603. "remark": "",
  604. "status": "0",
  605. "visible": "0"
  606. },
  607. {
  608. "id": 1009,
  609. "createBy": 1,
  610. "createDept": 103,
  611. "updateBy": null,
  612. "updateTime": null,
  613. "component": "",
  614. "icon": "#",
  615. "isCache": "0",
  616. "isFrame": "1",
  617. "menuName": "角色新增",
  618. "menuType": "F",
  619. "orderNum": 2,
  620. "parentId": 101,
  621. "path": "",
  622. "perms": "system:role:add",
  623. "queryParam": "",
  624. "remark": "",
  625. "status": "0",
  626. "visible": "0"
  627. },
  628. {
  629. "id": 1010,
  630. "createBy": 1,
  631. "createDept": 103,
  632. "updateBy": null,
  633. "updateTime": null,
  634. "component": "",
  635. "icon": "#",
  636. "isCache": "0",
  637. "isFrame": "1",
  638. "menuName": "角色修改",
  639. "menuType": "F",
  640. "orderNum": 3,
  641. "parentId": 101,
  642. "path": "",
  643. "perms": "system:role:edit",
  644. "queryParam": "",
  645. "remark": "",
  646. "status": "0",
  647. "visible": "0"
  648. },
  649. {
  650. "id": 1011,
  651. "createBy": 1,
  652. "createDept": 103,
  653. "updateBy": null,
  654. "updateTime": null,
  655. "component": "",
  656. "icon": "#",
  657. "isCache": "0",
  658. "isFrame": "1",
  659. "menuName": "角色删除",
  660. "menuType": "F",
  661. "orderNum": 4,
  662. "parentId": 101,
  663. "path": "",
  664. "perms": "system:role:remove",
  665. "queryParam": "",
  666. "remark": "",
  667. "status": "0",
  668. "visible": "0"
  669. },
  670. {
  671. "id": 1012,
  672. "createBy": 1,
  673. "createDept": 103,
  674. "updateBy": null,
  675. "updateTime": null,
  676. "component": "",
  677. "icon": "#",
  678. "isCache": "0",
  679. "isFrame": "1",
  680. "menuName": "角色导出",
  681. "menuType": "F",
  682. "orderNum": 5,
  683. "parentId": 101,
  684. "path": "",
  685. "perms": "system:role:export",
  686. "queryParam": "",
  687. "remark": "",
  688. "status": "0",
  689. "visible": "0"
  690. },
  691. {
  692. "id": 1013,
  693. "createBy": 1,
  694. "createDept": 103,
  695. "updateBy": null,
  696. "updateTime": null,
  697. "component": "",
  698. "icon": "#",
  699. "isCache": "0",
  700. "isFrame": "1",
  701. "menuName": "菜单查询",
  702. "menuType": "F",
  703. "orderNum": 1,
  704. "parentId": 102,
  705. "path": "",
  706. "perms": "system:menu:query",
  707. "queryParam": "",
  708. "remark": "",
  709. "status": "0",
  710. "visible": "0"
  711. },
  712. {
  713. "id": 1014,
  714. "createBy": 1,
  715. "createDept": 103,
  716. "updateBy": null,
  717. "updateTime": null,
  718. "component": "",
  719. "icon": "#",
  720. "isCache": "0",
  721. "isFrame": "1",
  722. "menuName": "菜单新增",
  723. "menuType": "F",
  724. "orderNum": 2,
  725. "parentId": 102,
  726. "path": "",
  727. "perms": "system:menu:add",
  728. "queryParam": "",
  729. "remark": "",
  730. "status": "0",
  731. "visible": "0"
  732. },
  733. {
  734. "id": 1015,
  735. "createBy": 1,
  736. "createDept": 103,
  737. "updateBy": null,
  738. "updateTime": null,
  739. "component": "",
  740. "icon": "#",
  741. "isCache": "0",
  742. "isFrame": "1",
  743. "menuName": "菜单修改",
  744. "menuType": "F",
  745. "orderNum": 3,
  746. "parentId": 102,
  747. "path": "",
  748. "perms": "system:menu:edit",
  749. "queryParam": "",
  750. "remark": "",
  751. "status": "0",
  752. "visible": "0"
  753. },
  754. {
  755. "id": 1016,
  756. "createBy": 1,
  757. "createDept": 103,
  758. "updateBy": null,
  759. "updateTime": null,
  760. "component": "",
  761. "icon": "#",
  762. "isCache": "0",
  763. "isFrame": "1",
  764. "menuName": "菜单删除",
  765. "menuType": "F",
  766. "orderNum": 4,
  767. "parentId": 102,
  768. "path": "",
  769. "perms": "system:menu:remove",
  770. "queryParam": "",
  771. "remark": "",
  772. "status": "0",
  773. "visible": "0"
  774. },
  775. {
  776. "id": 1017,
  777. "createBy": 1,
  778. "createDept": 103,
  779. "updateBy": null,
  780. "updateTime": null,
  781. "component": "",
  782. "icon": "#",
  783. "isCache": "0",
  784. "isFrame": "1",
  785. "menuName": "部门查询",
  786. "menuType": "F",
  787. "orderNum": 1,
  788. "parentId": 103,
  789. "path": "",
  790. "perms": "system:dept:query",
  791. "queryParam": "",
  792. "remark": "",
  793. "status": "0",
  794. "visible": "0"
  795. },
  796. {
  797. "id": 1018,
  798. "createBy": 1,
  799. "createDept": 103,
  800. "updateBy": null,
  801. "updateTime": null,
  802. "component": "",
  803. "icon": "#",
  804. "isCache": "0",
  805. "isFrame": "1",
  806. "menuName": "部门新增",
  807. "menuType": "F",
  808. "orderNum": 2,
  809. "parentId": 103,
  810. "path": "",
  811. "perms": "system:dept:add",
  812. "queryParam": "",
  813. "remark": "",
  814. "status": "0",
  815. "visible": "0"
  816. },
  817. {
  818. "id": 1019,
  819. "createBy": 1,
  820. "createDept": 103,
  821. "updateBy": null,
  822. "updateTime": null,
  823. "component": "",
  824. "icon": "#",
  825. "isCache": "0",
  826. "isFrame": "1",
  827. "menuName": "部门修改",
  828. "menuType": "F",
  829. "orderNum": 3,
  830. "parentId": 103,
  831. "path": "",
  832. "perms": "system:dept:edit",
  833. "queryParam": "",
  834. "remark": "",
  835. "status": "0",
  836. "visible": "0"
  837. },
  838. {
  839. "id": 1020,
  840. "createBy": 1,
  841. "createDept": 103,
  842. "updateBy": null,
  843. "updateTime": null,
  844. "component": "",
  845. "icon": "#",
  846. "isCache": "0",
  847. "isFrame": "1",
  848. "menuName": "部门删除",
  849. "menuType": "F",
  850. "orderNum": 4,
  851. "parentId": 103,
  852. "path": "",
  853. "perms": "system:dept:remove",
  854. "queryParam": "",
  855. "remark": "",
  856. "status": "0",
  857. "visible": "0"
  858. },
  859. {
  860. "id": 1021,
  861. "createBy": 1,
  862. "createDept": 103,
  863. "updateBy": null,
  864. "updateTime": null,
  865. "component": "",
  866. "icon": "#",
  867. "isCache": "0",
  868. "isFrame": "1",
  869. "menuName": "岗位查询",
  870. "menuType": "F",
  871. "orderNum": 1,
  872. "parentId": 104,
  873. "path": "",
  874. "perms": "system:post:query",
  875. "queryParam": "",
  876. "remark": "",
  877. "status": "0",
  878. "visible": "0"
  879. },
  880. {
  881. "id": 1022,
  882. "createBy": 1,
  883. "createDept": 103,
  884. "updateBy": null,
  885. "updateTime": null,
  886. "component": "",
  887. "icon": "#",
  888. "isCache": "0",
  889. "isFrame": "1",
  890. "menuName": "岗位新增",
  891. "menuType": "F",
  892. "orderNum": 2,
  893. "parentId": 104,
  894. "path": "",
  895. "perms": "system:post:add",
  896. "queryParam": "",
  897. "remark": "",
  898. "status": "0",
  899. "visible": "0"
  900. },
  901. {
  902. "id": 1023,
  903. "createBy": 1,
  904. "createDept": 103,
  905. "updateBy": null,
  906. "updateTime": null,
  907. "component": "",
  908. "icon": "#",
  909. "isCache": "0",
  910. "isFrame": "1",
  911. "menuName": "岗位修改",
  912. "menuType": "F",
  913. "orderNum": 3,
  914. "parentId": 104,
  915. "path": "",
  916. "perms": "system:post:edit",
  917. "queryParam": "",
  918. "remark": "",
  919. "status": "0",
  920. "visible": "0"
  921. },
  922. {
  923. "id": 1024,
  924. "createBy": 1,
  925. "createDept": 103,
  926. "updateBy": null,
  927. "updateTime": null,
  928. "component": "",
  929. "icon": "#",
  930. "isCache": "0",
  931. "isFrame": "1",
  932. "menuName": "岗位删除",
  933. "menuType": "F",
  934. "orderNum": 4,
  935. "parentId": 104,
  936. "path": "",
  937. "perms": "system:post:remove",
  938. "queryParam": "",
  939. "remark": "",
  940. "status": "0",
  941. "visible": "0"
  942. },
  943. {
  944. "id": 1025,
  945. "createBy": 1,
  946. "createDept": 103,
  947. "updateBy": null,
  948. "updateTime": null,
  949. "component": "",
  950. "icon": "#",
  951. "isCache": "0",
  952. "isFrame": "1",
  953. "menuName": "岗位导出",
  954. "menuType": "F",
  955. "orderNum": 5,
  956. "parentId": 104,
  957. "path": "",
  958. "perms": "system:post:export",
  959. "queryParam": "",
  960. "remark": "",
  961. "status": "0",
  962. "visible": "0"
  963. },
  964. {
  965. "id": 1026,
  966. "createBy": 1,
  967. "createDept": 103,
  968. "updateBy": null,
  969. "updateTime": null,
  970. "component": "",
  971. "icon": "#",
  972. "isCache": "0",
  973. "isFrame": "1",
  974. "menuName": "字典查询",
  975. "menuType": "F",
  976. "orderNum": 1,
  977. "parentId": 105,
  978. "path": "#",
  979. "perms": "system:dict:query",
  980. "queryParam": "",
  981. "remark": "",
  982. "status": "0",
  983. "visible": "0"
  984. },
  985. {
  986. "id": 1027,
  987. "createBy": 1,
  988. "createDept": 103,
  989. "updateBy": null,
  990. "updateTime": null,
  991. "component": "",
  992. "icon": "#",
  993. "isCache": "0",
  994. "isFrame": "1",
  995. "menuName": "字典新增",
  996. "menuType": "F",
  997. "orderNum": 2,
  998. "parentId": 105,
  999. "path": "#",
  1000. "perms": "system:dict:add",
  1001. "queryParam": "",
  1002. "remark": "",
  1003. "status": "0",
  1004. "visible": "0"
  1005. },
  1006. {
  1007. "id": 1028,
  1008. "createBy": 1,
  1009. "createDept": 103,
  1010. "updateBy": null,
  1011. "updateTime": null,
  1012. "component": "",
  1013. "icon": "#",
  1014. "isCache": "0",
  1015. "isFrame": "1",
  1016. "menuName": "字典修改",
  1017. "menuType": "F",
  1018. "orderNum": 3,
  1019. "parentId": 105,
  1020. "path": "#",
  1021. "perms": "system:dict:edit",
  1022. "queryParam": "",
  1023. "remark": "",
  1024. "status": "0",
  1025. "visible": "0"
  1026. },
  1027. {
  1028. "id": 1029,
  1029. "createBy": 1,
  1030. "createDept": 103,
  1031. "updateBy": null,
  1032. "updateTime": null,
  1033. "component": "",
  1034. "icon": "#",
  1035. "isCache": "0",
  1036. "isFrame": "1",
  1037. "menuName": "字典删除",
  1038. "menuType": "F",
  1039. "orderNum": 4,
  1040. "parentId": 105,
  1041. "path": "#",
  1042. "perms": "system:dict:remove",
  1043. "queryParam": "",
  1044. "remark": "",
  1045. "status": "0",
  1046. "visible": "0"
  1047. },
  1048. {
  1049. "id": 1030,
  1050. "createBy": 1,
  1051. "createDept": 103,
  1052. "updateBy": null,
  1053. "updateTime": null,
  1054. "component": "",
  1055. "icon": "#",
  1056. "isCache": "0",
  1057. "isFrame": "1",
  1058. "menuName": "字典导出",
  1059. "menuType": "F",
  1060. "orderNum": 5,
  1061. "parentId": 105,
  1062. "path": "#",
  1063. "perms": "system:dict:export",
  1064. "queryParam": "",
  1065. "remark": "",
  1066. "status": "0",
  1067. "visible": "0"
  1068. },
  1069. {
  1070. "id": 1031,
  1071. "createBy": 1,
  1072. "createDept": 103,
  1073. "updateBy": null,
  1074. "updateTime": null,
  1075. "component": "",
  1076. "icon": "#",
  1077. "isCache": "0",
  1078. "isFrame": "1",
  1079. "menuName": "参数查询",
  1080. "menuType": "F",
  1081. "orderNum": 1,
  1082. "parentId": 106,
  1083. "path": "#",
  1084. "perms": "system:config:query",
  1085. "queryParam": "",
  1086. "remark": "",
  1087. "status": "0",
  1088. "visible": "0"
  1089. },
  1090. {
  1091. "id": 1032,
  1092. "createBy": 1,
  1093. "createDept": 103,
  1094. "updateBy": null,
  1095. "updateTime": null,
  1096. "component": "",
  1097. "icon": "#",
  1098. "isCache": "0",
  1099. "isFrame": "1",
  1100. "menuName": "参数新增",
  1101. "menuType": "F",
  1102. "orderNum": 2,
  1103. "parentId": 106,
  1104. "path": "#",
  1105. "perms": "system:config:add",
  1106. "queryParam": "",
  1107. "remark": "",
  1108. "status": "0",
  1109. "visible": "0"
  1110. },
  1111. {
  1112. "id": 1033,
  1113. "createBy": 1,
  1114. "createDept": 103,
  1115. "updateBy": null,
  1116. "updateTime": null,
  1117. "component": "",
  1118. "icon": "#",
  1119. "isCache": "0",
  1120. "isFrame": "1",
  1121. "menuName": "参数修改",
  1122. "menuType": "F",
  1123. "orderNum": 3,
  1124. "parentId": 106,
  1125. "path": "#",
  1126. "perms": "system:config:edit",
  1127. "queryParam": "",
  1128. "remark": "",
  1129. "status": "0",
  1130. "visible": "0"
  1131. },
  1132. {
  1133. "id": 1034,
  1134. "createBy": 1,
  1135. "createDept": 103,
  1136. "updateBy": null,
  1137. "updateTime": null,
  1138. "component": "",
  1139. "icon": "#",
  1140. "isCache": "0",
  1141. "isFrame": "1",
  1142. "menuName": "参数删除",
  1143. "menuType": "F",
  1144. "orderNum": 4,
  1145. "parentId": 106,
  1146. "path": "#",
  1147. "perms": "system:config:remove",
  1148. "queryParam": "",
  1149. "remark": "",
  1150. "status": "0",
  1151. "visible": "0"
  1152. },
  1153. {
  1154. "id": 1035,
  1155. "createBy": 1,
  1156. "createDept": 103,
  1157. "updateBy": null,
  1158. "updateTime": null,
  1159. "component": "",
  1160. "icon": "#",
  1161. "isCache": "0",
  1162. "isFrame": "1",
  1163. "menuName": "参数导出",
  1164. "menuType": "F",
  1165. "orderNum": 5,
  1166. "parentId": 106,
  1167. "path": "#",
  1168. "perms": "system:config:export",
  1169. "queryParam": "",
  1170. "remark": "",
  1171. "status": "0",
  1172. "visible": "0"
  1173. },
  1174. {
  1175. "id": 1036,
  1176. "createBy": 1,
  1177. "createDept": 103,
  1178. "updateBy": null,
  1179. "updateTime": null,
  1180. "component": "",
  1181. "icon": "#",
  1182. "isCache": "0",
  1183. "isFrame": "1",
  1184. "menuName": "公告查询",
  1185. "menuType": "F",
  1186. "orderNum": 1,
  1187. "parentId": 107,
  1188. "path": "#",
  1189. "perms": "system:notice:query",
  1190. "queryParam": "",
  1191. "remark": "",
  1192. "status": "0",
  1193. "visible": "0"
  1194. },
  1195. {
  1196. "id": 1037,
  1197. "createBy": 1,
  1198. "createDept": 103,
  1199. "updateBy": null,
  1200. "updateTime": null,
  1201. "component": "",
  1202. "icon": "#",
  1203. "isCache": "0",
  1204. "isFrame": "1",
  1205. "menuName": "公告新增",
  1206. "menuType": "F",
  1207. "orderNum": 2,
  1208. "parentId": 107,
  1209. "path": "#",
  1210. "perms": "system:notice:add",
  1211. "queryParam": "",
  1212. "remark": "",
  1213. "status": "0",
  1214. "visible": "0"
  1215. },
  1216. {
  1217. "id": 1038,
  1218. "createBy": 1,
  1219. "createDept": 103,
  1220. "updateBy": null,
  1221. "updateTime": null,
  1222. "component": "",
  1223. "icon": "#",
  1224. "isCache": "0",
  1225. "isFrame": "1",
  1226. "menuName": "公告修改",
  1227. "menuType": "F",
  1228. "orderNum": 3,
  1229. "parentId": 107,
  1230. "path": "#",
  1231. "perms": "system:notice:edit",
  1232. "queryParam": "",
  1233. "remark": "",
  1234. "status": "0",
  1235. "visible": "0"
  1236. },
  1237. {
  1238. "id": 1039,
  1239. "createBy": 1,
  1240. "createDept": 103,
  1241. "updateBy": null,
  1242. "updateTime": null,
  1243. "component": "",
  1244. "icon": "#",
  1245. "isCache": "0",
  1246. "isFrame": "1",
  1247. "menuName": "公告删除",
  1248. "menuType": "F",
  1249. "orderNum": 4,
  1250. "parentId": 107,
  1251. "path": "#",
  1252. "perms": "system:notice:remove",
  1253. "queryParam": "",
  1254. "remark": "",
  1255. "status": "0",
  1256. "visible": "0"
  1257. },
  1258. {
  1259. "id": 1040,
  1260. "createBy": 1,
  1261. "createDept": 103,
  1262. "updateBy": null,
  1263. "updateTime": null,
  1264. "component": "",
  1265. "icon": "#",
  1266. "isCache": "0",
  1267. "isFrame": "1",
  1268. "menuName": "操作查询",
  1269. "menuType": "F",
  1270. "orderNum": 1,
  1271. "parentId": 500,
  1272. "path": "#",
  1273. "perms": "monitor:operlog:query",
  1274. "queryParam": "",
  1275. "remark": "",
  1276. "status": "0",
  1277. "visible": "0"
  1278. },
  1279. {
  1280. "id": 1041,
  1281. "createBy": 1,
  1282. "createDept": 103,
  1283. "updateBy": null,
  1284. "updateTime": null,
  1285. "component": "",
  1286. "icon": "#",
  1287. "isCache": "0",
  1288. "isFrame": "1",
  1289. "menuName": "操作删除",
  1290. "menuType": "F",
  1291. "orderNum": 2,
  1292. "parentId": 500,
  1293. "path": "#",
  1294. "perms": "monitor:operlog:remove",
  1295. "queryParam": "",
  1296. "remark": "",
  1297. "status": "0",
  1298. "visible": "0"
  1299. },
  1300. {
  1301. "id": 1042,
  1302. "createBy": 1,
  1303. "createDept": 103,
  1304. "updateBy": null,
  1305. "updateTime": null,
  1306. "component": "",
  1307. "icon": "#",
  1308. "isCache": "0",
  1309. "isFrame": "1",
  1310. "menuName": "日志导出",
  1311. "menuType": "F",
  1312. "orderNum": 4,
  1313. "parentId": 500,
  1314. "path": "#",
  1315. "perms": "monitor:operlog:export",
  1316. "queryParam": "",
  1317. "remark": "",
  1318. "status": "0",
  1319. "visible": "0"
  1320. },
  1321. {
  1322. "id": 1043,
  1323. "createBy": 1,
  1324. "createDept": 103,
  1325. "updateBy": null,
  1326. "updateTime": null,
  1327. "component": "",
  1328. "icon": "#",
  1329. "isCache": "0",
  1330. "isFrame": "1",
  1331. "menuName": "登录查询",
  1332. "menuType": "F",
  1333. "orderNum": 1,
  1334. "parentId": 501,
  1335. "path": "#",
  1336. "perms": "monitor:logininfor:query",
  1337. "queryParam": "",
  1338. "remark": "",
  1339. "status": "0",
  1340. "visible": "0"
  1341. },
  1342. {
  1343. "id": 1044,
  1344. "createBy": 1,
  1345. "createDept": 103,
  1346. "updateBy": null,
  1347. "updateTime": null,
  1348. "component": "",
  1349. "icon": "#",
  1350. "isCache": "0",
  1351. "isFrame": "1",
  1352. "menuName": "登录删除",
  1353. "menuType": "F",
  1354. "orderNum": 2,
  1355. "parentId": 501,
  1356. "path": "#",
  1357. "perms": "monitor:logininfor:remove",
  1358. "queryParam": "",
  1359. "remark": "",
  1360. "status": "0",
  1361. "visible": "0"
  1362. },
  1363. {
  1364. "id": 1045,
  1365. "createBy": 1,
  1366. "createDept": 103,
  1367. "updateBy": null,
  1368. "updateTime": null,
  1369. "component": "",
  1370. "icon": "#",
  1371. "isCache": "0",
  1372. "isFrame": "1",
  1373. "menuName": "日志导出",
  1374. "menuType": "F",
  1375. "orderNum": 3,
  1376. "parentId": 501,
  1377. "path": "#",
  1378. "perms": "monitor:logininfor:export",
  1379. "queryParam": "",
  1380. "remark": "",
  1381. "status": "0",
  1382. "visible": "0"
  1383. },
  1384. {
  1385. "id": 1046,
  1386. "createBy": 1,
  1387. "createDept": 103,
  1388. "updateBy": null,
  1389. "updateTime": null,
  1390. "component": "",
  1391. "icon": "#",
  1392. "isCache": "0",
  1393. "isFrame": "1",
  1394. "menuName": "在线查询",
  1395. "menuType": "F",
  1396. "orderNum": 1,
  1397. "parentId": 109,
  1398. "path": "#",
  1399. "perms": "monitor:online:query",
  1400. "queryParam": "",
  1401. "remark": "",
  1402. "status": "0",
  1403. "visible": "0"
  1404. },
  1405. {
  1406. "id": 1047,
  1407. "createBy": 1,
  1408. "createDept": 103,
  1409. "updateBy": null,
  1410. "updateTime": null,
  1411. "component": "",
  1412. "icon": "#",
  1413. "isCache": "0",
  1414. "isFrame": "1",
  1415. "menuName": "批量强退",
  1416. "menuType": "F",
  1417. "orderNum": 2,
  1418. "parentId": 109,
  1419. "path": "#",
  1420. "perms": "monitor:online:batchLogout",
  1421. "queryParam": "",
  1422. "remark": "",
  1423. "status": "0",
  1424. "visible": "0"
  1425. },
  1426. {
  1427. "id": 1048,
  1428. "createBy": 1,
  1429. "createDept": 103,
  1430. "updateBy": null,
  1431. "updateTime": null,
  1432. "component": "",
  1433. "icon": "#",
  1434. "isCache": "0",
  1435. "isFrame": "1",
  1436. "menuName": "单条强退",
  1437. "menuType": "F",
  1438. "orderNum": 3,
  1439. "parentId": 109,
  1440. "path": "#",
  1441. "perms": "monitor:online:forceLogout",
  1442. "queryParam": "",
  1443. "remark": "",
  1444. "status": "0",
  1445. "visible": "0"
  1446. },
  1447. {
  1448. "id": 1050,
  1449. "createBy": 1,
  1450. "createDept": 103,
  1451. "updateBy": null,
  1452. "updateTime": null,
  1453. "component": "",
  1454. "icon": "#",
  1455. "isCache": "0",
  1456. "isFrame": "1",
  1457. "menuName": "账户解锁",
  1458. "menuType": "F",
  1459. "orderNum": 4,
  1460. "parentId": 501,
  1461. "path": "#",
  1462. "perms": "monitor:logininfor:unlock",
  1463. "queryParam": "",
  1464. "remark": "",
  1465. "status": "0",
  1466. "visible": "0"
  1467. },
  1468. {
  1469. "id": 1055,
  1470. "createBy": 1,
  1471. "createDept": 103,
  1472. "updateBy": null,
  1473. "updateTime": null,
  1474. "component": "",
  1475. "icon": "#",
  1476. "isCache": "0",
  1477. "isFrame": "1",
  1478. "menuName": "生成查询",
  1479. "menuType": "F",
  1480. "orderNum": 1,
  1481. "parentId": 115,
  1482. "path": "#",
  1483. "perms": "tool:gen:query",
  1484. "queryParam": "",
  1485. "remark": "",
  1486. "status": "0",
  1487. "visible": "0"
  1488. },
  1489. {
  1490. "id": 1056,
  1491. "createBy": 1,
  1492. "createDept": 103,
  1493. "updateBy": null,
  1494. "updateTime": null,
  1495. "component": "",
  1496. "icon": "#",
  1497. "isCache": "0",
  1498. "isFrame": "1",
  1499. "menuName": "生成修改",
  1500. "menuType": "F",
  1501. "orderNum": 2,
  1502. "parentId": 115,
  1503. "path": "#",
  1504. "perms": "tool:gen:edit",
  1505. "queryParam": "",
  1506. "remark": "",
  1507. "status": "0",
  1508. "visible": "0"
  1509. },
  1510. {
  1511. "id": 1057,
  1512. "createBy": 1,
  1513. "createDept": 103,
  1514. "updateBy": null,
  1515. "updateTime": null,
  1516. "component": "",
  1517. "icon": "#",
  1518. "isCache": "0",
  1519. "isFrame": "1",
  1520. "menuName": "生成删除",
  1521. "menuType": "F",
  1522. "orderNum": 3,
  1523. "parentId": 115,
  1524. "path": "#",
  1525. "perms": "tool:gen:remove",
  1526. "queryParam": "",
  1527. "remark": "",
  1528. "status": "0",
  1529. "visible": "0"
  1530. },
  1531. {
  1532. "id": 1058,
  1533. "createBy": 1,
  1534. "createDept": 103,
  1535. "updateBy": null,
  1536. "updateTime": null,
  1537. "component": "",
  1538. "icon": "#",
  1539. "isCache": "0",
  1540. "isFrame": "1",
  1541. "menuName": "导入代码",
  1542. "menuType": "F",
  1543. "orderNum": 2,
  1544. "parentId": 115,
  1545. "path": "#",
  1546. "perms": "tool:gen:import",
  1547. "queryParam": "",
  1548. "remark": "",
  1549. "status": "0",
  1550. "visible": "0"
  1551. },
  1552. {
  1553. "id": 1059,
  1554. "createBy": 1,
  1555. "createDept": 103,
  1556. "updateBy": null,
  1557. "updateTime": null,
  1558. "component": "",
  1559. "icon": "#",
  1560. "isCache": "0",
  1561. "isFrame": "1",
  1562. "menuName": "预览代码",
  1563. "menuType": "F",
  1564. "orderNum": 4,
  1565. "parentId": 115,
  1566. "path": "#",
  1567. "perms": "tool:gen:preview",
  1568. "queryParam": "",
  1569. "remark": "",
  1570. "status": "0",
  1571. "visible": "0"
  1572. },
  1573. {
  1574. "id": 1060,
  1575. "createBy": 1,
  1576. "createDept": 103,
  1577. "updateBy": null,
  1578. "updateTime": null,
  1579. "component": "",
  1580. "icon": "#",
  1581. "isCache": "0",
  1582. "isFrame": "1",
  1583. "menuName": "生成代码",
  1584. "menuType": "F",
  1585. "orderNum": 5,
  1586. "parentId": 115,
  1587. "path": "#",
  1588. "perms": "tool:gen:code",
  1589. "queryParam": "",
  1590. "remark": "",
  1591. "status": "0",
  1592. "visible": "0"
  1593. },
  1594. {
  1595. "id": 1600,
  1596. "createBy": 1,
  1597. "createDept": 103,
  1598. "updateBy": null,
  1599. "updateTime": null,
  1600. "component": "",
  1601. "icon": "#",
  1602. "isCache": "0",
  1603. "isFrame": "1",
  1604. "menuName": "文件查询",
  1605. "menuType": "F",
  1606. "orderNum": 1,
  1607. "parentId": 118,
  1608. "path": "#",
  1609. "perms": "system:oss:query",
  1610. "queryParam": "",
  1611. "remark": "",
  1612. "status": "0",
  1613. "visible": "0"
  1614. },
  1615. {
  1616. "id": 1601,
  1617. "createBy": 1,
  1618. "createDept": 103,
  1619. "updateBy": null,
  1620. "updateTime": null,
  1621. "component": "",
  1622. "icon": "#",
  1623. "isCache": "0",
  1624. "isFrame": "1",
  1625. "menuName": "文件上传",
  1626. "menuType": "F",
  1627. "orderNum": 2,
  1628. "parentId": 118,
  1629. "path": "#",
  1630. "perms": "system:oss:upload",
  1631. "queryParam": "",
  1632. "remark": "",
  1633. "status": "0",
  1634. "visible": "0"
  1635. },
  1636. {
  1637. "id": 1602,
  1638. "createBy": 1,
  1639. "createDept": 103,
  1640. "updateBy": null,
  1641. "updateTime": null,
  1642. "component": "",
  1643. "icon": "#",
  1644. "isCache": "0",
  1645. "isFrame": "1",
  1646. "menuName": "文件下载",
  1647. "menuType": "F",
  1648. "orderNum": 3,
  1649. "parentId": 118,
  1650. "path": "#",
  1651. "perms": "system:oss:download",
  1652. "queryParam": "",
  1653. "remark": "",
  1654. "status": "0",
  1655. "visible": "0"
  1656. },
  1657. {
  1658. "id": 1603,
  1659. "createBy": 1,
  1660. "createDept": 103,
  1661. "updateBy": null,
  1662. "updateTime": null,
  1663. "component": "",
  1664. "icon": "#",
  1665. "isCache": "0",
  1666. "isFrame": "1",
  1667. "menuName": "文件删除",
  1668. "menuType": "F",
  1669. "orderNum": 4,
  1670. "parentId": 118,
  1671. "path": "#",
  1672. "perms": "system:oss:remove",
  1673. "queryParam": "",
  1674. "remark": "",
  1675. "status": "0",
  1676. "visible": "0"
  1677. },
  1678. {
  1679. "id": 1604,
  1680. "createBy": 1,
  1681. "createDept": 103,
  1682. "updateBy": null,
  1683. "updateTime": null,
  1684. "component": "",
  1685. "icon": "#",
  1686. "isCache": "0",
  1687. "isFrame": "1",
  1688. "menuName": "配置添加",
  1689. "menuType": "F",
  1690. "orderNum": 5,
  1691. "parentId": 118,
  1692. "path": "#",
  1693. "perms": "system:oss:add",
  1694. "queryParam": "",
  1695. "remark": "",
  1696. "status": "0",
  1697. "visible": "0"
  1698. },
  1699. {
  1700. "id": 1605,
  1701. "createBy": 1,
  1702. "createDept": 103,
  1703. "updateBy": null,
  1704. "updateTime": null,
  1705. "component": "",
  1706. "icon": "#",
  1707. "isCache": "0",
  1708. "isFrame": "1",
  1709. "menuName": "配置编辑",
  1710. "menuType": "F",
  1711. "orderNum": 6,
  1712. "parentId": 118,
  1713. "path": "#",
  1714. "perms": "system:oss:edit",
  1715. "queryParam": "",
  1716. "remark": "",
  1717. "status": "0",
  1718. "visible": "0"
  1719. },
  1720. {
  1721. "id": 1606,
  1722. "createBy": 1,
  1723. "createDept": 103,
  1724. "updateBy": null,
  1725. "updateTime": null,
  1726. "component": "",
  1727. "icon": "#",
  1728. "isCache": "0",
  1729. "isFrame": "1",
  1730. "menuName": "租户查询",
  1731. "menuType": "F",
  1732. "orderNum": 1,
  1733. "parentId": 121,
  1734. "path": "#",
  1735. "perms": "system:tenant:query",
  1736. "queryParam": "",
  1737. "remark": "",
  1738. "status": "0",
  1739. "visible": "0"
  1740. },
  1741. {
  1742. "id": 1607,
  1743. "createBy": 1,
  1744. "createDept": 103,
  1745. "updateBy": null,
  1746. "updateTime": null,
  1747. "component": "",
  1748. "icon": "#",
  1749. "isCache": "0",
  1750. "isFrame": "1",
  1751. "menuName": "租户新增",
  1752. "menuType": "F",
  1753. "orderNum": 2,
  1754. "parentId": 121,
  1755. "path": "#",
  1756. "perms": "system:tenant:add",
  1757. "queryParam": "",
  1758. "remark": "",
  1759. "status": "0",
  1760. "visible": "0"
  1761. },
  1762. {
  1763. "id": 1608,
  1764. "createBy": 1,
  1765. "createDept": 103,
  1766. "updateBy": null,
  1767. "updateTime": null,
  1768. "component": "",
  1769. "icon": "#",
  1770. "isCache": "0",
  1771. "isFrame": "1",
  1772. "menuName": "租户修改",
  1773. "menuType": "F",
  1774. "orderNum": 3,
  1775. "parentId": 121,
  1776. "path": "#",
  1777. "perms": "system:tenant:edit",
  1778. "queryParam": "",
  1779. "remark": "",
  1780. "status": "0",
  1781. "visible": "0"
  1782. },
  1783. {
  1784. "id": 1609,
  1785. "createBy": 1,
  1786. "createDept": 103,
  1787. "updateBy": null,
  1788. "updateTime": null,
  1789. "component": "",
  1790. "icon": "#",
  1791. "isCache": "0",
  1792. "isFrame": "1",
  1793. "menuName": "租户删除",
  1794. "menuType": "F",
  1795. "orderNum": 4,
  1796. "parentId": 121,
  1797. "path": "#",
  1798. "perms": "system:tenant:remove",
  1799. "queryParam": "",
  1800. "remark": "",
  1801. "status": "0",
  1802. "visible": "0"
  1803. },
  1804. {
  1805. "id": 1610,
  1806. "createBy": 1,
  1807. "createDept": 103,
  1808. "updateBy": null,
  1809. "updateTime": null,
  1810. "component": "",
  1811. "icon": "#",
  1812. "isCache": "0",
  1813. "isFrame": "1",
  1814. "menuName": "租户导出",
  1815. "menuType": "F",
  1816. "orderNum": 5,
  1817. "parentId": 121,
  1818. "path": "#",
  1819. "perms": "system:tenant:export",
  1820. "queryParam": "",
  1821. "remark": "",
  1822. "status": "0",
  1823. "visible": "0"
  1824. },
  1825. {
  1826. "id": 1611,
  1827. "createBy": 1,
  1828. "createDept": 103,
  1829. "updateBy": null,
  1830. "updateTime": null,
  1831. "component": "",
  1832. "icon": "#",
  1833. "isCache": "0",
  1834. "isFrame": "1",
  1835. "menuName": "租户套餐查询",
  1836. "menuType": "F",
  1837. "orderNum": 1,
  1838. "parentId": 122,
  1839. "path": "#",
  1840. "perms": "system:tenantPackage:query",
  1841. "queryParam": "",
  1842. "remark": "",
  1843. "status": "0",
  1844. "visible": "0"
  1845. },
  1846. {
  1847. "id": 1612,
  1848. "createBy": 1,
  1849. "createDept": 103,
  1850. "updateBy": null,
  1851. "updateTime": null,
  1852. "component": "",
  1853. "icon": "#",
  1854. "isCache": "0",
  1855. "isFrame": "1",
  1856. "menuName": "租户套餐新增",
  1857. "menuType": "F",
  1858. "orderNum": 2,
  1859. "parentId": 122,
  1860. "path": "#",
  1861. "perms": "system:tenantPackage:add",
  1862. "queryParam": "",
  1863. "remark": "",
  1864. "status": "0",
  1865. "visible": "0"
  1866. },
  1867. {
  1868. "id": 1613,
  1869. "createBy": 1,
  1870. "createDept": 103,
  1871. "updateBy": null,
  1872. "updateTime": null,
  1873. "component": "",
  1874. "icon": "#",
  1875. "isCache": "0",
  1876. "isFrame": "1",
  1877. "menuName": "租户套餐修改",
  1878. "menuType": "F",
  1879. "orderNum": 3,
  1880. "parentId": 122,
  1881. "path": "#",
  1882. "perms": "system:tenantPackage:edit",
  1883. "queryParam": "",
  1884. "remark": "",
  1885. "status": "0",
  1886. "visible": "0"
  1887. },
  1888. {
  1889. "id": 1614,
  1890. "createBy": 1,
  1891. "createDept": 103,
  1892. "updateBy": null,
  1893. "updateTime": null,
  1894. "component": "",
  1895. "icon": "#",
  1896. "isCache": "0",
  1897. "isFrame": "1",
  1898. "menuName": "租户套餐删除",
  1899. "menuType": "F",
  1900. "orderNum": 4,
  1901. "parentId": 122,
  1902. "path": "#",
  1903. "perms": "system:tenantPackage:remove",
  1904. "queryParam": "",
  1905. "remark": "",
  1906. "status": "0",
  1907. "visible": "0"
  1908. },
  1909. {
  1910. "id": 1615,
  1911. "createBy": 1,
  1912. "createDept": 103,
  1913. "updateBy": null,
  1914. "updateTime": null,
  1915. "component": "",
  1916. "icon": "#",
  1917. "isCache": "0",
  1918. "isFrame": "1",
  1919. "menuName": "租户套餐导出",
  1920. "menuType": "F",
  1921. "orderNum": 5,
  1922. "parentId": 122,
  1923. "path": "#",
  1924. "perms": "system:tenantPackage:export",
  1925. "queryParam": "",
  1926. "remark": "",
  1927. "status": "0",
  1928. "visible": "0"
  1929. },
  1930. {
  1931. "id": 2200,
  1932. "createBy": 1,
  1933. "createDept": 103,
  1934. "updateBy": 1,
  1935. "component": null,
  1936. "icon": "device",
  1937. "isCache": "0",
  1938. "isFrame": "1",
  1939. "menuName": "设备接入",
  1940. "menuType": "M",
  1941. "orderNum": 1,
  1942. "parentId": 0,
  1943. "path": "/equipment",
  1944. "perms": null,
  1945. "queryParam": null,
  1946. "remark": "",
  1947. "status": "0",
  1948. "visible": "0"
  1949. },
  1950. {
  1951. "id": 2201,
  1952. "createBy": 1,
  1953. "createDept": 103,
  1954. "updateBy": 1,
  1955. "component": "iot/equipment/categories/index",
  1956. "icon": "education",
  1957. "isCache": "1",
  1958. "isFrame": "1",
  1959. "menuName": "品类管理",
  1960. "menuType": "C",
  1961. "orderNum": 1,
  1962. "parentId": 2200,
  1963. "path": "categories",
  1964. "perms": null,
  1965. "queryParam": null,
  1966. "remark": "",
  1967. "status": "0",
  1968. "visible": "0"
  1969. },
  1970. {
  1971. "id": 2205,
  1972. "createBy": 1,
  1973. "createDept": 103,
  1974. "updateBy": 1,
  1975. "component": "iot/equipment/products/index",
  1976. "icon": "product-management",
  1977. "isCache": "1",
  1978. "isFrame": "1",
  1979. "menuName": "产品管理",
  1980. "menuType": "C",
  1981. "orderNum": 2,
  1982. "parentId": 2200,
  1983. "path": "products",
  1984. "perms": null,
  1985. "queryParam": null,
  1986. "remark": "",
  1987. "status": "0",
  1988. "visible": "0"
  1989. },
  1990. {
  1991. "id": 2206,
  1992. "createBy": 1,
  1993. "createDept": 103,
  1994. "updateBy": 1,
  1995. "component": "iot/equipment/devices/list",
  1996. "icon": "device",
  1997. "isCache": "1",
  1998. "isFrame": "1",
  1999. "menuName": "设备列表",
  2000. "menuType": "C",
  2001. "orderNum": 3,
  2002. "parentId": 2200,
  2003. "path": "devices",
  2004. "perms": null,
  2005. "queryParam": null,
  2006. "remark": "",
  2007. "status": "0",
  2008. "visible": "0"
  2009. },
  2010. {
  2011. "id": 2207,
  2012. "createBy": 1,
  2013. "createDept": 103,
  2014. "updateBy": 1,
  2015. "component": "iot/equipment/devices/virtualDevices",
  2016. "icon": "monitor",
  2017. "isCache": "1",
  2018. "isFrame": "1",
  2019. "menuName": "虚拟设备",
  2020. "menuType": "C",
  2021. "orderNum": 4,
  2022. "parentId": 2200,
  2023. "path": "virtualDevices",
  2024. "perms": null,
  2025. "queryParam": null,
  2026. "remark": "",
  2027. "status": "0",
  2028. "visible": "0"
  2029. },
  2030. {
  2031. "id": 2208,
  2032. "createBy": 1,
  2033. "createDept": 103,
  2034. "updateBy": 1,
  2035. "component": null,
  2036. "icon": "component",
  2037. "isCache": "0",
  2038. "isFrame": "1",
  2039. "menuName": "通讯组件管理",
  2040. "menuType": "M",
  2041. "orderNum": 2,
  2042. "parentId": 0,
  2043. "path": "/communication",
  2044. "perms": null,
  2045. "queryParam": null,
  2046. "remark": "",
  2047. "status": "0",
  2048. "visible": "0"
  2049. },
  2050. {
  2051. "id": 2209,
  2052. "createBy": 1,
  2053. "createDept": 103,
  2054. "updateBy": 1,
  2055. "component": "iot/communication/convertors/index",
  2056. "icon": "component",
  2057. "isCache": "1",
  2058. "isFrame": "1",
  2059. "menuName": "设备消息转换器",
  2060. "menuType": "C",
  2061. "orderNum": 1,
  2062. "parentId": 2208,
  2063. "path": "convertors",
  2064. "perms": null,
  2065. "queryParam": null,
  2066. "remark": "",
  2067. "status": "0",
  2068. "visible": "0"
  2069. },
  2070. {
  2071. "id": 2210,
  2072. "createBy": 1,
  2073. "createDept": 103,
  2074. "updateBy": 1,
  2075. "component": "iot/communication/components/index",
  2076. "icon": "component",
  2077. "isCache": "1",
  2078. "isFrame": "1",
  2079. "menuName": "通讯组件管理",
  2080. "menuType": "C",
  2081. "orderNum": 2,
  2082. "parentId": 2208,
  2083. "path": "components",
  2084. "perms": null,
  2085. "queryParam": null,
  2086. "remark": "",
  2087. "status": "0",
  2088. "visible": "0"
  2089. },
  2090. {
  2091. "id": 2211,
  2092. "createBy": 1,
  2093. "createDept": 103,
  2094. "updateBy": 1,
  2095. "component": null,
  2096. "icon": "dashboard",
  2097. "isCache": "0",
  2098. "isFrame": "1",
  2099. "menuName": "规则引擎",
  2100. "menuType": "M",
  2101. "orderNum": 3,
  2102. "parentId": 0,
  2103. "path": "ruleEngine",
  2104. "perms": null,
  2105. "queryParam": null,
  2106. "remark": "",
  2107. "status": "0",
  2108. "visible": "0"
  2109. },
  2110. {
  2111. "id": 2212,
  2112. "createBy": 1,
  2113. "createDept": 103,
  2114. "updateBy": 1,
  2115. "component": "iot/ruleEngine/ruleSys/index",
  2116. "icon": "component",
  2117. "isCache": "0",
  2118. "isFrame": "1",
  2119. "menuName": "规则管理",
  2120. "menuType": "C",
  2121. "orderNum": 1,
  2122. "parentId": 2211,
  2123. "path": "ruleSys",
  2124. "perms": null,
  2125. "queryParam": null,
  2126. "remark": "",
  2127. "status": "0",
  2128. "visible": "0"
  2129. },
  2130. {
  2131. "id": 2213,
  2132. "createBy": 1,
  2133. "createDept": 103,
  2134. "updateBy": 1,
  2135. "component": "iot/ruleEngine/scheduledTask/index",
  2136. "icon": "component",
  2137. "isCache": "0",
  2138. "isFrame": "1",
  2139. "menuName": "定时任务",
  2140. "menuType": "C",
  2141. "orderNum": 1,
  2142. "parentId": 2211,
  2143. "path": "scheduledTask",
  2144. "perms": null,
  2145. "queryParam": null,
  2146. "remark": "",
  2147. "status": "0",
  2148. "visible": "0"
  2149. },
  2150. {
  2151. "id": 2214,
  2152. "createBy": 1,
  2153. "createDept": 103,
  2154. "updateBy": 1,
  2155. "component": "iot/equipment/devices/detail",
  2156. "icon": "",
  2157. "isCache": "0",
  2158. "isFrame": "1",
  2159. "menuName": "设备详情",
  2160. "menuType": "C",
  2161. "orderNum": 1,
  2162. "parentId": 2200,
  2163. "path": "devicesDetail/:id",
  2164. "perms": null,
  2165. "queryParam": null,
  2166. "remark": "",
  2167. "status": "0",
  2168. "visible": "1"
  2169. },
  2170. {
  2171. "id": 2215,
  2172. "createBy": 1,
  2173. "createDept": 103,
  2174. "updateBy": 1,
  2175. "component": "iot/equipment/devices/virtualDeviceConfig",
  2176. "icon": "",
  2177. "isCache": "1",
  2178. "isFrame": "1",
  2179. "menuName": "虚拟设备详情",
  2180. "menuType": "C",
  2181. "orderNum": 16,
  2182. "parentId": 2200,
  2183. "path": "virtualDeviceConfig/:id",
  2184. "perms": null,
  2185. "queryParam": null,
  2186. "remark": "",
  2187. "status": "0",
  2188. "visible": "1"
  2189. },
  2190. {
  2191. "id": 2216,
  2192. "createBy": 1,
  2193. "createDept": 103,
  2194. "updateBy": 1,
  2195. "component": null,
  2196. "icon": "message",
  2197. "isCache": "0",
  2198. "isFrame": "1",
  2199. "menuName": "消息中心",
  2200. "menuType": "M",
  2201. "orderNum": 4,
  2202. "parentId": 0,
  2203. "path": "messageCenter",
  2204. "perms": null,
  2205. "queryParam": null,
  2206. "remark": "",
  2207. "status": "0",
  2208. "visible": "0"
  2209. },
  2210. {
  2211. "id": 2217,
  2212. "createBy": 1,
  2213. "createDept": 103,
  2214. "updateBy": 1,
  2215. "component": "iot/messageCenter/list",
  2216. "icon": "message",
  2217. "isCache": "0",
  2218. "isFrame": "1",
  2219. "menuName": "消息列表",
  2220. "menuType": "C",
  2221. "orderNum": 1,
  2222. "parentId": 2216,
  2223. "path": "messageCenterList",
  2224. "perms": null,
  2225. "queryParam": null,
  2226. "remark": "",
  2227. "status": "0",
  2228. "visible": "0"
  2229. },
  2230. {
  2231. "id": 2218,
  2232. "createBy": 1,
  2233. "createDept": 103,
  2234. "updateBy": 1,
  2235. "component": null,
  2236. "icon": "cascader",
  2237. "isCache": "0",
  2238. "isFrame": "1",
  2239. "menuName": "通道管理",
  2240. "menuType": "M",
  2241. "orderNum": 5,
  2242. "parentId": 0,
  2243. "path": "channel",
  2244. "perms": null,
  2245. "queryParam": null,
  2246. "remark": "",
  2247. "status": "0",
  2248. "visible": "0"
  2249. },
  2250. {
  2251. "id": 2219,
  2252. "createBy": 1,
  2253. "createDept": 103,
  2254. "updateBy": 1,
  2255. "component": "iot/channel/config",
  2256. "icon": "system",
  2257. "isCache": "0",
  2258. "isFrame": "1",
  2259. "menuName": "通道配置",
  2260. "menuType": "C",
  2261. "orderNum": 1,
  2262. "parentId": 2218,
  2263. "path": "channelConfig",
  2264. "perms": null,
  2265. "queryParam": null,
  2266. "remark": "",
  2267. "status": "0",
  2268. "visible": "0"
  2269. },
  2270. {
  2271. "id": 2220,
  2272. "createBy": 1,
  2273. "createDept": 103,
  2274. "updateBy": 1,
  2275. "component": "iot/channel/template",
  2276. "icon": "system",
  2277. "isCache": "0",
  2278. "isFrame": "1",
  2279. "menuName": "模板配置",
  2280. "menuType": "C",
  2281. "orderNum": 2,
  2282. "parentId": 2218,
  2283. "path": "template",
  2284. "perms": null,
  2285. "queryParam": null,
  2286. "remark": "",
  2287. "status": "0",
  2288. "visible": "0"
  2289. },
  2290. {
  2291. "id": 2221,
  2292. "createBy": 1,
  2293. "createDept": 103,
  2294. "updateBy": 1,
  2295. "component": null,
  2296. "icon": "alart",
  2297. "isCache": "0",
  2298. "isFrame": "1",
  2299. "menuName": "告警中心",
  2300. "menuType": "M",
  2301. "orderNum": 6,
  2302. "parentId": 0,
  2303. "path": "alarm",
  2304. "perms": null,
  2305. "queryParam": null,
  2306. "remark": "",
  2307. "status": "0",
  2308. "visible": "0"
  2309. },
  2310. {
  2311. "id": 2222,
  2312. "createBy": 1,
  2313. "createDept": 103,
  2314. "updateBy": 1,
  2315. "component": "iot/alarm/list",
  2316. "icon": "message",
  2317. "isCache": "0",
  2318. "isFrame": "1",
  2319. "menuName": "告警列表",
  2320. "menuType": "C",
  2321. "orderNum": 1,
  2322. "parentId": 2221,
  2323. "path": "list",
  2324. "perms": null,
  2325. "queryParam": null,
  2326. "remark": "",
  2327. "status": "0",
  2328. "visible": "0"
  2329. },
  2330. {
  2331. "id": 2223,
  2332. "createBy": 1,
  2333. "createDept": 103,
  2334. "updateBy": 1,
  2335. "component": "iot/alarm/config",
  2336. "icon": "system",
  2337. "isCache": "0",
  2338. "isFrame": "1",
  2339. "menuName": "告警配置",
  2340. "menuType": "C",
  2341. "orderNum": 2,
  2342. "parentId": 2221,
  2343. "path": "config",
  2344. "perms": null,
  2345. "queryParam": null,
  2346. "remark": "",
  2347. "status": "0",
  2348. "visible": "0"
  2349. }
  2350. ]