123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477 |
- [ {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322212,
- "updateBy" : null,
- "updateTime" : 1708254322212,
- "id" : 1,
- "menuName" : "系统管理",
- "parentId" : 0,
- "orderNum" : 1,
- "path" : "system",
- "component" : null,
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : "",
- "icon" : "system",
- "remark" : "系统管理目录",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322225,
- "updateBy" : 1,
- "updateTime" : 1708254322225,
- "id" : 2,
- "menuName" : "系统监控",
- "parentId" : 0,
- "orderNum" : 23,
- "path" : "monitor",
- "component" : null,
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : "",
- "icon" : "monitor",
- "remark" : "系统监控目录",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322226,
- "updateBy" : 1,
- "updateTime" : 1708254322226,
- "id" : 4,
- "menuName" : "铱塔官网",
- "parentId" : 0,
- "orderNum" : 25,
- "path" : "http://iotkit-open-source.gitee.io/document",
- "component" : null,
- "queryParam" : "",
- "isFrame" : "0",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : "",
- "icon" : "guide",
- "remark" : "铱塔官网",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322228,
- "updateBy" : 1,
- "updateTime" : 1708254322228,
- "id" : 6,
- "menuName" : "租户管理",
- "parentId" : 0,
- "orderNum" : 22,
- "path" : "tenant",
- "component" : null,
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : "",
- "icon" : "chart",
- "remark" : "租户管理目录",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322230,
- "updateBy" : null,
- "updateTime" : 1708254322230,
- "id" : 100,
- "menuName" : "用户管理",
- "parentId" : 1,
- "orderNum" : 1,
- "path" : "user",
- "component" : "system/user/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:list",
- "icon" : "user",
- "remark" : "用户管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322232,
- "updateBy" : null,
- "updateTime" : 1708254322232,
- "id" : 101,
- "menuName" : "角色管理",
- "parentId" : 1,
- "orderNum" : 2,
- "path" : "role",
- "component" : "system/role/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:role:list",
- "icon" : "peoples",
- "remark" : "角色管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322235,
- "updateBy" : null,
- "updateTime" : 1708254322235,
- "id" : 102,
- "menuName" : "菜单管理",
- "parentId" : 1,
- "orderNum" : 3,
- "path" : "menu",
- "component" : "system/menu/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:menu:list",
- "icon" : "tree-table",
- "remark" : "菜单管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322238,
- "updateBy" : null,
- "updateTime" : 1708254322238,
- "id" : 103,
- "menuName" : "部门管理",
- "parentId" : 1,
- "orderNum" : 4,
- "path" : "dept",
- "component" : "system/dept/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dept:list",
- "icon" : "tree",
- "remark" : "部门管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322240,
- "updateBy" : null,
- "updateTime" : 1708254322240,
- "id" : 104,
- "menuName" : "岗位管理",
- "parentId" : 1,
- "orderNum" : 5,
- "path" : "post",
- "component" : "system/post/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:post:list",
- "icon" : "post",
- "remark" : "岗位管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322241,
- "updateBy" : null,
- "updateTime" : 1708254322241,
- "id" : 105,
- "menuName" : "字典管理",
- "parentId" : 1,
- "orderNum" : 6,
- "path" : "dict",
- "component" : "system/dict/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dict:list",
- "icon" : "dict",
- "remark" : "字典管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322243,
- "updateBy" : null,
- "updateTime" : 1708254322243,
- "id" : 106,
- "menuName" : "参数设置",
- "parentId" : 1,
- "orderNum" : 7,
- "path" : "sysconfig",
- "component" : "system/config/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:config:list",
- "icon" : "edit",
- "remark" : "参数设置菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322245,
- "updateBy" : null,
- "updateTime" : 1708254322245,
- "id" : 107,
- "menuName" : "通知公告",
- "parentId" : 1,
- "orderNum" : 8,
- "path" : "notice",
- "component" : "system/notice/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:notice:list",
- "icon" : "message",
- "remark" : "通知公告菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322247,
- "updateBy" : null,
- "updateTime" : 1708254322247,
- "id" : 108,
- "menuName" : "日志管理",
- "parentId" : 1,
- "orderNum" : 9,
- "path" : "log",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : "",
- "icon" : "log",
- "remark" : "日志管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322249,
- "updateBy" : null,
- "updateTime" : 1708254322249,
- "id" : 109,
- "menuName" : "在线用户",
- "parentId" : 2,
- "orderNum" : 1,
- "path" : "online",
- "component" : "monitor/online/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:online:list",
- "icon" : "online",
- "remark" : "在线用户菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322252,
- "updateBy" : null,
- "updateTime" : 1708254322252,
- "id" : 118,
- "menuName" : "文件管理",
- "parentId" : 1,
- "orderNum" : 10,
- "path" : "oss",
- "component" : "system/oss/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:list",
- "icon" : "upload",
- "remark" : "文件管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322266,
- "updateBy" : null,
- "updateTime" : 1708254322266,
- "id" : 121,
- "menuName" : "租户管理",
- "parentId" : 6,
- "orderNum" : 1,
- "path" : "tenant",
- "component" : "system/tenant/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenant:list",
- "icon" : "list",
- "remark" : "租户管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322269,
- "updateBy" : null,
- "updateTime" : 1708254322269,
- "id" : 122,
- "menuName" : "租户套餐管理",
- "parentId" : 6,
- "orderNum" : 2,
- "path" : "tenantPackage",
- "component" : "system/tenantPackage/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenantPackage:list",
- "icon" : "form",
- "remark" : "租户套餐管理菜单",
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322261,
- "updateBy" : null,
- "updateTime" : 1708254322261,
- "id" : 423,
- "menuName" : "应用修改",
- "parentId" : 502,
- "orderNum" : 4,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:app:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322271,
- "updateBy" : null,
- "updateTime" : 1708254322271,
- "id" : 500,
- "menuName" : "操作日志",
- "parentId" : 108,
- "orderNum" : 1,
- "path" : "operlog",
- "component" : "monitor/operlog/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:operlog:list",
- "icon" : "form",
- "remark" : "操作日志菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322273,
- "updateBy" : null,
- "updateTime" : 1708254322273,
- "id" : 501,
- "menuName" : "登录日志",
- "parentId" : 108,
- "orderNum" : 2,
- "path" : "logininfor",
- "component" : "monitor/logininfor/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:logininfor:list",
- "icon" : "logininfor",
- "remark" : "登录日志菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322254,
- "updateBy" : null,
- "updateTime" : 1708254322254,
- "id" : 502,
- "menuName" : "应用管理",
- "parentId" : 1,
- "orderNum" : 11,
- "path" : "app",
- "component" : "system/app/index",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:app:list",
- "icon" : "phone",
- "remark" : "应用管理菜单",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322275,
- "updateBy" : null,
- "updateTime" : 1708254322275,
- "id" : 1001,
- "menuName" : "用户查询",
- "parentId" : 100,
- "orderNum" : 1,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322276,
- "updateBy" : null,
- "updateTime" : 1708254322276,
- "id" : 1002,
- "menuName" : "用户新增",
- "parentId" : 100,
- "orderNum" : 2,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322278,
- "updateBy" : null,
- "updateTime" : 1708254322278,
- "id" : 1003,
- "menuName" : "用户修改",
- "parentId" : 100,
- "orderNum" : 3,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322280,
- "updateBy" : null,
- "updateTime" : 1708254322280,
- "id" : 1004,
- "menuName" : "用户删除",
- "parentId" : 100,
- "orderNum" : 4,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322282,
- "updateBy" : null,
- "updateTime" : 1708254322282,
- "id" : 1005,
- "menuName" : "用户导出",
- "parentId" : 100,
- "orderNum" : 5,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322285,
- "updateBy" : null,
- "updateTime" : 1708254322285,
- "id" : 1006,
- "menuName" : "用户导入",
- "parentId" : 100,
- "orderNum" : 6,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:import",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322287,
- "updateBy" : null,
- "updateTime" : 1708254322287,
- "id" : 1007,
- "menuName" : "重置密码",
- "parentId" : 100,
- "orderNum" : 7,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:user:resetPwd",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322288,
- "updateBy" : null,
- "updateTime" : 1708254322288,
- "id" : 1008,
- "menuName" : "角色查询",
- "parentId" : 101,
- "orderNum" : 1,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:role:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322290,
- "updateBy" : null,
- "updateTime" : 1708254322290,
- "id" : 1009,
- "menuName" : "角色新增",
- "parentId" : 101,
- "orderNum" : 2,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:role:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322291,
- "updateBy" : null,
- "updateTime" : 1708254322291,
- "id" : 1010,
- "menuName" : "角色修改",
- "parentId" : 101,
- "orderNum" : 3,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:role:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322293,
- "updateBy" : null,
- "updateTime" : 1708254322293,
- "id" : 1011,
- "menuName" : "角色删除",
- "parentId" : 101,
- "orderNum" : 4,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:role:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322295,
- "updateBy" : null,
- "updateTime" : 1708254322295,
- "id" : 1012,
- "menuName" : "角色导出",
- "parentId" : 101,
- "orderNum" : 5,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:role:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322297,
- "updateBy" : null,
- "updateTime" : 1708254322297,
- "id" : 1013,
- "menuName" : "菜单查询",
- "parentId" : 102,
- "orderNum" : 1,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:menu:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322299,
- "updateBy" : null,
- "updateTime" : 1708254322299,
- "id" : 1014,
- "menuName" : "菜单新增",
- "parentId" : 102,
- "orderNum" : 2,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:menu:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322301,
- "updateBy" : null,
- "updateTime" : 1708254322301,
- "id" : 1015,
- "menuName" : "菜单修改",
- "parentId" : 102,
- "orderNum" : 3,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:menu:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322303,
- "updateBy" : null,
- "updateTime" : 1708254322303,
- "id" : 1016,
- "menuName" : "菜单删除",
- "parentId" : 102,
- "orderNum" : 4,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:menu:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322305,
- "updateBy" : null,
- "updateTime" : 1708254322305,
- "id" : 1017,
- "menuName" : "部门查询",
- "parentId" : 103,
- "orderNum" : 1,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dept:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322307,
- "updateBy" : null,
- "updateTime" : 1708254322307,
- "id" : 1018,
- "menuName" : "部门新增",
- "parentId" : 103,
- "orderNum" : 2,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dept:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322308,
- "updateBy" : null,
- "updateTime" : 1708254322308,
- "id" : 1019,
- "menuName" : "部门修改",
- "parentId" : 103,
- "orderNum" : 3,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dept:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322311,
- "updateBy" : null,
- "updateTime" : 1708254322311,
- "id" : 1020,
- "menuName" : "部门删除",
- "parentId" : 103,
- "orderNum" : 4,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dept:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322313,
- "updateBy" : null,
- "updateTime" : 1708254322313,
- "id" : 1021,
- "menuName" : "岗位查询",
- "parentId" : 104,
- "orderNum" : 1,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:post:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322315,
- "updateBy" : null,
- "updateTime" : 1708254322315,
- "id" : 1022,
- "menuName" : "岗位新增",
- "parentId" : 104,
- "orderNum" : 2,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:post:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322318,
- "updateBy" : null,
- "updateTime" : 1708254322318,
- "id" : 1023,
- "menuName" : "岗位修改",
- "parentId" : 104,
- "orderNum" : 3,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:post:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322319,
- "updateBy" : null,
- "updateTime" : 1708254322319,
- "id" : 1024,
- "menuName" : "岗位删除",
- "parentId" : 104,
- "orderNum" : 4,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:post:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322320,
- "updateBy" : null,
- "updateTime" : 1708254322320,
- "id" : 1025,
- "menuName" : "岗位导出",
- "parentId" : 104,
- "orderNum" : 5,
- "path" : "",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:post:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322322,
- "updateBy" : null,
- "updateTime" : 1708254322322,
- "id" : 1026,
- "menuName" : "字典查询",
- "parentId" : 105,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dict:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322323,
- "updateBy" : null,
- "updateTime" : 1708254322323,
- "id" : 1027,
- "menuName" : "字典新增",
- "parentId" : 105,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dict:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322326,
- "updateBy" : null,
- "updateTime" : 1708254322326,
- "id" : 1028,
- "menuName" : "字典修改",
- "parentId" : 105,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dict:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322328,
- "updateBy" : null,
- "updateTime" : 1708254322328,
- "id" : 1029,
- "menuName" : "字典删除",
- "parentId" : 105,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dict:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322331,
- "updateBy" : null,
- "updateTime" : 1708254322331,
- "id" : 1030,
- "menuName" : "字典导出",
- "parentId" : 105,
- "orderNum" : 5,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:dict:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322333,
- "updateBy" : null,
- "updateTime" : 1708254322333,
- "id" : 1031,
- "menuName" : "参数查询",
- "parentId" : 106,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:config:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322336,
- "updateBy" : null,
- "updateTime" : 1708254322336,
- "id" : 1032,
- "menuName" : "参数新增",
- "parentId" : 106,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:config:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322338,
- "updateBy" : null,
- "updateTime" : 1708254322338,
- "id" : 1033,
- "menuName" : "参数修改",
- "parentId" : 106,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:config:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322340,
- "updateBy" : null,
- "updateTime" : 1708254322340,
- "id" : 1034,
- "menuName" : "参数删除",
- "parentId" : 106,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:config:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322343,
- "updateBy" : null,
- "updateTime" : 1708254322343,
- "id" : 1035,
- "menuName" : "参数导出",
- "parentId" : 106,
- "orderNum" : 5,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:config:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322345,
- "updateBy" : null,
- "updateTime" : 1708254322345,
- "id" : 1036,
- "menuName" : "公告查询",
- "parentId" : 107,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:notice:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322347,
- "updateBy" : null,
- "updateTime" : 1708254322347,
- "id" : 1037,
- "menuName" : "公告新增",
- "parentId" : 107,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:notice:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322350,
- "updateBy" : null,
- "updateTime" : 1708254322350,
- "id" : 1038,
- "menuName" : "公告修改",
- "parentId" : 107,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:notice:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322353,
- "updateBy" : null,
- "updateTime" : 1708254322353,
- "id" : 1039,
- "menuName" : "公告删除",
- "parentId" : 107,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:notice:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322355,
- "updateBy" : null,
- "updateTime" : 1708254322355,
- "id" : 1040,
- "menuName" : "操作查询",
- "parentId" : 500,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:operlog:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322357,
- "updateBy" : null,
- "updateTime" : 1708254322357,
- "id" : 1041,
- "menuName" : "操作删除",
- "parentId" : 500,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:operlog:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322359,
- "updateBy" : null,
- "updateTime" : 1708254322359,
- "id" : 1042,
- "menuName" : "日志导出",
- "parentId" : 500,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:operlog:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322362,
- "updateBy" : null,
- "updateTime" : 1708254322362,
- "id" : 1043,
- "menuName" : "登录查询",
- "parentId" : 501,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:logininfor:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322365,
- "updateBy" : null,
- "updateTime" : 1708254322365,
- "id" : 1044,
- "menuName" : "登录删除",
- "parentId" : 501,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:logininfor:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322367,
- "updateBy" : null,
- "updateTime" : 1708254322367,
- "id" : 1045,
- "menuName" : "日志导出",
- "parentId" : 501,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:logininfor:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322372,
- "updateBy" : null,
- "updateTime" : 1708254322372,
- "id" : 1046,
- "menuName" : "在线查询",
- "parentId" : 109,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:online:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322374,
- "updateBy" : null,
- "updateTime" : 1708254322374,
- "id" : 1047,
- "menuName" : "批量强退",
- "parentId" : 109,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:online:batchLogout",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322376,
- "updateBy" : null,
- "updateTime" : 1708254322376,
- "id" : 1048,
- "menuName" : "单条强退",
- "parentId" : 109,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:online:forceLogout",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322379,
- "updateBy" : null,
- "updateTime" : 1708254322379,
- "id" : 1050,
- "menuName" : "账户解锁",
- "parentId" : 501,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "monitor:logininfor:unlock",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322381,
- "updateBy" : null,
- "updateTime" : 1708254322381,
- "id" : 1600,
- "menuName" : "文件查询",
- "parentId" : 118,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322384,
- "updateBy" : null,
- "updateTime" : 1708254322384,
- "id" : 1601,
- "menuName" : "文件上传",
- "parentId" : 118,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:upload",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322386,
- "updateBy" : null,
- "updateTime" : 1708254322386,
- "id" : 1602,
- "menuName" : "文件下载",
- "parentId" : 118,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:download",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322388,
- "updateBy" : null,
- "updateTime" : 1708254322388,
- "id" : 1603,
- "menuName" : "文件删除",
- "parentId" : 118,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322391,
- "updateBy" : null,
- "updateTime" : 1708254322391,
- "id" : 1604,
- "menuName" : "配置添加",
- "parentId" : 118,
- "orderNum" : 5,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322393,
- "updateBy" : null,
- "updateTime" : 1708254322393,
- "id" : 1605,
- "menuName" : "配置编辑",
- "parentId" : 118,
- "orderNum" : 6,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:oss:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322394,
- "updateBy" : null,
- "updateTime" : 1708254322394,
- "id" : 1606,
- "menuName" : "租户查询",
- "parentId" : 121,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenant:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322398,
- "updateBy" : null,
- "updateTime" : 1708254322398,
- "id" : 1607,
- "menuName" : "租户新增",
- "parentId" : 121,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenant:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322402,
- "updateBy" : null,
- "updateTime" : 1708254322402,
- "id" : 1608,
- "menuName" : "租户修改",
- "parentId" : 121,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenant:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322405,
- "updateBy" : null,
- "updateTime" : 1708254322405,
- "id" : 1609,
- "menuName" : "租户删除",
- "parentId" : 121,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenant:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322408,
- "updateBy" : null,
- "updateTime" : 1708254322408,
- "id" : 1610,
- "menuName" : "租户导出",
- "parentId" : 121,
- "orderNum" : 5,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenant:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322412,
- "updateBy" : null,
- "updateTime" : 1708254322412,
- "id" : 1611,
- "menuName" : "租户套餐查询",
- "parentId" : 122,
- "orderNum" : 1,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenantPackage:query",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322414,
- "updateBy" : null,
- "updateTime" : 1708254322414,
- "id" : 1612,
- "menuName" : "租户套餐新增",
- "parentId" : 122,
- "orderNum" : 2,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenantPackage:add",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322420,
- "updateBy" : null,
- "updateTime" : 1708254322420,
- "id" : 1613,
- "menuName" : "租户套餐修改",
- "parentId" : 122,
- "orderNum" : 3,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenantPackage:edit",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322423,
- "updateBy" : null,
- "updateTime" : 1708254322423,
- "id" : 1614,
- "menuName" : "租户套餐删除",
- "parentId" : 122,
- "orderNum" : 4,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenantPackage:remove",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322425,
- "updateBy" : null,
- "updateTime" : 1708254322425,
- "id" : 1615,
- "menuName" : "租户套餐导出",
- "parentId" : 122,
- "orderNum" : 5,
- "path" : "#",
- "component" : "",
- "queryParam" : "",
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:tenantPackage:export",
- "icon" : "#",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322428,
- "updateBy" : 1,
- "updateTime" : 1708254322428,
- "id" : 2200,
- "menuName" : "设备接入",
- "parentId" : 0,
- "orderNum" : 1,
- "path" : "/equipment",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : null,
- "icon" : "device",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322429,
- "updateBy" : null,
- "updateTime" : 1708254322429,
- "id" : 2201,
- "menuName" : "品类管理",
- "parentId" : 2200,
- "orderNum" : 1,
- "path" : "categories",
- "component" : "iot/equipment/categories/index",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "1",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:category:list",
- "icon" : "education",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322432,
- "updateBy" : null,
- "updateTime" : 1708254322432,
- "id" : 2205,
- "menuName" : "产品管理",
- "parentId" : 2200,
- "orderNum" : 2,
- "path" : "products",
- "component" : "iot/equipment/products/index",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "1",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:product:list",
- "icon" : "product-management",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322435,
- "updateBy" : null,
- "updateTime" : 1708254322435,
- "id" : 2206,
- "menuName" : "设备列表",
- "parentId" : 2200,
- "orderNum" : 3,
- "path" : "devices",
- "component" : "iot/equipment/devices/list",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "1",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:device:list",
- "icon" : "device",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322437,
- "updateBy" : null,
- "updateTime" : 1708254322437,
- "id" : 2207,
- "menuName" : "虚拟设备",
- "parentId" : 2200,
- "orderNum" : 4,
- "path" : "virtualDevices",
- "component" : "iot/equipment/devices/virtualDevices",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "1",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:virtualDevice:list",
- "icon" : "monitor",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322441,
- "updateBy" : null,
- "updateTime" : 1708254322441,
- "id" : 2210,
- "menuName" : "插件管理",
- "parentId" : 2200,
- "orderNum" : 4,
- "path" : "plugins",
- "component" : "iot/plugins/index",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "1",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:plugin:list",
- "icon" : "component",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322451,
- "updateBy" : 1,
- "updateTime" : 1708254322451,
- "id" : 2211,
- "menuName" : "规则引擎",
- "parentId" : 0,
- "orderNum" : 3,
- "path" : "ruleEngine",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : null,
- "icon" : "dashboard",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322453,
- "updateBy" : null,
- "updateTime" : 1708254322453,
- "id" : 2212,
- "menuName" : "规则管理",
- "parentId" : 2211,
- "orderNum" : 1,
- "path" : "ruleSys",
- "component" : "iot/ruleEngine/ruleSys/index",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:rule:list",
- "icon" : "component",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322455,
- "updateBy" : null,
- "updateTime" : 1708254322455,
- "id" : 2213,
- "menuName" : "定时任务",
- "parentId" : 2211,
- "orderNum" : 1,
- "path" : "scheduledTask",
- "component" : "iot/ruleEngine/scheduledTask/index",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:task:list",
- "icon" : "component",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322456,
- "updateBy" : 1,
- "updateTime" : 1708254322456,
- "id" : 2214,
- "menuName" : "设备详情",
- "parentId" : 2200,
- "orderNum" : 1,
- "path" : "devicesDetail/:id",
- "component" : "iot/equipment/devices/detail",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "1",
- "status" : "0",
- "perms" : null,
- "icon" : "",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322457,
- "updateBy" : 1,
- "updateTime" : 1708254322457,
- "id" : 2215,
- "menuName" : "虚拟设备详情",
- "parentId" : 2200,
- "orderNum" : 16,
- "path" : "virtualDeviceConfig/:id",
- "component" : "iot/equipment/devices/virtualDeviceConfig",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "1",
- "menuType" : "C",
- "visible" : "1",
- "status" : "0",
- "perms" : null,
- "icon" : "",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322459,
- "updateBy" : 1,
- "updateTime" : 1708254322459,
- "id" : 2216,
- "menuName" : "消息中心",
- "parentId" : 0,
- "orderNum" : 4,
- "path" : "messageCenter",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : null,
- "icon" : "message",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322461,
- "updateBy" : 1,
- "updateTime" : 1708254322461,
- "id" : 2217,
- "menuName" : "消息列表",
- "parentId" : 2216,
- "orderNum" : 1,
- "path" : "messageCenterList",
- "component" : "iot/messageCenter/list",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : null,
- "icon" : "message",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322463,
- "updateBy" : 1,
- "updateTime" : 1708254322463,
- "id" : 2218,
- "menuName" : "通道管理",
- "parentId" : 0,
- "orderNum" : 5,
- "path" : "channel",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : null,
- "icon" : "cascader",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322466,
- "updateBy" : null,
- "updateTime" : 1708254322466,
- "id" : 2219,
- "menuName" : "通道配置",
- "parentId" : 2218,
- "orderNum" : 1,
- "path" : "channelConfig",
- "component" : "iot/channel/config",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:channel:list",
- "icon" : "system",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322467,
- "updateBy" : null,
- "updateTime" : 1708254322467,
- "id" : 2220,
- "menuName" : "模板配置",
- "parentId" : 2218,
- "orderNum" : 2,
- "path" : "template",
- "component" : "iot/channel/template",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:channel:list",
- "icon" : "system",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322470,
- "updateBy" : 1,
- "updateTime" : 1708254322470,
- "id" : 2221,
- "menuName" : "告警中心",
- "parentId" : 0,
- "orderNum" : 6,
- "path" : "alarm",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "M",
- "visible" : "0",
- "status" : "0",
- "perms" : null,
- "icon" : "alart",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322471,
- "updateBy" : null,
- "updateTime" : 1708254322471,
- "id" : 2222,
- "menuName" : "告警列表",
- "parentId" : 2221,
- "orderNum" : 1,
- "path" : "list",
- "component" : "iot/alarm/list",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alert:list",
- "icon" : "message",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322473,
- "updateBy" : null,
- "updateTime" : 1708254322473,
- "id" : 2223,
- "menuName" : "告警配置",
- "parentId" : 2221,
- "orderNum" : 2,
- "path" : "config",
- "component" : "iot/alarm/config",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alertConfig:list",
- "icon" : "system",
- "remark" : "",
- "children" : [ ]
- }, {
- "createDept" : 103,
- "createBy" : 1,
- "createTime" : 1708254322475,
- "updateBy" : null,
- "updateTime" : 1708254322475,
- "id" : 2225,
- "menuName" : "OTA",
- "parentId" : 0,
- "orderNum" : 1,
- "path" : "upgradePack",
- "component" : "iot/ota/upgradePack/index",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:ota:list",
- "icon" : "upload",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322256,
- "updateBy" : null,
- "updateTime" : 1708254322256,
- "id" : 442129,
- "menuName" : "应用查询",
- "parentId" : 502,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:app:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322257,
- "updateBy" : null,
- "updateTime" : 1708254322257,
- "id" : 44212332,
- "menuName" : "应用添加",
- "parentId" : 502,
- "orderNum" : 2,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:app:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322264,
- "updateBy" : null,
- "updateTime" : 1708254322264,
- "id" : 4234553537,
- "menuName" : "应用导出",
- "parentId" : 502,
- "orderNum" : 5,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:app:export",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322259,
- "updateBy" : null,
- "updateTime" : 1708254322259,
- "id" : 442123323123,
- "menuName" : "应用删除",
- "parentId" : 502,
- "orderNum" : 3,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "system:app:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322477,
- "updateBy" : null,
- "updateTime" : 1708254322477,
- "id" : 441851175424069,
- "menuName" : "品类查询",
- "parentId" : 2201,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:category:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322479,
- "updateBy" : null,
- "updateTime" : 1708254322479,
- "id" : 441851310268485,
- "menuName" : "品类修改",
- "parentId" : 2201,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:category:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322482,
- "updateBy" : null,
- "updateTime" : 1708254322482,
- "id" : 441851485323333,
- "menuName" : "品类删除",
- "parentId" : 2201,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:category:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322485,
- "updateBy" : null,
- "updateTime" : 1708254322485,
- "id" : 441853056651333,
- "menuName" : "产品查询",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:product:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322487,
- "updateBy" : null,
- "updateTime" : 1708254322487,
- "id" : 441853220675653,
- "menuName" : "产品添加",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:product:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322489,
- "updateBy" : null,
- "updateTime" : 1708254322489,
- "id" : 441853285179461,
- "menuName" : "产品修改",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:product:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322491,
- "updateBy" : null,
- "updateTime" : 1708254322491,
- "id" : 441862726639685,
- "menuName" : "产品删除",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:product:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322492,
- "updateBy" : null,
- "updateTime" : 1708254322492,
- "id" : 441862877970501,
- "menuName" : "物模型查询",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:thingModel:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322494,
- "updateBy" : null,
- "updateTime" : 1708254322494,
- "id" : 441862978281541,
- "menuName" : "物模型修改",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:thingModel:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322495,
- "updateBy" : null,
- "updateTime" : 1708254322495,
- "id" : 441863058096197,
- "menuName" : "物模型删除",
- "parentId" : 2205,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:thingModel:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322497,
- "updateBy" : null,
- "updateTime" : 1708254322497,
- "id" : 441869217525829,
- "menuName" : "设备查询",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:device:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322500,
- "updateBy" : null,
- "updateTime" : 1708254322500,
- "id" : 441869327724613,
- "menuName" : "设备添加",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:device:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322502,
- "updateBy" : null,
- "updateTime" : 1708254322502,
- "id" : 441869398310981,
- "menuName" : "设备修改",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:device:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322506,
- "updateBy" : null,
- "updateTime" : 1708254322506,
- "id" : 441869530075205,
- "menuName" : "设备删除",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:device:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322507,
- "updateBy" : null,
- "updateTime" : 1708254322507,
- "id" : 441869649666117,
- "menuName" : "设备控制",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:device:ctrl",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322509,
- "updateBy" : null,
- "updateTime" : 1708254322509,
- "id" : 441869802405957,
- "menuName" : "设备日志查询",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:deviceLog:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322510,
- "updateBy" : null,
- "updateTime" : 1708254322510,
- "id" : 441870007808069,
- "menuName" : "设备组查询",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:deviceGroup:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322512,
- "updateBy" : null,
- "updateTime" : 1708254322512,
- "id" : 441870091001925,
- "menuName" : "设备组添加",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:deviceGroup:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322513,
- "updateBy" : null,
- "updateTime" : 1708254322513,
- "id" : 441870227968069,
- "menuName" : "设备组修改",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:deviceGroup:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322514,
- "updateBy" : null,
- "updateTime" : 1708254322514,
- "id" : 441870309814341,
- "menuName" : "设备组删除",
- "parentId" : 2206,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:deviceGroup:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322515,
- "updateBy" : null,
- "updateTime" : 1708254322515,
- "id" : 441870607315013,
- "menuName" : "虚拟设备查询",
- "parentId" : 2207,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:virtualDevice:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322517,
- "updateBy" : null,
- "updateTime" : 1708254322517,
- "id" : 441870717771845,
- "menuName" : "虚拟设备添加",
- "parentId" : 2207,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:virtualDevice:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322519,
- "updateBy" : null,
- "updateTime" : 1708254322519,
- "id" : 441870780928069,
- "menuName" : "虚拟设备修改",
- "parentId" : 2207,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:virtualDevice:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322521,
- "updateBy" : null,
- "updateTime" : 1708254322521,
- "id" : 441870881378373,
- "menuName" : "虚拟设备删除",
- "parentId" : 2207,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:virtualDevice:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322443,
- "updateBy" : null,
- "updateTime" : 1708254640153,
- "id" : 442127357415493,
- "menuName" : "插件添加",
- "parentId" : 2210,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:plugin:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322444,
- "updateBy" : null,
- "updateTime" : 1708254684380,
- "id" : 442127532781637,
- "menuName" : "插件修改",
- "parentId" : 2210,
- "orderNum" : 2,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:plugin:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322446,
- "updateBy" : null,
- "updateTime" : 1708254700187,
- "id" : 442127596064837,
- "menuName" : "插件查询",
- "parentId" : 2210,
- "orderNum" : 4,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:plugin:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322447,
- "updateBy" : null,
- "updateTime" : 1708254693831,
- "id" : 442127705182277,
- "menuName" : "插件删除",
- "parentId" : 2210,
- "orderNum" : 3,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:plugin:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322548,
- "updateBy" : null,
- "updateTime" : 1708254322548,
- "id" : 442128593006661,
- "menuName" : "规则查询",
- "parentId" : 2212,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:rule:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322551,
- "updateBy" : null,
- "updateTime" : 1708254322551,
- "id" : 442128733950021,
- "menuName" : "规则修改",
- "parentId" : 2212,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:rule:eidt",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322553,
- "updateBy" : null,
- "updateTime" : 1708254322553,
- "id" : 442128795189317,
- "menuName" : "规则删除",
- "parentId" : 2212,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:rule:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322556,
- "updateBy" : null,
- "updateTime" : 1708254322556,
- "id" : 442129175347269,
- "menuName" : "定时任务查询",
- "parentId" : 2213,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:task:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322558,
- "updateBy" : null,
- "updateTime" : 1708254322558,
- "id" : 442129320091717,
- "menuName" : "定时任务修改",
- "parentId" : 2213,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:task:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322561,
- "updateBy" : null,
- "updateTime" : 1708254322561,
- "id" : 442129388187717,
- "menuName" : "定时任务删除",
- "parentId" : 2213,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:task:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322565,
- "updateBy" : null,
- "updateTime" : 1708254322565,
- "id" : 442130419388485,
- "menuName" : "通道添加",
- "parentId" : 2219,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:channel:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322568,
- "updateBy" : null,
- "updateTime" : 1708254322568,
- "id" : 442130475098181,
- "menuName" : "通道修改",
- "parentId" : 2219,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:channel:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322570,
- "updateBy" : null,
- "updateTime" : 1708254322570,
- "id" : 442130534805573,
- "menuName" : "通道删除",
- "parentId" : 2219,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:channel:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322572,
- "updateBy" : null,
- "updateTime" : 1708254322572,
- "id" : 442130860195909,
- "menuName" : "告警配置查询",
- "parentId" : 2223,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alertConfig:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322574,
- "updateBy" : null,
- "updateTime" : 1708254322574,
- "id" : 442130932109381,
- "menuName" : "告警配置添加",
- "parentId" : 2223,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alertConfig:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322576,
- "updateBy" : null,
- "updateTime" : 1708254322576,
- "id" : 442131029889093,
- "menuName" : "告警配置修改",
- "parentId" : 2223,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alertConfig:edit",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322578,
- "updateBy" : null,
- "updateTime" : 1708254322578,
- "id" : 442131115253829,
- "menuName" : "告警配置删除",
- "parentId" : 2223,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alertConfig:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322581,
- "updateBy" : null,
- "updateTime" : 1708254322581,
- "id" : 442131294584901,
- "menuName" : "告警查询",
- "parentId" : 2222,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:alert:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322585,
- "updateBy" : null,
- "updateTime" : 1708254322585,
- "id" : 442143693541445,
- "menuName" : "通道查询",
- "parentId" : 2219,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:channel:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322587,
- "updateBy" : null,
- "updateTime" : 1708254322587,
- "id" : 442149490409541,
- "menuName" : "OTA查询",
- "parentId" : 2225,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:ota:query",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322589,
- "updateBy" : null,
- "updateTime" : 1708254322589,
- "id" : 442149580529733,
- "menuName" : "OTA添加",
- "parentId" : 2225,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:ota:add",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322592,
- "updateBy" : null,
- "updateTime" : 1708254322592,
- "id" : 442149650423877,
- "menuName" : "OTA删除",
- "parentId" : 2225,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:ota:remove",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322595,
- "updateBy" : null,
- "updateTime" : 1708254322595,
- "id" : 442149811572805,
- "menuName" : "执行升级",
- "parentId" : 2225,
- "orderNum" : 1,
- "path" : "",
- "component" : null,
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "F",
- "visible" : "0",
- "status" : "0",
- "perms" : "iot:ota:upgrade",
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- }, {
- "createDept" : null,
- "createBy" : null,
- "createTime" : 1708254322439,
- "updateBy" : null,
- "updateTime" : 1708254322439,
- "id" : 461626374598725,
- "menuName" : "插件详情",
- "parentId" : 2200,
- "orderNum" : 3,
- "path" : "detail/:id",
- "component" : "iot/plugins/detail",
- "queryParam" : null,
- "isFrame" : "1",
- "isCache" : "0",
- "menuType" : "C",
- "visible" : "1",
- "status" : "0",
- "perms" : null,
- "icon" : "",
- "remark" : null,
- "children" : [ ]
- } ]
|