index.json 396 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809
  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "id": 154,
  6. "menuCode": "",
  7. "systemCode": null,
  8. "menuName": "设置中心",
  9. "url": "",
  10. "rightType": 1,
  11. "parentCode": 0,
  12. "displayOrder": 0,
  13. "isApp": 0,
  14. "enabled": 1,
  15. "createdBy": 9999,
  16. "createdAt": "2019-08-08 00:00:00",
  17. "updatedBy": 9999,
  18. "updatedAt": "2019-08-08 00:00:00",
  19. "perms": "pc:setting",
  20. "iconUrl": null,
  21. "description": "旧服务之窗导入",
  22. "moduleId": null,
  23. "isOuterChain": 0,
  24. "isPopup": 0,
  25. "cache": 0,
  26. "component": null,
  27. "children": [
  28. {
  29. "id": 155,
  30. "menuCode": "",
  31. "systemCode": null,
  32. "menuName": "公共服务配置",
  33. "url": "service/type/serviceTypeInfoPage?funcid=155",
  34. "rightType": 2,
  35. "parentCode": 154,
  36. "displayOrder": 0,
  37. "isApp": 0,
  38. "enabled": 1,
  39. "createdBy": 9999,
  40. "createdAt": "2019-08-08 00:00:00",
  41. "updatedBy": 9999,
  42. "updatedAt": "2019-08-08 00:00:00",
  43. "perms": "pc:setting:service",
  44. "iconUrl": null,
  45. "description": "旧服务之窗导入",
  46. "moduleId": null,
  47. "isOuterChain": 0,
  48. "isPopup": 0,
  49. "cache": 0,
  50. "component": null,
  51. "children": [
  52. {
  53. "id": 284,
  54. "menuCode": "",
  55. "systemCode": null,
  56. "menuName": "新增",
  57. "url": null,
  58. "rightType": 3,
  59. "parentCode": 155,
  60. "displayOrder": 1,
  61. "isApp": 0,
  62. "enabled": 1,
  63. "createdBy": 9999,
  64. "createdAt": "2019-08-08 00:00:00",
  65. "updatedBy": 9999,
  66. "updatedAt": "2019-08-08 00:00:00",
  67. "perms": "pc:setting:service:add",
  68. "iconUrl": null,
  69. "description": "旧服务之窗导入",
  70. "moduleId": null,
  71. "isOuterChain": 0,
  72. "isPopup": 0,
  73. "cache": 0,
  74. "component": null,
  75. "children": null,
  76. "default": true,
  77. "leaf": false
  78. },
  79. {
  80. "id": 285,
  81. "menuCode": "",
  82. "systemCode": null,
  83. "menuName": "修改",
  84. "url": null,
  85. "rightType": 3,
  86. "parentCode": 155,
  87. "displayOrder": 2,
  88. "isApp": 0,
  89. "enabled": 1,
  90. "createdBy": 9999,
  91. "createdAt": "2019-08-08 00:00:00",
  92. "updatedBy": 9999,
  93. "updatedAt": "2019-08-08 00:00:00",
  94. "perms": "pc:setting:service:edit",
  95. "iconUrl": null,
  96. "description": "旧服务之窗导入",
  97. "moduleId": null,
  98. "isOuterChain": 0,
  99. "isPopup": 0,
  100. "cache": 0,
  101. "component": null,
  102. "children": null,
  103. "default": true,
  104. "leaf": false
  105. },
  106. {
  107. "id": 286,
  108. "menuCode": "",
  109. "systemCode": null,
  110. "menuName": "删除",
  111. "url": null,
  112. "rightType": 3,
  113. "parentCode": 155,
  114. "displayOrder": 3,
  115. "isApp": 0,
  116. "enabled": 1,
  117. "createdBy": 9999,
  118. "createdAt": "2019-08-08 00:00:00",
  119. "updatedBy": 9999,
  120. "updatedAt": "2019-08-08 00:00:00",
  121. "perms": "pc:setting:service:delete",
  122. "iconUrl": null,
  123. "description": "旧服务之窗导入",
  124. "moduleId": null,
  125. "isOuterChain": 0,
  126. "isPopup": 0,
  127. "cache": 0,
  128. "component": null,
  129. "children": null,
  130. "default": true,
  131. "leaf": false
  132. }
  133. ],
  134. "default": true,
  135. "leaf": true
  136. },
  137. {
  138. "id": 156,
  139. "menuCode": "",
  140. "systemCode": null,
  141. "menuName": "项目服务配置",
  142. "url": "service/allocation/serviceProjectAllocationPage?funcid=156",
  143. "rightType": 2,
  144. "parentCode": 154,
  145. "displayOrder": 0,
  146. "isApp": 0,
  147. "enabled": 1,
  148. "createdBy": 9999,
  149. "createdAt": "2019-08-08 00:00:00",
  150. "updatedBy": 9999,
  151. "updatedAt": "2019-08-08 00:00:00",
  152. "perms": "pc:setting:project",
  153. "iconUrl": null,
  154. "description": "旧服务之窗导入",
  155. "moduleId": null,
  156. "isOuterChain": 0,
  157. "isPopup": 0,
  158. "cache": 0,
  159. "component": null,
  160. "children": [
  161. {
  162. "id": 287,
  163. "menuCode": "",
  164. "systemCode": null,
  165. "menuName": "新增",
  166. "url": null,
  167. "rightType": 3,
  168. "parentCode": 156,
  169. "displayOrder": 1,
  170. "isApp": 0,
  171. "enabled": 1,
  172. "createdBy": 9999,
  173. "createdAt": "2019-08-08 00:00:00",
  174. "updatedBy": 9999,
  175. "updatedAt": "2019-08-08 00:00:00",
  176. "perms": "pc:setting:project:add",
  177. "iconUrl": null,
  178. "description": "旧服务之窗导入",
  179. "moduleId": null,
  180. "isOuterChain": 0,
  181. "isPopup": 0,
  182. "cache": 0,
  183. "component": null,
  184. "children": null,
  185. "default": true,
  186. "leaf": false
  187. },
  188. {
  189. "id": 288,
  190. "menuCode": "",
  191. "systemCode": null,
  192. "menuName": "修改",
  193. "url": null,
  194. "rightType": 3,
  195. "parentCode": 156,
  196. "displayOrder": 2,
  197. "isApp": 0,
  198. "enabled": 1,
  199. "createdBy": 9999,
  200. "createdAt": "2019-08-08 00:00:00",
  201. "updatedBy": 9999,
  202. "updatedAt": "2019-08-08 00:00:00",
  203. "perms": "pc:setting:project:edit",
  204. "iconUrl": null,
  205. "description": "旧服务之窗导入",
  206. "moduleId": null,
  207. "isOuterChain": 0,
  208. "isPopup": 0,
  209. "cache": 0,
  210. "component": null,
  211. "children": null,
  212. "default": true,
  213. "leaf": false
  214. },
  215. {
  216. "id": 289,
  217. "menuCode": "",
  218. "systemCode": null,
  219. "menuName": "删除",
  220. "url": null,
  221. "rightType": 3,
  222. "parentCode": 156,
  223. "displayOrder": 3,
  224. "isApp": 0,
  225. "enabled": 1,
  226. "createdBy": 9999,
  227. "createdAt": "2019-08-08 00:00:00",
  228. "updatedBy": 9999,
  229. "updatedAt": "2019-08-08 00:00:00",
  230. "perms": "pc:setting:project:delete",
  231. "iconUrl": null,
  232. "description": "旧服务之窗导入",
  233. "moduleId": null,
  234. "isOuterChain": 0,
  235. "isPopup": 0,
  236. "cache": 0,
  237. "component": null,
  238. "children": null,
  239. "default": true,
  240. "leaf": false
  241. }
  242. ],
  243. "default": true,
  244. "leaf": true
  245. },
  246. {
  247. "id": 229,
  248. "menuCode": "",
  249. "systemCode": null,
  250. "menuName": "个性化设置",
  251. "url": "http://wx.palmnest.com/avicfile/superdesk",
  252. "rightType": 2,
  253. "parentCode": 154,
  254. "displayOrder": 0,
  255. "isApp": 0,
  256. "enabled": 1,
  257. "createdBy": 9999,
  258. "createdAt": "2019-08-08 00:00:00",
  259. "updatedBy": 9999,
  260. "updatedAt": "2019-08-08 00:00:00",
  261. "perms": "pc:setting:custom",
  262. "iconUrl": null,
  263. "description": "旧服务之窗导入",
  264. "moduleId": null,
  265. "isOuterChain": 0,
  266. "isPopup": 0,
  267. "cache": 0,
  268. "component": null,
  269. "children": null,
  270. "default": true,
  271. "leaf": true
  272. },
  273. {
  274. "id": 240,
  275. "menuCode": "",
  276. "systemCode": null,
  277. "menuName": "模块菜单配置",
  278. "url": "admin/serveConfig/serverPage",
  279. "rightType": 2,
  280. "parentCode": 154,
  281. "displayOrder": 0,
  282. "isApp": 0,
  283. "enabled": 1,
  284. "createdBy": 9999,
  285. "createdAt": "2019-08-08 00:00:00",
  286. "updatedBy": 9999,
  287. "updatedAt": "2019-08-08 00:00:00",
  288. "perms": "pc:setting:module",
  289. "iconUrl": null,
  290. "description": "旧服务之窗导入",
  291. "moduleId": null,
  292. "isOuterChain": 0,
  293. "isPopup": 0,
  294. "cache": 0,
  295. "component": null,
  296. "children": null,
  297. "default": true,
  298. "leaf": true
  299. },
  300. {
  301. "id": 345,
  302. "menuCode": "",
  303. "systemCode": null,
  304. "menuName": "项目常用选项配置",
  305. "url": "system/elementgroup/toOrgSettingListPage",
  306. "rightType": 2,
  307. "parentCode": 154,
  308. "displayOrder": 0,
  309. "isApp": 0,
  310. "enabled": 1,
  311. "createdBy": 9999,
  312. "createdAt": "2019-08-08 00:00:00",
  313. "updatedBy": 9999,
  314. "updatedAt": "2019-08-08 00:00:00",
  315. "perms": "pc:setting:orgsetting",
  316. "iconUrl": null,
  317. "description": "旧服务之窗导入",
  318. "moduleId": null,
  319. "isOuterChain": 0,
  320. "isPopup": 0,
  321. "cache": 0,
  322. "component": null,
  323. "children": null,
  324. "default": true,
  325. "leaf": true
  326. },
  327. {
  328. "id": 5309,
  329. "menuCode": "",
  330. "systemCode": null,
  331. "menuName": "统一订单测试",
  332. "url": "http://119.23.39.237/avicfile/ordermanger/#/login?usertoken=eyJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1NzQyMTc1NjIsInN1YiI6IntcInVzZXJUeXBlXCI6MixcInVzZXJJZFwiOjI5MDJ9IiwiZXhwIjoxNTc0ODIyMzYyfQ.IhL7qlIw9ftpKIoN1LqkvFRo__O9iQBJrOX6IT81New",
  333. "rightType": 2,
  334. "parentCode": 154,
  335. "displayOrder": 0,
  336. "isApp": 0,
  337. "enabled": 1,
  338. "createdBy": 2902,
  339. "createdAt": "2019-11-20 10:43:48",
  340. "updatedBy": 2902,
  341. "updatedAt": "2019-11-20 10:48:56",
  342. "perms": "pc:system",
  343. "iconUrl": "",
  344. "description": "统一订单测试",
  345. "moduleId": null,
  346. "isOuterChain": 0,
  347. "isPopup": 0,
  348. "cache": 0,
  349. "component": null,
  350. "children": null,
  351. "default": true,
  352. "leaf": true
  353. },
  354. {
  355. "id": 91,
  356. "menuCode": "",
  357. "systemCode": null,
  358. "menuName": "公众号管理",
  359. "url": "pblic/no/list?funcid=91",
  360. "rightType": 2,
  361. "parentCode": 154,
  362. "displayOrder": 91,
  363. "isApp": 0,
  364. "enabled": 1,
  365. "createdBy": 9999,
  366. "createdAt": "2019-08-08 00:00:00",
  367. "updatedBy": 9999,
  368. "updatedAt": "2019-08-08 00:00:00",
  369. "perms": "pc:setting:wechat",
  370. "iconUrl": null,
  371. "description": "旧服务之窗导入",
  372. "moduleId": null,
  373. "isOuterChain": 0,
  374. "isPopup": 0,
  375. "cache": 0,
  376. "component": null,
  377. "children": [
  378. {
  379. "id": 281,
  380. "menuCode": "",
  381. "systemCode": null,
  382. "menuName": "新增",
  383. "url": null,
  384. "rightType": 3,
  385. "parentCode": 91,
  386. "displayOrder": 1,
  387. "isApp": 0,
  388. "enabled": 1,
  389. "createdBy": 9999,
  390. "createdAt": "2019-08-08 00:00:00",
  391. "updatedBy": 9999,
  392. "updatedAt": "2019-08-08 00:00:00",
  393. "perms": "pc:setting:wechat:add",
  394. "iconUrl": null,
  395. "description": "旧服务之窗导入",
  396. "moduleId": null,
  397. "isOuterChain": 0,
  398. "isPopup": 0,
  399. "cache": 0,
  400. "component": null,
  401. "children": null,
  402. "default": true,
  403. "leaf": false
  404. },
  405. {
  406. "id": 282,
  407. "menuCode": "",
  408. "systemCode": null,
  409. "menuName": "修改",
  410. "url": null,
  411. "rightType": 3,
  412. "parentCode": 91,
  413. "displayOrder": 2,
  414. "isApp": 0,
  415. "enabled": 1,
  416. "createdBy": 9999,
  417. "createdAt": "2019-08-08 00:00:00",
  418. "updatedBy": 9999,
  419. "updatedAt": "2019-08-08 00:00:00",
  420. "perms": "pc:setting:wechat:edit",
  421. "iconUrl": null,
  422. "description": "旧服务之窗导入",
  423. "moduleId": null,
  424. "isOuterChain": 0,
  425. "isPopup": 0,
  426. "cache": 0,
  427. "component": null,
  428. "children": null,
  429. "default": true,
  430. "leaf": false
  431. },
  432. {
  433. "id": 283,
  434. "menuCode": "",
  435. "systemCode": null,
  436. "menuName": "删除",
  437. "url": null,
  438. "rightType": 3,
  439. "parentCode": 91,
  440. "displayOrder": 3,
  441. "isApp": 0,
  442. "enabled": 1,
  443. "createdBy": 9999,
  444. "createdAt": "2019-08-08 00:00:00",
  445. "updatedBy": 9999,
  446. "updatedAt": "2019-08-08 00:00:00",
  447. "perms": "pc:setting:wechat:delete",
  448. "iconUrl": null,
  449. "description": "旧服务之窗导入",
  450. "moduleId": null,
  451. "isOuterChain": 0,
  452. "isPopup": 0,
  453. "cache": 0,
  454. "component": null,
  455. "children": null,
  456. "default": true,
  457. "leaf": false
  458. }
  459. ],
  460. "default": true,
  461. "leaf": true
  462. }
  463. ],
  464. "default": true,
  465. "leaf": false
  466. },
  467. {
  468. "id": 174,
  469. "menuCode": "",
  470. "systemCode": null,
  471. "menuName": "公告资讯",
  472. "url": "",
  473. "rightType": 1,
  474. "parentCode": 0,
  475. "displayOrder": 0,
  476. "isApp": 0,
  477. "enabled": 1,
  478. "createdBy": 9999,
  479. "createdAt": "2019-08-08 00:00:00",
  480. "updatedBy": 9999,
  481. "updatedAt": "2019-08-08 00:00:00",
  482. "perms": "pc:notice",
  483. "iconUrl": null,
  484. "description": "旧服务之窗导入",
  485. "moduleId": null,
  486. "isOuterChain": 0,
  487. "isPopup": 0,
  488. "cache": 0,
  489. "component": null,
  490. "children": [
  491. {
  492. "id": 175,
  493. "menuCode": "",
  494. "systemCode": null,
  495. "menuName": "发布公告消息",
  496. "url": "notice/noticeAppPublish?funcid=175",
  497. "rightType": 2,
  498. "parentCode": 174,
  499. "displayOrder": 175,
  500. "isApp": 0,
  501. "enabled": 1,
  502. "createdBy": 9999,
  503. "createdAt": "2019-08-08 00:00:00",
  504. "updatedBy": 9999,
  505. "updatedAt": "2019-08-08 00:00:00",
  506. "perms": "pc:notice:publish",
  507. "iconUrl": null,
  508. "description": "旧服务之窗导入",
  509. "moduleId": null,
  510. "isOuterChain": 0,
  511. "isPopup": 0,
  512. "cache": 0,
  513. "component": null,
  514. "children": [
  515. {
  516. "id": 379,
  517. "menuCode": "",
  518. "systemCode": "5100",
  519. "menuName": "发送公众号所有用户权限",
  520. "url": null,
  521. "rightType": 3,
  522. "parentCode": 175,
  523. "displayOrder": 0,
  524. "isApp": 0,
  525. "enabled": 1,
  526. "createdBy": 9999,
  527. "createdAt": "2019-08-08 00:00:00",
  528. "updatedBy": 9999,
  529. "updatedAt": "2019-08-08 00:00:00",
  530. "perms": "pc:notice:publish:newPublic",
  531. "iconUrl": null,
  532. "description": "旧服务之窗导入",
  533. "moduleId": null,
  534. "isOuterChain": 0,
  535. "isPopup": 0,
  536. "cache": 0,
  537. "component": null,
  538. "children": null,
  539. "default": true,
  540. "leaf": false
  541. }
  542. ],
  543. "default": true,
  544. "leaf": true
  545. },
  546. {
  547. "id": 180,
  548. "menuCode": "",
  549. "systemCode": null,
  550. "menuName": "公告消息管理",
  551. "url": "notice/audit/noticeAppVerify?funcid=180",
  552. "rightType": 2,
  553. "parentCode": 174,
  554. "displayOrder": 180,
  555. "isApp": 0,
  556. "enabled": 1,
  557. "createdBy": 9999,
  558. "createdAt": "2019-08-08 00:00:00",
  559. "updatedBy": 9999,
  560. "updatedAt": "2019-08-08 00:00:00",
  561. "perms": "pc:notice:list",
  562. "iconUrl": null,
  563. "description": "旧服务之窗导入",
  564. "moduleId": null,
  565. "isOuterChain": 0,
  566. "isPopup": 0,
  567. "cache": 0,
  568. "component": null,
  569. "children": [
  570. {
  571. "id": 244,
  572. "menuCode": "",
  573. "systemCode": "5001",
  574. "menuName": "公告审核权限",
  575. "url": "",
  576. "rightType": 3,
  577. "parentCode": 180,
  578. "displayOrder": 0,
  579. "isApp": 0,
  580. "enabled": 1,
  581. "createdBy": 9999,
  582. "createdAt": "2019-08-08 00:00:00",
  583. "updatedBy": 9999,
  584. "updatedAt": "2019-08-08 00:00:00",
  585. "perms": "pc:notice:list:approve",
  586. "iconUrl": null,
  587. "description": "旧服务之窗导入",
  588. "moduleId": null,
  589. "isOuterChain": 0,
  590. "isPopup": 0,
  591. "cache": 0,
  592. "component": null,
  593. "children": null,
  594. "default": true,
  595. "leaf": false
  596. },
  597. {
  598. "id": 302,
  599. "menuCode": "",
  600. "systemCode": null,
  601. "menuName": "新增",
  602. "url": null,
  603. "rightType": 3,
  604. "parentCode": 180,
  605. "displayOrder": 1,
  606. "isApp": 0,
  607. "enabled": 1,
  608. "createdBy": 9999,
  609. "createdAt": "2019-08-08 00:00:00",
  610. "updatedBy": 9999,
  611. "updatedAt": "2019-08-08 00:00:00",
  612. "perms": "pc:notice:list:add",
  613. "iconUrl": null,
  614. "description": "旧服务之窗导入",
  615. "moduleId": null,
  616. "isOuterChain": 0,
  617. "isPopup": 0,
  618. "cache": 0,
  619. "component": null,
  620. "children": null,
  621. "default": true,
  622. "leaf": false
  623. },
  624. {
  625. "id": 303,
  626. "menuCode": "",
  627. "systemCode": null,
  628. "menuName": "修改",
  629. "url": null,
  630. "rightType": 3,
  631. "parentCode": 180,
  632. "displayOrder": 2,
  633. "isApp": 0,
  634. "enabled": 1,
  635. "createdBy": 9999,
  636. "createdAt": "2019-08-08 00:00:00",
  637. "updatedBy": 9999,
  638. "updatedAt": "2019-08-08 00:00:00",
  639. "perms": "pc:notice:list:edit",
  640. "iconUrl": null,
  641. "description": "旧服务之窗导入",
  642. "moduleId": null,
  643. "isOuterChain": 0,
  644. "isPopup": 0,
  645. "cache": 0,
  646. "component": null,
  647. "children": null,
  648. "default": true,
  649. "leaf": false
  650. },
  651. {
  652. "id": 304,
  653. "menuCode": "",
  654. "systemCode": null,
  655. "menuName": "删除",
  656. "url": null,
  657. "rightType": 3,
  658. "parentCode": 180,
  659. "displayOrder": 3,
  660. "isApp": 0,
  661. "enabled": 1,
  662. "createdBy": 9999,
  663. "createdAt": "2019-08-08 00:00:00",
  664. "updatedBy": 9999,
  665. "updatedAt": "2019-08-08 00:00:00",
  666. "perms": "pc:notice:list:delete",
  667. "iconUrl": null,
  668. "description": "旧服务之窗导入",
  669. "moduleId": null,
  670. "isOuterChain": 0,
  671. "isPopup": 0,
  672. "cache": 0,
  673. "component": null,
  674. "children": null,
  675. "default": true,
  676. "leaf": false
  677. }
  678. ],
  679. "default": true,
  680. "leaf": true
  681. }
  682. ],
  683. "default": true,
  684. "leaf": false
  685. },
  686. {
  687. "id": 188,
  688. "menuCode": "",
  689. "systemCode": null,
  690. "menuName": "工程维修(web)",
  691. "url": "",
  692. "rightType": 1,
  693. "parentCode": 0,
  694. "displayOrder": 0,
  695. "isApp": 0,
  696. "enabled": 1,
  697. "createdBy": 9999,
  698. "createdAt": "2019-08-08 00:00:00",
  699. "updatedBy": 9999,
  700. "updatedAt": "2019-08-08 00:00:00",
  701. "perms": "pc:repair",
  702. "iconUrl": null,
  703. "description": "旧服务之窗导入",
  704. "moduleId": null,
  705. "isOuterChain": 0,
  706. "isPopup": 0,
  707. "cache": 0,
  708. "component": null,
  709. "children": [
  710. {
  711. "id": 189,
  712. "menuCode": "",
  713. "systemCode": null,
  714. "menuName": "发起维修(web)",
  715. "url": "repairBill/index",
  716. "rightType": 2,
  717. "parentCode": 188,
  718. "displayOrder": 0,
  719. "isApp": 0,
  720. "enabled": 1,
  721. "createdBy": 9999,
  722. "createdAt": "2019-08-08 00:00:00",
  723. "updatedBy": 9999,
  724. "updatedAt": "2019-08-08 00:00:00",
  725. "perms": "pc:repair:launch",
  726. "iconUrl": null,
  727. "description": "旧服务之窗导入",
  728. "moduleId": null,
  729. "isOuterChain": 0,
  730. "isPopup": 0,
  731. "cache": 0,
  732. "component": null,
  733. "children": null,
  734. "default": true,
  735. "leaf": true
  736. },
  737. {
  738. "id": 190,
  739. "menuCode": "",
  740. "systemCode": null,
  741. "menuName": "评价管理(web)",
  742. "url": "repairBill/evaluationManagement",
  743. "rightType": 2,
  744. "parentCode": 188,
  745. "displayOrder": 0,
  746. "isApp": 0,
  747. "enabled": 1,
  748. "createdBy": 9999,
  749. "createdAt": "2019-08-08 00:00:00",
  750. "updatedBy": 9999,
  751. "updatedAt": "2019-08-08 00:00:00",
  752. "perms": "pc:repair:evaluate",
  753. "iconUrl": null,
  754. "description": "旧服务之窗导入",
  755. "moduleId": null,
  756. "isOuterChain": 0,
  757. "isPopup": 0,
  758. "cache": 0,
  759. "component": null,
  760. "children": null,
  761. "default": true,
  762. "leaf": true
  763. },
  764. {
  765. "id": 191,
  766. "menuCode": "",
  767. "systemCode": null,
  768. "menuName": "工单管理(web)",
  769. "url": "repairBill/repairDetail",
  770. "rightType": 2,
  771. "parentCode": 188,
  772. "displayOrder": 0,
  773. "isApp": 0,
  774. "enabled": 1,
  775. "createdBy": 9999,
  776. "createdAt": "2019-08-08 00:00:00",
  777. "updatedBy": 2914,
  778. "updatedAt": "2020-08-11 17:32:48",
  779. "perms": "pc:repair:list",
  780. "iconUrl": "",
  781. "description": "旧服务之窗导入",
  782. "moduleId": null,
  783. "isOuterChain": 0,
  784. "isPopup": 0,
  785. "cache": 0,
  786. "component": null,
  787. "children": [
  788. {
  789. "id": 228,
  790. "menuCode": "",
  791. "systemCode": "1000",
  792. "menuName": "工程维修审核功能",
  793. "url": "",
  794. "rightType": 3,
  795. "parentCode": 191,
  796. "displayOrder": 0,
  797. "isApp": 0,
  798. "enabled": 1,
  799. "createdBy": 9999,
  800. "createdAt": "2019-08-08 00:00:00",
  801. "updatedBy": 9999,
  802. "updatedAt": "2019-08-08 00:00:00",
  803. "perms": "pc:repair:list:approve",
  804. "iconUrl": null,
  805. "description": "旧服务之窗导入",
  806. "moduleId": null,
  807. "isOuterChain": 0,
  808. "isPopup": 0,
  809. "cache": 0,
  810. "component": null,
  811. "children": null,
  812. "default": true,
  813. "leaf": false
  814. },
  815. {
  816. "id": 5401,
  817. "menuCode": "",
  818. "systemCode": null,
  819. "menuName": "工程维修单编辑功能",
  820. "url": "",
  821. "rightType": 3,
  822. "parentCode": 191,
  823. "displayOrder": 0,
  824. "isApp": 0,
  825. "enabled": 1,
  826. "createdBy": 3071,
  827. "createdAt": "2020-09-11 14:48:43",
  828. "updatedBy": 3071,
  829. "updatedAt": "2020-09-15 19:17:44",
  830. "perms": "pc:repair:list:appeditor",
  831. "iconUrl": "",
  832. "description": "",
  833. "moduleId": null,
  834. "isOuterChain": 0,
  835. "isPopup": 0,
  836. "cache": 0,
  837. "component": null,
  838. "children": null,
  839. "default": true,
  840. "leaf": false
  841. },
  842. {
  843. "id": 5402,
  844. "menuCode": "",
  845. "systemCode": null,
  846. "menuName": "工程维修取消订单",
  847. "url": "",
  848. "rightType": 3,
  849. "parentCode": 191,
  850. "displayOrder": 0,
  851. "isApp": 0,
  852. "enabled": 1,
  853. "createdBy": 3071,
  854. "createdAt": "2020-09-14 17:13:52",
  855. "updatedBy": 3071,
  856. "updatedAt": "2020-09-15 19:17:59",
  857. "perms": "pc:repair:list:appecancel",
  858. "iconUrl": "",
  859. "description": "",
  860. "moduleId": null,
  861. "isOuterChain": 0,
  862. "isPopup": 0,
  863. "cache": 0,
  864. "component": null,
  865. "children": null,
  866. "default": true,
  867. "leaf": false
  868. }
  869. ],
  870. "default": true,
  871. "leaf": true
  872. },
  873. {
  874. "id": 5397,
  875. "menuCode": "",
  876. "systemCode": null,
  877. "menuName": "维修类型管理(web)",
  878. "url": "repairType/maintenanceTypeManger",
  879. "rightType": 2,
  880. "parentCode": 188,
  881. "displayOrder": 0,
  882. "isApp": 0,
  883. "enabled": 1,
  884. "createdBy": 2914,
  885. "createdAt": "2020-08-11 17:35:01",
  886. "updatedBy": 2960,
  887. "updatedAt": "2020-08-26 10:32:02",
  888. "perms": "pc:maintenanceTypeManger:list",
  889. "iconUrl": "",
  890. "description": "旧服务之窗导入",
  891. "moduleId": null,
  892. "isOuterChain": 0,
  893. "isPopup": 0,
  894. "cache": 0,
  895. "component": null,
  896. "children": null,
  897. "default": true,
  898. "leaf": true
  899. },
  900. {
  901. "id": 5399,
  902. "menuCode": "",
  903. "systemCode": null,
  904. "menuName": "看板",
  905. "url": "",
  906. "rightType": 2,
  907. "parentCode": 188,
  908. "displayOrder": 0,
  909. "isApp": 0,
  910. "enabled": 1,
  911. "createdBy": 3071,
  912. "createdAt": "2020-09-04 11:08:16",
  913. "updatedBy": null,
  914. "updatedAt": null,
  915. "perms": "pc:repair:statistics",
  916. "iconUrl": "",
  917. "description": "",
  918. "moduleId": null,
  919. "isOuterChain": 0,
  920. "isPopup": 0,
  921. "cache": 0,
  922. "component": null,
  923. "children": null,
  924. "default": true,
  925. "leaf": false
  926. },
  927. {
  928. "id": 5400,
  929. "menuCode": "",
  930. "systemCode": null,
  931. "menuName": "状态统计",
  932. "url": "",
  933. "rightType": 2,
  934. "parentCode": 188,
  935. "displayOrder": 0,
  936. "isApp": 0,
  937. "enabled": 1,
  938. "createdBy": 3071,
  939. "createdAt": "2020-09-07 17:40:10",
  940. "updatedBy": 3071,
  941. "updatedAt": "2020-09-07 17:40:50",
  942. "perms": "pc:repair:stateStatistical",
  943. "iconUrl": "",
  944. "description": "",
  945. "moduleId": null,
  946. "isOuterChain": 0,
  947. "isPopup": 0,
  948. "cache": 0,
  949. "component": null,
  950. "children": null,
  951. "default": true,
  952. "leaf": false
  953. },
  954. {
  955. "id": 5508,
  956. "menuCode": "",
  957. "systemCode": null,
  958. "menuName": "企业工单统计",
  959. "url": "0",
  960. "rightType": 2,
  961. "parentCode": 188,
  962. "displayOrder": 0,
  963. "isApp": 0,
  964. "enabled": 1,
  965. "createdBy": 3071,
  966. "createdAt": "2021-06-09 16:53:16",
  967. "updatedBy": null,
  968. "updatedAt": null,
  969. "perms": "pc:repair:enterpriseOrderStatistics",
  970. "iconUrl": "",
  971. "description": "",
  972. "moduleId": null,
  973. "isOuterChain": 0,
  974. "isPopup": 0,
  975. "cache": 0,
  976. "component": null,
  977. "children": null,
  978. "default": true,
  979. "leaf": true
  980. }
  981. ],
  982. "default": true,
  983. "leaf": false
  984. },
  985. {
  986. "id": 225,
  987. "menuCode": "",
  988. "systemCode": null,
  989. "menuName": "电子放行条",
  990. "url": "",
  991. "rightType": 1,
  992. "parentCode": 0,
  993. "displayOrder": 0,
  994. "isApp": 0,
  995. "enabled": 1,
  996. "createdBy": 9999,
  997. "createdAt": "2019-08-08 00:00:00",
  998. "updatedBy": 3071,
  999. "updatedAt": "2021-08-26 11:43:29",
  1000. "perms": "pc:release",
  1001. "iconUrl": "",
  1002. "description": "旧服务之窗导入(物品放行条(web菜单))",
  1003. "moduleId": null,
  1004. "isOuterChain": 0,
  1005. "isPopup": 0,
  1006. "cache": 0,
  1007. "component": null,
  1008. "children": [
  1009. {
  1010. "id": 223,
  1011. "menuCode": "",
  1012. "systemCode": null,
  1013. "menuName": "放行历史(PC",
  1014. "url": "release/releaseHistory",
  1015. "rightType": 2,
  1016. "parentCode": 225,
  1017. "displayOrder": 0,
  1018. "isApp": 0,
  1019. "enabled": 1,
  1020. "createdBy": 9999,
  1021. "createdAt": "2019-08-08 00:00:00",
  1022. "updatedBy": 9999,
  1023. "updatedAt": "2019-08-08 00:00:00",
  1024. "perms": "pc:release:history",
  1025. "iconUrl": null,
  1026. "description": "旧服务之窗导入",
  1027. "moduleId": null,
  1028. "isOuterChain": 0,
  1029. "isPopup": 0,
  1030. "cache": 0,
  1031. "component": null,
  1032. "children": null,
  1033. "default": true,
  1034. "leaf": true
  1035. },
  1036. {
  1037. "id": 224,
  1038. "menuCode": "",
  1039. "systemCode": null,
  1040. "menuName": "放行审批(PC",
  1041. "url": "release/releaseApprove",
  1042. "rightType": 2,
  1043. "parentCode": 225,
  1044. "displayOrder": 0,
  1045. "isApp": 0,
  1046. "enabled": 1,
  1047. "createdBy": 9999,
  1048. "createdAt": "2019-08-08 00:00:00",
  1049. "updatedBy": 9999,
  1050. "updatedAt": "2019-08-08 00:00:00",
  1051. "perms": "pc:release:approval",
  1052. "iconUrl": null,
  1053. "description": "旧服务之窗导入",
  1054. "moduleId": null,
  1055. "isOuterChain": 0,
  1056. "isPopup": 0,
  1057. "cache": 0,
  1058. "component": null,
  1059. "children": [
  1060. {
  1061. "id": 308,
  1062. "menuCode": "",
  1063. "systemCode": null,
  1064. "menuName": "审核",
  1065. "url": null,
  1066. "rightType": 3,
  1067. "parentCode": 224,
  1068. "displayOrder": 4,
  1069. "isApp": 0,
  1070. "enabled": 1,
  1071. "createdBy": 9999,
  1072. "createdAt": "2019-08-08 00:00:00",
  1073. "updatedBy": 9999,
  1074. "updatedAt": "2019-08-08 00:00:00",
  1075. "perms": "pc:release:approval:approve",
  1076. "iconUrl": null,
  1077. "description": "旧服务之窗导入",
  1078. "moduleId": null,
  1079. "isOuterChain": 0,
  1080. "isPopup": 0,
  1081. "cache": 0,
  1082. "component": null,
  1083. "children": null,
  1084. "default": true,
  1085. "leaf": false
  1086. }
  1087. ],
  1088. "default": true,
  1089. "leaf": true
  1090. },
  1091. {
  1092. "id": 5571,
  1093. "menuCode": "releaseManger",
  1094. "systemCode": null,
  1095. "menuName": "放行申请管理",
  1096. "url": "",
  1097. "rightType": 2,
  1098. "parentCode": 225,
  1099. "displayOrder": 0,
  1100. "isApp": 0,
  1101. "enabled": 1,
  1102. "createdBy": 3071,
  1103. "createdAt": "2021-08-26 14:07:17",
  1104. "updatedBy": null,
  1105. "updatedAt": null,
  1106. "perms": "pc:electronicRelease.releaseManger",
  1107. "iconUrl": "",
  1108. "description": "",
  1109. "moduleId": null,
  1110. "isOuterChain": 0,
  1111. "isPopup": 0,
  1112. "cache": 0,
  1113. "component": null,
  1114. "children": [
  1115. {
  1116. "id": 5572,
  1117. "menuCode": "",
  1118. "systemCode": null,
  1119. "menuName": "审核",
  1120. "url": "",
  1121. "rightType": 3,
  1122. "parentCode": 5571,
  1123. "displayOrder": 0,
  1124. "isApp": 0,
  1125. "enabled": 1,
  1126. "createdBy": 3071,
  1127. "createdAt": "2021-08-30 10:30:21",
  1128. "updatedBy": null,
  1129. "updatedAt": null,
  1130. "perms": "pc:releaseManger:audit",
  1131. "iconUrl": "",
  1132. "description": "审核权限",
  1133. "moduleId": null,
  1134. "isOuterChain": 0,
  1135. "isPopup": 0,
  1136. "cache": 0,
  1137. "component": null,
  1138. "children": null,
  1139. "default": true,
  1140. "leaf": false
  1141. },
  1142. {
  1143. "id": 5573,
  1144. "menuCode": "",
  1145. "systemCode": null,
  1146. "menuName": "配置流程",
  1147. "url": "",
  1148. "rightType": 3,
  1149. "parentCode": 5571,
  1150. "displayOrder": 0,
  1151. "isApp": 0,
  1152. "enabled": 1,
  1153. "createdBy": 3071,
  1154. "createdAt": "2021-08-30 10:32:24",
  1155. "updatedBy": null,
  1156. "updatedAt": null,
  1157. "perms": "pc:releaseManger:setProcess",
  1158. "iconUrl": "",
  1159. "description": "配置流程按钮权限",
  1160. "moduleId": null,
  1161. "isOuterChain": 0,
  1162. "isPopup": 0,
  1163. "cache": 0,
  1164. "component": null,
  1165. "children": null,
  1166. "default": true,
  1167. "leaf": false
  1168. }
  1169. ],
  1170. "default": true,
  1171. "leaf": false
  1172. }
  1173. ],
  1174. "default": true,
  1175. "leaf": false
  1176. },
  1177. {
  1178. "id": 310,
  1179. "menuCode": "",
  1180. "systemCode": null,
  1181. "menuName": "订餐管理",
  1182. "url": "",
  1183. "rightType": 1,
  1184. "parentCode": 0,
  1185. "displayOrder": 0,
  1186. "isApp": 0,
  1187. "enabled": 1,
  1188. "createdBy": 9999,
  1189. "createdAt": "2019-08-08 00:00:00",
  1190. "updatedBy": 9999,
  1191. "updatedAt": "2019-08-08 00:00:00",
  1192. "perms": "pc:dinner",
  1193. "iconUrl": null,
  1194. "description": "旧服务之窗导入",
  1195. "moduleId": null,
  1196. "isOuterChain": 0,
  1197. "isPopup": 0,
  1198. "cache": 0,
  1199. "component": null,
  1200. "children": [
  1201. {
  1202. "id": 341,
  1203. "menuCode": "",
  1204. "systemCode": null,
  1205. "menuName": "数据统计",
  1206. "url": "admin/dinner/jumpDataStatistics?funcid=341",
  1207. "rightType": 2,
  1208. "parentCode": 310,
  1209. "displayOrder": 3,
  1210. "isApp": 0,
  1211. "enabled": 1,
  1212. "createdBy": 9999,
  1213. "createdAt": "2019-08-08 00:00:00",
  1214. "updatedBy": 9999,
  1215. "updatedAt": "2019-08-08 00:00:00",
  1216. "perms": "pc:dinner:dataStatistics",
  1217. "iconUrl": null,
  1218. "description": "旧服务之窗导入",
  1219. "moduleId": null,
  1220. "isOuterChain": 0,
  1221. "isPopup": 0,
  1222. "cache": 0,
  1223. "component": null,
  1224. "children": null,
  1225. "default": true,
  1226. "leaf": true
  1227. },
  1228. {
  1229. "id": 343,
  1230. "menuCode": "",
  1231. "systemCode": null,
  1232. "menuName": "订餐人员管理",
  1233. "url": "admin/dinner/jumpPersonnel?funcid=343",
  1234. "rightType": 2,
  1235. "parentCode": 310,
  1236. "displayOrder": 4,
  1237. "isApp": 0,
  1238. "enabled": 1,
  1239. "createdBy": 9999,
  1240. "createdAt": "2019-08-08 00:00:00",
  1241. "updatedBy": 9999,
  1242. "updatedAt": "2019-08-08 00:00:00",
  1243. "perms": "pc:dinner:appUser",
  1244. "iconUrl": null,
  1245. "description": "旧服务之窗导入",
  1246. "moduleId": null,
  1247. "isOuterChain": 0,
  1248. "isPopup": 0,
  1249. "cache": 0,
  1250. "component": null,
  1251. "children": null,
  1252. "default": true,
  1253. "leaf": true
  1254. },
  1255. {
  1256. "id": 311,
  1257. "menuCode": "",
  1258. "systemCode": null,
  1259. "menuName": "餐品管理",
  1260. "url": "admin/dinner/jumpMealList?funcid=311",
  1261. "rightType": 2,
  1262. "parentCode": 310,
  1263. "displayOrder": 311,
  1264. "isApp": 0,
  1265. "enabled": 1,
  1266. "createdBy": 9999,
  1267. "createdAt": "2019-08-08 00:00:00",
  1268. "updatedBy": 9999,
  1269. "updatedAt": "2019-08-08 00:00:00",
  1270. "perms": "pc:dinner:products",
  1271. "iconUrl": null,
  1272. "description": "旧服务之窗导入",
  1273. "moduleId": null,
  1274. "isOuterChain": 0,
  1275. "isPopup": 0,
  1276. "cache": 0,
  1277. "component": null,
  1278. "children": [
  1279. {
  1280. "id": 339,
  1281. "menuCode": "",
  1282. "systemCode": "9000",
  1283. "menuName": "新增",
  1284. "url": null,
  1285. "rightType": 3,
  1286. "parentCode": 311,
  1287. "displayOrder": 0,
  1288. "isApp": 0,
  1289. "enabled": 1,
  1290. "createdBy": 9999,
  1291. "createdAt": "2019-08-08 00:00:00",
  1292. "updatedBy": 9999,
  1293. "updatedAt": "2019-08-08 00:00:00",
  1294. "perms": "pc:dinner:products:add",
  1295. "iconUrl": null,
  1296. "description": "旧服务之窗导入",
  1297. "moduleId": null,
  1298. "isOuterChain": 0,
  1299. "isPopup": 0,
  1300. "cache": 0,
  1301. "component": null,
  1302. "children": null,
  1303. "default": true,
  1304. "leaf": false
  1305. }
  1306. ],
  1307. "default": true,
  1308. "leaf": true
  1309. },
  1310. {
  1311. "id": 312,
  1312. "menuCode": "",
  1313. "systemCode": null,
  1314. "menuName": "订单管理",
  1315. "url": "admin/dinner/jumpOrderDinnerList?funcid=312",
  1316. "rightType": 2,
  1317. "parentCode": 310,
  1318. "displayOrder": 312,
  1319. "isApp": 0,
  1320. "enabled": 1,
  1321. "createdBy": 9999,
  1322. "createdAt": "2019-08-08 00:00:00",
  1323. "updatedBy": 9999,
  1324. "updatedAt": "2019-08-08 00:00:00",
  1325. "perms": "pc:dinner:order",
  1326. "iconUrl": null,
  1327. "description": "旧服务之窗导入",
  1328. "moduleId": null,
  1329. "isOuterChain": 0,
  1330. "isPopup": 0,
  1331. "cache": 0,
  1332. "component": null,
  1333. "children": null,
  1334. "default": true,
  1335. "leaf": true
  1336. }
  1337. ],
  1338. "default": true,
  1339. "leaf": false
  1340. },
  1341. {
  1342. "id": 346,
  1343. "menuCode": "",
  1344. "systemCode": null,
  1345. "menuName": "统计数据",
  1346. "url": "",
  1347. "rightType": 1,
  1348. "parentCode": 0,
  1349. "displayOrder": 0,
  1350. "isApp": 0,
  1351. "enabled": 1,
  1352. "createdBy": 9999,
  1353. "createdAt": "2019-08-08 00:00:00",
  1354. "updatedBy": 9999,
  1355. "updatedAt": "2019-08-08 00:00:00",
  1356. "perms": "pc:dataStatistic",
  1357. "iconUrl": null,
  1358. "description": "旧服务之窗导入",
  1359. "moduleId": null,
  1360. "isOuterChain": 0,
  1361. "isPopup": 0,
  1362. "cache": 0,
  1363. "component": null,
  1364. "children": [
  1365. {
  1366. "id": 347,
  1367. "menuCode": "",
  1368. "systemCode": null,
  1369. "menuName": "平台概况",
  1370. "url": "admin/dinner/place/platformStatistic?funcid=347",
  1371. "rightType": 2,
  1372. "parentCode": 346,
  1373. "displayOrder": 1,
  1374. "isApp": 0,
  1375. "enabled": 1,
  1376. "createdBy": 9999,
  1377. "createdAt": "2019-08-08 00:00:00",
  1378. "updatedBy": 9999,
  1379. "updatedAt": "2019-08-08 00:00:00",
  1380. "perms": "pc:dataStatistic:platformStatistic",
  1381. "iconUrl": null,
  1382. "description": "旧服务之窗导入",
  1383. "moduleId": null,
  1384. "isOuterChain": 0,
  1385. "isPopup": 0,
  1386. "cache": 0,
  1387. "component": null,
  1388. "children": null,
  1389. "default": true,
  1390. "leaf": true
  1391. },
  1392. {
  1393. "id": 348,
  1394. "menuCode": "",
  1395. "systemCode": null,
  1396. "menuName": "订餐统计",
  1397. "url": "admin/dinner/place/mealStatistic?funcid=348",
  1398. "rightType": 2,
  1399. "parentCode": 346,
  1400. "displayOrder": 2,
  1401. "isApp": 0,
  1402. "enabled": 1,
  1403. "createdBy": 9999,
  1404. "createdAt": "2019-08-08 00:00:00",
  1405. "updatedBy": 9999,
  1406. "updatedAt": "2019-08-08 00:00:00",
  1407. "perms": "pc:dataStatistic:mealStatistic",
  1408. "iconUrl": null,
  1409. "description": "旧服务之窗导入",
  1410. "moduleId": null,
  1411. "isOuterChain": 0,
  1412. "isPopup": 0,
  1413. "cache": 0,
  1414. "component": null,
  1415. "children": null,
  1416. "default": true,
  1417. "leaf": true
  1418. },
  1419. {
  1420. "id": 349,
  1421. "menuCode": "",
  1422. "systemCode": null,
  1423. "menuName": "通行统计",
  1424. "url": "admin/dinner/place/visitorStatistic?funcid=349",
  1425. "rightType": 2,
  1426. "parentCode": 346,
  1427. "displayOrder": 3,
  1428. "isApp": 0,
  1429. "enabled": 1,
  1430. "createdBy": 9999,
  1431. "createdAt": "2019-08-08 00:00:00",
  1432. "updatedBy": 9999,
  1433. "updatedAt": "2019-08-08 00:00:00",
  1434. "perms": "pc:dataStatistic:visitorStatistic",
  1435. "iconUrl": null,
  1436. "description": "旧服务之窗导入",
  1437. "moduleId": null,
  1438. "isOuterChain": 0,
  1439. "isPopup": 0,
  1440. "cache": 0,
  1441. "component": null,
  1442. "children": null,
  1443. "default": true,
  1444. "leaf": true
  1445. },
  1446. {
  1447. "id": 350,
  1448. "menuCode": "",
  1449. "systemCode": null,
  1450. "menuName": "会议室统计",
  1451. "url": "admin/dinner/place/meetingStatistic?funcid=350",
  1452. "rightType": 2,
  1453. "parentCode": 346,
  1454. "displayOrder": 4,
  1455. "isApp": 0,
  1456. "enabled": 1,
  1457. "createdBy": 9999,
  1458. "createdAt": "2019-08-08 00:00:00",
  1459. "updatedBy": 9999,
  1460. "updatedAt": "2019-08-08 00:00:00",
  1461. "perms": "pc:dataStatistic:meetingStatistic",
  1462. "iconUrl": null,
  1463. "description": "旧服务之窗导入",
  1464. "moduleId": null,
  1465. "isOuterChain": 0,
  1466. "isPopup": 0,
  1467. "cache": 0,
  1468. "component": null,
  1469. "children": null,
  1470. "default": true,
  1471. "leaf": true
  1472. },
  1473. {
  1474. "id": 354,
  1475. "menuCode": "",
  1476. "systemCode": null,
  1477. "menuName": "企业统计",
  1478. "url": "admin/virtual/companyStatistic?funcid=354",
  1479. "rightType": 2,
  1480. "parentCode": 346,
  1481. "displayOrder": 5,
  1482. "isApp": 0,
  1483. "enabled": 1,
  1484. "createdBy": 9999,
  1485. "createdAt": "2019-08-08 00:00:00",
  1486. "updatedBy": 9999,
  1487. "updatedAt": "2019-08-08 00:00:00",
  1488. "perms": "pc:dataStatistic:companyStatistic",
  1489. "iconUrl": null,
  1490. "description": "旧服务之窗导入",
  1491. "moduleId": null,
  1492. "isOuterChain": 0,
  1493. "isPopup": 0,
  1494. "cache": 0,
  1495. "component": null,
  1496. "children": null,
  1497. "default": true,
  1498. "leaf": true
  1499. },
  1500. {
  1501. "id": 361,
  1502. "menuCode": "",
  1503. "systemCode": null,
  1504. "menuName": "代理统计",
  1505. "url": "admin/virtual/agStatistic?funcid=486",
  1506. "rightType": 2,
  1507. "parentCode": 346,
  1508. "displayOrder": 6,
  1509. "isApp": 0,
  1510. "enabled": 1,
  1511. "createdBy": 9999,
  1512. "createdAt": "2019-08-08 00:00:00",
  1513. "updatedBy": 9999,
  1514. "updatedAt": "2019-08-08 00:00:00",
  1515. "perms": "pc:organization:enterprise:agentStatistic",
  1516. "iconUrl": null,
  1517. "description": "旧服务之窗导入",
  1518. "moduleId": null,
  1519. "isOuterChain": 0,
  1520. "isPopup": 0,
  1521. "cache": 0,
  1522. "component": null,
  1523. "children": null,
  1524. "default": true,
  1525. "leaf": true
  1526. }
  1527. ],
  1528. "default": true,
  1529. "leaf": false
  1530. },
  1531. {
  1532. "id": 356,
  1533. "menuCode": "",
  1534. "systemCode": null,
  1535. "menuName": "问卷调查",
  1536. "url": "http://www.avic-s.com/plugins_doc/doc/xkbwHL5TZ",
  1537. "rightType": 1,
  1538. "parentCode": 0,
  1539. "displayOrder": 0,
  1540. "isApp": 0,
  1541. "enabled": 1,
  1542. "createdBy": 9999,
  1543. "createdAt": "2019-08-08 00:00:00",
  1544. "updatedBy": 9999,
  1545. "updatedAt": "2019-08-08 00:00:00",
  1546. "perms": "pc:0949",
  1547. "iconUrl": null,
  1548. "description": "旧服务之窗导入",
  1549. "moduleId": null,
  1550. "isOuterChain": 0,
  1551. "isPopup": 0,
  1552. "cache": 0,
  1553. "component": null,
  1554. "children": [
  1555. {
  1556. "id": 5527,
  1557. "menuCode": "",
  1558. "systemCode": null,
  1559. "menuName": "问卷发布管理",
  1560. "url": "",
  1561. "rightType": 2,
  1562. "parentCode": 356,
  1563. "displayOrder": 0,
  1564. "isApp": 0,
  1565. "enabled": 1,
  1566. "createdBy": 3071,
  1567. "createdAt": "2021-07-30 19:12:14",
  1568. "updatedBy": 3071,
  1569. "updatedAt": "2021-07-30 19:19:27",
  1570. "perms": "pc:questionSurvey.release",
  1571. "iconUrl": "",
  1572. "description": "",
  1573. "moduleId": null,
  1574. "isOuterChain": 0,
  1575. "isPopup": 0,
  1576. "cache": 0,
  1577. "component": null,
  1578. "children": null,
  1579. "default": true,
  1580. "leaf": false
  1581. },
  1582. {
  1583. "id": 5528,
  1584. "menuCode": "",
  1585. "systemCode": null,
  1586. "menuName": "问卷管理",
  1587. "url": "",
  1588. "rightType": 2,
  1589. "parentCode": 356,
  1590. "displayOrder": 0,
  1591. "isApp": 0,
  1592. "enabled": 1,
  1593. "createdBy": 3071,
  1594. "createdAt": "2021-07-30 19:18:34",
  1595. "updatedBy": 3071,
  1596. "updatedAt": "2021-07-30 19:23:22",
  1597. "perms": "pc:0949",
  1598. "iconUrl": "",
  1599. "description": "旧服务之窗功能",
  1600. "moduleId": null,
  1601. "isOuterChain": 0,
  1602. "isPopup": 0,
  1603. "cache": 0,
  1604. "component": null,
  1605. "children": null,
  1606. "default": true,
  1607. "leaf": false
  1608. }
  1609. ],
  1610. "default": true,
  1611. "leaf": true
  1612. },
  1613. {
  1614. "id": 357,
  1615. "menuCode": "",
  1616. "systemCode": null,
  1617. "menuName": "投诉表扬",
  1618. "url": "http://www.avic-s.com/plugins_doc/doc/xkbwHL5TZ",
  1619. "rightType": 1,
  1620. "parentCode": 0,
  1621. "displayOrder": 0,
  1622. "isApp": 0,
  1623. "enabled": 1,
  1624. "createdBy": 9999,
  1625. "createdAt": "2019-08-08 00:00:00",
  1626. "updatedBy": 9999,
  1627. "updatedAt": "2019-08-08 00:00:00",
  1628. "perms": "pc:0950",
  1629. "iconUrl": null,
  1630. "description": "旧服务之窗导入",
  1631. "moduleId": null,
  1632. "isOuterChain": 0,
  1633. "isPopup": 0,
  1634. "cache": 0,
  1635. "component": null,
  1636. "children": [],
  1637. "default": true,
  1638. "leaf": true
  1639. },
  1640. {
  1641. "id": 362,
  1642. "menuCode": "",
  1643. "systemCode": null,
  1644. "menuName": "装修管理",
  1645. "url": "",
  1646. "rightType": 1,
  1647. "parentCode": 0,
  1648. "displayOrder": 0,
  1649. "isApp": 0,
  1650. "enabled": 1,
  1651. "createdBy": 9999,
  1652. "createdAt": "2019-08-08 00:00:00",
  1653. "updatedBy": 9999,
  1654. "updatedAt": "2019-08-08 00:00:00",
  1655. "perms": "pc:renovation",
  1656. "iconUrl": null,
  1657. "description": "旧服务之窗导入",
  1658. "moduleId": null,
  1659. "isOuterChain": 0,
  1660. "isPopup": 0,
  1661. "cache": 0,
  1662. "component": null,
  1663. "children": [
  1664. {
  1665. "id": 363,
  1666. "menuCode": "",
  1667. "systemCode": null,
  1668. "menuName": "装修信息配置",
  1669. "url": "admin/renovation/jumpVirModel?funcid=100",
  1670. "rightType": 2,
  1671. "parentCode": 362,
  1672. "displayOrder": 0,
  1673. "isApp": 0,
  1674. "enabled": 1,
  1675. "createdBy": 9999,
  1676. "createdAt": "2019-08-08 00:00:00",
  1677. "updatedBy": 9999,
  1678. "updatedAt": "2019-08-08 00:00:00",
  1679. "perms": "pc:renovation:renovationconfig",
  1680. "iconUrl": null,
  1681. "description": "旧服务之窗导入",
  1682. "moduleId": null,
  1683. "isOuterChain": 0,
  1684. "isPopup": 0,
  1685. "cache": 0,
  1686. "component": null,
  1687. "children": null,
  1688. "default": true,
  1689. "leaf": true
  1690. },
  1691. {
  1692. "id": 364,
  1693. "menuCode": "",
  1694. "systemCode": null,
  1695. "menuName": "装修申请管理",
  1696. "url": "admin/renovation/jumpRenovationApplyList",
  1697. "rightType": 2,
  1698. "parentCode": 362,
  1699. "displayOrder": 0,
  1700. "isApp": 0,
  1701. "enabled": 1,
  1702. "createdBy": 9999,
  1703. "createdAt": "2019-08-08 00:00:00",
  1704. "updatedBy": 9999,
  1705. "updatedAt": "2019-08-08 00:00:00",
  1706. "perms": "pc:renovation:renovationapply",
  1707. "iconUrl": null,
  1708. "description": "旧服务之窗导入",
  1709. "moduleId": null,
  1710. "isOuterChain": 0,
  1711. "isPopup": 0,
  1712. "cache": 0,
  1713. "component": null,
  1714. "children": null,
  1715. "default": true,
  1716. "leaf": true
  1717. }
  1718. ],
  1719. "default": true,
  1720. "leaf": false
  1721. },
  1722. {
  1723. "id": 5001,
  1724. "menuCode": "XTJK",
  1725. "systemCode": null,
  1726. "menuName": "系统监控",
  1727. "url": "",
  1728. "rightType": 1,
  1729. "parentCode": 0,
  1730. "displayOrder": 0,
  1731. "isApp": 0,
  1732. "enabled": 1,
  1733. "createdBy": 1,
  1734. "createdAt": "2019-05-08 17:38:32",
  1735. "updatedBy": null,
  1736. "updatedAt": null,
  1737. "perms": "system-monitoring",
  1738. "iconUrl": "",
  1739. "description": "系统监控",
  1740. "moduleId": null,
  1741. "isOuterChain": 0,
  1742. "isPopup": 0,
  1743. "cache": 0,
  1744. "component": null,
  1745. "children": [
  1746. {
  1747. "id": 5031,
  1748. "menuCode": "CZRZ",
  1749. "systemCode": null,
  1750. "menuName": "操作日志",
  1751. "url": "0",
  1752. "rightType": 2,
  1753. "parentCode": 5001,
  1754. "displayOrder": 0,
  1755. "isApp": 0,
  1756. "enabled": 1,
  1757. "createdBy": 1,
  1758. "createdAt": "2019-05-08 19:22:08",
  1759. "updatedBy": null,
  1760. "updatedAt": null,
  1761. "perms": "system-monitoring.log",
  1762. "iconUrl": "",
  1763. "description": "操作日志",
  1764. "moduleId": null,
  1765. "isOuterChain": 0,
  1766. "isPopup": 0,
  1767. "cache": 0,
  1768. "component": null,
  1769. "children": [
  1770. {
  1771. "id": 5134,
  1772. "menuCode": "add",
  1773. "systemCode": null,
  1774. "menuName": "新增",
  1775. "url": null,
  1776. "rightType": 3,
  1777. "parentCode": 5031,
  1778. "displayOrder": 0,
  1779. "isApp": 0,
  1780. "enabled": 1,
  1781. "createdBy": 1,
  1782. "createdAt": "2019-05-27 11:57:06",
  1783. "updatedBy": null,
  1784. "updatedAt": null,
  1785. "perms": "system-monitoring.log.add",
  1786. "iconUrl": null,
  1787. "description": "新增",
  1788. "moduleId": null,
  1789. "isOuterChain": 0,
  1790. "isPopup": 0,
  1791. "cache": 0,
  1792. "component": null,
  1793. "children": null,
  1794. "default": true,
  1795. "leaf": false
  1796. },
  1797. {
  1798. "id": 5135,
  1799. "menuCode": "delete",
  1800. "systemCode": null,
  1801. "menuName": "删除",
  1802. "url": null,
  1803. "rightType": 3,
  1804. "parentCode": 5031,
  1805. "displayOrder": 0,
  1806. "isApp": 0,
  1807. "enabled": 1,
  1808. "createdBy": 1,
  1809. "createdAt": "2019-05-27 11:57:06",
  1810. "updatedBy": null,
  1811. "updatedAt": null,
  1812. "perms": "system-monitoring.log.delete",
  1813. "iconUrl": null,
  1814. "description": "删除",
  1815. "moduleId": null,
  1816. "isOuterChain": 0,
  1817. "isPopup": 0,
  1818. "cache": 0,
  1819. "component": null,
  1820. "children": null,
  1821. "default": true,
  1822. "leaf": false
  1823. },
  1824. {
  1825. "id": 5136,
  1826. "menuCode": "edit",
  1827. "systemCode": null,
  1828. "menuName": "修改",
  1829. "url": null,
  1830. "rightType": 3,
  1831. "parentCode": 5031,
  1832. "displayOrder": 0,
  1833. "isApp": 0,
  1834. "enabled": 1,
  1835. "createdBy": 1,
  1836. "createdAt": "2019-05-27 11:57:06",
  1837. "updatedBy": null,
  1838. "updatedAt": null,
  1839. "perms": "system-monitoring.log.edit",
  1840. "iconUrl": null,
  1841. "description": "修改",
  1842. "moduleId": null,
  1843. "isOuterChain": 0,
  1844. "isPopup": 0,
  1845. "cache": 0,
  1846. "component": null,
  1847. "children": null,
  1848. "default": true,
  1849. "leaf": false
  1850. },
  1851. {
  1852. "id": 5137,
  1853. "menuCode": "find",
  1854. "systemCode": null,
  1855. "menuName": "查询",
  1856. "url": null,
  1857. "rightType": 3,
  1858. "parentCode": 5031,
  1859. "displayOrder": 0,
  1860. "isApp": 0,
  1861. "enabled": 1,
  1862. "createdBy": 1,
  1863. "createdAt": "2019-05-27 11:57:06",
  1864. "updatedBy": null,
  1865. "updatedAt": null,
  1866. "perms": "system-monitoring.log.find",
  1867. "iconUrl": null,
  1868. "description": "查询",
  1869. "moduleId": null,
  1870. "isOuterChain": 0,
  1871. "isPopup": 0,
  1872. "cache": 0,
  1873. "component": null,
  1874. "children": null,
  1875. "default": true,
  1876. "leaf": false
  1877. }
  1878. ],
  1879. "default": true,
  1880. "leaf": true
  1881. },
  1882. {
  1883. "id": 5032,
  1884. "menuCode": "MKLB",
  1885. "systemCode": null,
  1886. "menuName": "模块列表",
  1887. "url": "0",
  1888. "rightType": 2,
  1889. "parentCode": 5001,
  1890. "displayOrder": 1,
  1891. "isApp": 0,
  1892. "enabled": 1,
  1893. "createdBy": 1,
  1894. "createdAt": "2019-05-08 19:22:51",
  1895. "updatedBy": null,
  1896. "updatedAt": null,
  1897. "perms": "system-monitoring.module",
  1898. "iconUrl": "",
  1899. "description": "模块列表",
  1900. "moduleId": null,
  1901. "isOuterChain": 0,
  1902. "isPopup": 0,
  1903. "cache": 0,
  1904. "component": null,
  1905. "children": [
  1906. {
  1907. "id": 5138,
  1908. "menuCode": "add",
  1909. "systemCode": null,
  1910. "menuName": "新增",
  1911. "url": null,
  1912. "rightType": 3,
  1913. "parentCode": 5032,
  1914. "displayOrder": 0,
  1915. "isApp": 0,
  1916. "enabled": 1,
  1917. "createdBy": 1,
  1918. "createdAt": "2019-05-27 11:57:06",
  1919. "updatedBy": null,
  1920. "updatedAt": null,
  1921. "perms": "system-monitoring.module.add",
  1922. "iconUrl": null,
  1923. "description": "新增",
  1924. "moduleId": null,
  1925. "isOuterChain": 0,
  1926. "isPopup": 0,
  1927. "cache": 0,
  1928. "component": null,
  1929. "children": null,
  1930. "default": true,
  1931. "leaf": false
  1932. },
  1933. {
  1934. "id": 5139,
  1935. "menuCode": "delete",
  1936. "systemCode": null,
  1937. "menuName": "删除",
  1938. "url": null,
  1939. "rightType": 3,
  1940. "parentCode": 5032,
  1941. "displayOrder": 0,
  1942. "isApp": 0,
  1943. "enabled": 1,
  1944. "createdBy": 1,
  1945. "createdAt": "2019-05-27 11:57:06",
  1946. "updatedBy": null,
  1947. "updatedAt": null,
  1948. "perms": "system-monitoring.module.delete",
  1949. "iconUrl": null,
  1950. "description": "删除",
  1951. "moduleId": null,
  1952. "isOuterChain": 0,
  1953. "isPopup": 0,
  1954. "cache": 0,
  1955. "component": null,
  1956. "children": null,
  1957. "default": true,
  1958. "leaf": false
  1959. },
  1960. {
  1961. "id": 5140,
  1962. "menuCode": "edit",
  1963. "systemCode": null,
  1964. "menuName": "修改",
  1965. "url": null,
  1966. "rightType": 3,
  1967. "parentCode": 5032,
  1968. "displayOrder": 0,
  1969. "isApp": 0,
  1970. "enabled": 1,
  1971. "createdBy": 1,
  1972. "createdAt": "2019-05-27 11:57:06",
  1973. "updatedBy": null,
  1974. "updatedAt": null,
  1975. "perms": "system-monitoring.module.edit",
  1976. "iconUrl": null,
  1977. "description": "修改",
  1978. "moduleId": null,
  1979. "isOuterChain": 0,
  1980. "isPopup": 0,
  1981. "cache": 0,
  1982. "component": null,
  1983. "children": null,
  1984. "default": true,
  1985. "leaf": false
  1986. },
  1987. {
  1988. "id": 5141,
  1989. "menuCode": "find",
  1990. "systemCode": null,
  1991. "menuName": "查询",
  1992. "url": null,
  1993. "rightType": 3,
  1994. "parentCode": 5032,
  1995. "displayOrder": 0,
  1996. "isApp": 0,
  1997. "enabled": 1,
  1998. "createdBy": 1,
  1999. "createdAt": "2019-05-27 11:57:06",
  2000. "updatedBy": null,
  2001. "updatedAt": null,
  2002. "perms": "system-monitoring.module.find",
  2003. "iconUrl": null,
  2004. "description": "查询",
  2005. "moduleId": null,
  2006. "isOuterChain": 0,
  2007. "isPopup": 0,
  2008. "cache": 0,
  2009. "component": null,
  2010. "children": null,
  2011. "default": true,
  2012. "leaf": false
  2013. }
  2014. ],
  2015. "default": true,
  2016. "leaf": true
  2017. }
  2018. ],
  2019. "default": true,
  2020. "leaf": false
  2021. },
  2022. {
  2023. "id": 5002,
  2024. "menuCode": "DSRW",
  2025. "systemCode": null,
  2026. "menuName": "Kafka & Schedule",
  2027. "url": "",
  2028. "rightType": 1,
  2029. "parentCode": 0,
  2030. "displayOrder": 0,
  2031. "isApp": 0,
  2032. "enabled": 1,
  2033. "createdBy": 1,
  2034. "createdAt": "2019-05-08 17:39:20",
  2035. "updatedBy": 2,
  2036. "updatedAt": "2019-07-19 10:49:57",
  2037. "perms": "timed-task",
  2038. "iconUrl": "",
  2039. "description": "定时任务",
  2040. "moduleId": null,
  2041. "isOuterChain": 0,
  2042. "isPopup": 0,
  2043. "cache": 0,
  2044. "component": null,
  2045. "children": [
  2046. {
  2047. "id": 5033,
  2048. "menuCode": "kafka",
  2049. "systemCode": null,
  2050. "menuName": "kafka监控",
  2051. "url": "",
  2052. "rightType": 2,
  2053. "parentCode": 5002,
  2054. "displayOrder": 0,
  2055. "isApp": 0,
  2056. "enabled": 1,
  2057. "createdBy": 1,
  2058. "createdAt": "2019-05-08 19:29:02",
  2059. "updatedBy": null,
  2060. "updatedAt": null,
  2061. "perms": "timed-task.kafka",
  2062. "iconUrl": "",
  2063. "description": "kafka",
  2064. "moduleId": null,
  2065. "isOuterChain": 0,
  2066. "isPopup": 0,
  2067. "cache": 0,
  2068. "component": null,
  2069. "children": [
  2070. {
  2071. "id": 5142,
  2072. "menuCode": "add",
  2073. "systemCode": null,
  2074. "menuName": "新增",
  2075. "url": null,
  2076. "rightType": 3,
  2077. "parentCode": 5033,
  2078. "displayOrder": 0,
  2079. "isApp": 0,
  2080. "enabled": 1,
  2081. "createdBy": 1,
  2082. "createdAt": "2019-05-27 11:57:06",
  2083. "updatedBy": null,
  2084. "updatedAt": null,
  2085. "perms": "timed-task.kafka.add",
  2086. "iconUrl": null,
  2087. "description": "新增",
  2088. "moduleId": null,
  2089. "isOuterChain": 0,
  2090. "isPopup": 0,
  2091. "cache": 0,
  2092. "component": null,
  2093. "children": null,
  2094. "default": true,
  2095. "leaf": false
  2096. },
  2097. {
  2098. "id": 5143,
  2099. "menuCode": "delete",
  2100. "systemCode": null,
  2101. "menuName": "删除",
  2102. "url": null,
  2103. "rightType": 3,
  2104. "parentCode": 5033,
  2105. "displayOrder": 0,
  2106. "isApp": 0,
  2107. "enabled": 1,
  2108. "createdBy": 1,
  2109. "createdAt": "2019-05-27 11:57:06",
  2110. "updatedBy": null,
  2111. "updatedAt": null,
  2112. "perms": "timed-task.kafka.delete",
  2113. "iconUrl": null,
  2114. "description": "删除",
  2115. "moduleId": null,
  2116. "isOuterChain": 0,
  2117. "isPopup": 0,
  2118. "cache": 0,
  2119. "component": null,
  2120. "children": null,
  2121. "default": true,
  2122. "leaf": false
  2123. },
  2124. {
  2125. "id": 5144,
  2126. "menuCode": "edit",
  2127. "systemCode": null,
  2128. "menuName": "修改",
  2129. "url": null,
  2130. "rightType": 3,
  2131. "parentCode": 5033,
  2132. "displayOrder": 0,
  2133. "isApp": 0,
  2134. "enabled": 1,
  2135. "createdBy": 1,
  2136. "createdAt": "2019-05-27 11:57:06",
  2137. "updatedBy": null,
  2138. "updatedAt": null,
  2139. "perms": "timed-task.kafka.edit",
  2140. "iconUrl": null,
  2141. "description": "修改",
  2142. "moduleId": null,
  2143. "isOuterChain": 0,
  2144. "isPopup": 0,
  2145. "cache": 0,
  2146. "component": null,
  2147. "children": null,
  2148. "default": true,
  2149. "leaf": false
  2150. },
  2151. {
  2152. "id": 5145,
  2153. "menuCode": "find",
  2154. "systemCode": null,
  2155. "menuName": "查询",
  2156. "url": null,
  2157. "rightType": 3,
  2158. "parentCode": 5033,
  2159. "displayOrder": 0,
  2160. "isApp": 0,
  2161. "enabled": 1,
  2162. "createdBy": 1,
  2163. "createdAt": "2019-05-27 11:57:06",
  2164. "updatedBy": null,
  2165. "updatedAt": null,
  2166. "perms": "timed-task.kafka.find",
  2167. "iconUrl": null,
  2168. "description": "查询",
  2169. "moduleId": null,
  2170. "isOuterChain": 0,
  2171. "isPopup": 0,
  2172. "cache": 0,
  2173. "component": null,
  2174. "children": null,
  2175. "default": true,
  2176. "leaf": false
  2177. }
  2178. ],
  2179. "default": true,
  2180. "leaf": false
  2181. },
  2182. {
  2183. "id": 5034,
  2184. "menuCode": "DSRWGL",
  2185. "systemCode": null,
  2186. "menuName": "定时任务管理",
  2187. "url": "0",
  2188. "rightType": 2,
  2189. "parentCode": 5002,
  2190. "displayOrder": 1,
  2191. "isApp": 0,
  2192. "enabled": 1,
  2193. "createdBy": 1,
  2194. "createdAt": "2019-05-08 19:29:46",
  2195. "updatedBy": null,
  2196. "updatedAt": null,
  2197. "perms": "timed-task.schedule",
  2198. "iconUrl": "",
  2199. "description": "定时任务管理",
  2200. "moduleId": null,
  2201. "isOuterChain": 0,
  2202. "isPopup": 0,
  2203. "cache": 0,
  2204. "component": null,
  2205. "children": [
  2206. {
  2207. "id": 5146,
  2208. "menuCode": "add",
  2209. "systemCode": null,
  2210. "menuName": "新增",
  2211. "url": null,
  2212. "rightType": 3,
  2213. "parentCode": 5034,
  2214. "displayOrder": 0,
  2215. "isApp": 0,
  2216. "enabled": 1,
  2217. "createdBy": 1,
  2218. "createdAt": "2019-05-27 11:57:06",
  2219. "updatedBy": null,
  2220. "updatedAt": null,
  2221. "perms": "timed-task.schedule.add",
  2222. "iconUrl": null,
  2223. "description": "新增",
  2224. "moduleId": null,
  2225. "isOuterChain": 0,
  2226. "isPopup": 0,
  2227. "cache": 0,
  2228. "component": null,
  2229. "children": null,
  2230. "default": true,
  2231. "leaf": false
  2232. },
  2233. {
  2234. "id": 5147,
  2235. "menuCode": "delete",
  2236. "systemCode": null,
  2237. "menuName": "删除",
  2238. "url": null,
  2239. "rightType": 3,
  2240. "parentCode": 5034,
  2241. "displayOrder": 0,
  2242. "isApp": 0,
  2243. "enabled": 1,
  2244. "createdBy": 1,
  2245. "createdAt": "2019-05-27 11:57:06",
  2246. "updatedBy": null,
  2247. "updatedAt": null,
  2248. "perms": "timed-task.schedule.delete",
  2249. "iconUrl": null,
  2250. "description": "删除",
  2251. "moduleId": null,
  2252. "isOuterChain": 0,
  2253. "isPopup": 0,
  2254. "cache": 0,
  2255. "component": null,
  2256. "children": null,
  2257. "default": true,
  2258. "leaf": false
  2259. },
  2260. {
  2261. "id": 5148,
  2262. "menuCode": "edit",
  2263. "systemCode": null,
  2264. "menuName": "修改",
  2265. "url": null,
  2266. "rightType": 3,
  2267. "parentCode": 5034,
  2268. "displayOrder": 0,
  2269. "isApp": 0,
  2270. "enabled": 1,
  2271. "createdBy": 1,
  2272. "createdAt": "2019-05-27 11:57:06",
  2273. "updatedBy": null,
  2274. "updatedAt": null,
  2275. "perms": "timed-task.schedule.edit",
  2276. "iconUrl": null,
  2277. "description": "修改",
  2278. "moduleId": null,
  2279. "isOuterChain": 0,
  2280. "isPopup": 0,
  2281. "cache": 0,
  2282. "component": null,
  2283. "children": null,
  2284. "default": true,
  2285. "leaf": false
  2286. },
  2287. {
  2288. "id": 5149,
  2289. "menuCode": "find",
  2290. "systemCode": null,
  2291. "menuName": "查询",
  2292. "url": null,
  2293. "rightType": 3,
  2294. "parentCode": 5034,
  2295. "displayOrder": 0,
  2296. "isApp": 0,
  2297. "enabled": 1,
  2298. "createdBy": 1,
  2299. "createdAt": "2019-05-27 11:57:06",
  2300. "updatedBy": null,
  2301. "updatedAt": null,
  2302. "perms": "timed-task.schedule.find",
  2303. "iconUrl": null,
  2304. "description": "查询",
  2305. "moduleId": null,
  2306. "isOuterChain": 0,
  2307. "isPopup": 0,
  2308. "cache": 0,
  2309. "component": null,
  2310. "children": null,
  2311. "default": true,
  2312. "leaf": false
  2313. }
  2314. ],
  2315. "default": true,
  2316. "leaf": true
  2317. }
  2318. ],
  2319. "default": true,
  2320. "leaf": false
  2321. },
  2322. {
  2323. "id": 5003,
  2324. "menuCode": "XTGL",
  2325. "systemCode": null,
  2326. "menuName": "系统管理",
  2327. "url": "",
  2328. "rightType": 1,
  2329. "parentCode": 0,
  2330. "displayOrder": 0,
  2331. "isApp": 0,
  2332. "enabled": 1,
  2333. "createdBy": 1,
  2334. "createdAt": "2019-05-08 17:39:56",
  2335. "updatedBy": null,
  2336. "updatedAt": null,
  2337. "perms": "system-management",
  2338. "iconUrl": "",
  2339. "description": "系统管理",
  2340. "moduleId": null,
  2341. "isOuterChain": 0,
  2342. "isPopup": 0,
  2343. "cache": 0,
  2344. "component": null,
  2345. "children": [
  2346. {
  2347. "id": 5010,
  2348. "menuCode": "CDXXGL",
  2349. "systemCode": null,
  2350. "menuName": "菜单信息配置",
  2351. "url": "http://xxx.xxx.xxx",
  2352. "rightType": 2,
  2353. "parentCode": 5003,
  2354. "displayOrder": 0,
  2355. "isApp": 0,
  2356. "enabled": 1,
  2357. "createdBy": 1,
  2358. "createdAt": "2019-05-08 18:08:36",
  2359. "updatedBy": null,
  2360. "updatedAt": null,
  2361. "perms": "system-management.menu",
  2362. "iconUrl": "",
  2363. "description": "菜单信息配置",
  2364. "moduleId": null,
  2365. "isOuterChain": 0,
  2366. "isPopup": 0,
  2367. "cache": 0,
  2368. "component": null,
  2369. "children": [
  2370. {
  2371. "id": 5065,
  2372. "menuCode": "operate",
  2373. "systemCode": null,
  2374. "menuName": "新增/修改/删除",
  2375. "url": "",
  2376. "rightType": 3,
  2377. "parentCode": 5010,
  2378. "displayOrder": 0,
  2379. "isApp": 0,
  2380. "enabled": 1,
  2381. "createdBy": 1,
  2382. "createdAt": "2019-05-27 11:57:06",
  2383. "updatedBy": 135,
  2384. "updatedAt": "2019-07-16 14:47:15",
  2385. "perms": "system-management.menu.operate",
  2386. "iconUrl": "",
  2387. "description": "查询",
  2388. "moduleId": null,
  2389. "isOuterChain": 0,
  2390. "isPopup": 0,
  2391. "cache": 0,
  2392. "component": null,
  2393. "children": null,
  2394. "default": true,
  2395. "leaf": false
  2396. }
  2397. ],
  2398. "default": true,
  2399. "leaf": true
  2400. },
  2401. {
  2402. "id": 5322,
  2403. "menuCode": "",
  2404. "systemCode": null,
  2405. "menuName": "基础权限设置",
  2406. "url": "",
  2407. "rightType": 2,
  2408. "parentCode": 5003,
  2409. "displayOrder": 0,
  2410. "isApp": 0,
  2411. "enabled": 1,
  2412. "createdBy": 716,
  2413. "createdAt": "2020-01-03 11:18:04",
  2414. "updatedBy": null,
  2415. "updatedAt": null,
  2416. "perms": "system-management.base",
  2417. "iconUrl": "",
  2418. "description": "",
  2419. "moduleId": null,
  2420. "isOuterChain": 0,
  2421. "isPopup": 0,
  2422. "cache": 0,
  2423. "component": null,
  2424. "children": null,
  2425. "default": true,
  2426. "leaf": false
  2427. },
  2428. {
  2429. "id": 5029,
  2430. "menuCode": "GLYHPZ",
  2431. "systemCode": null,
  2432. "menuName": "管理用户配置",
  2433. "url": "",
  2434. "rightType": 2,
  2435. "parentCode": 5003,
  2436. "displayOrder": 1,
  2437. "isApp": 0,
  2438. "enabled": 1,
  2439. "createdBy": 1,
  2440. "createdAt": "2019-05-08 19:12:59",
  2441. "updatedBy": null,
  2442. "updatedAt": null,
  2443. "perms": "system-management.user",
  2444. "iconUrl": "",
  2445. "description": "管理用户配置",
  2446. "moduleId": null,
  2447. "isOuterChain": 0,
  2448. "isPopup": 0,
  2449. "cache": 0,
  2450. "component": null,
  2451. "children": [
  2452. {
  2453. "id": 5129,
  2454. "menuCode": "operate",
  2455. "systemCode": null,
  2456. "menuName": "新增/删除/修改",
  2457. "url": "",
  2458. "rightType": 3,
  2459. "parentCode": 5029,
  2460. "displayOrder": 0,
  2461. "isApp": 0,
  2462. "enabled": 1,
  2463. "createdBy": 1,
  2464. "createdAt": "2019-05-27 11:57:06",
  2465. "updatedBy": 135,
  2466. "updatedAt": "2019-07-16 14:51:54",
  2467. "perms": "system-management.user.operate",
  2468. "iconUrl": "",
  2469. "description": "新增/删除/修改",
  2470. "moduleId": null,
  2471. "isOuterChain": 0,
  2472. "isPopup": 0,
  2473. "cache": 0,
  2474. "component": null,
  2475. "children": null,
  2476. "default": true,
  2477. "leaf": false
  2478. },
  2479. {
  2480. "id": 5391,
  2481. "menuCode": "upload",
  2482. "systemCode": null,
  2483. "menuName": "批量导入/下载模板",
  2484. "url": "",
  2485. "rightType": 3,
  2486. "parentCode": 5029,
  2487. "displayOrder": 0,
  2488. "isApp": 0,
  2489. "enabled": 1,
  2490. "createdBy": 3200,
  2491. "createdAt": "2020-06-01 17:04:49",
  2492. "updatedBy": null,
  2493. "updatedAt": null,
  2494. "perms": "system-management.user.upload",
  2495. "iconUrl": "",
  2496. "description": "批量导入/下载模板",
  2497. "moduleId": null,
  2498. "isOuterChain": 0,
  2499. "isPopup": 0,
  2500. "cache": 0,
  2501. "component": null,
  2502. "children": null,
  2503. "default": true,
  2504. "leaf": false
  2505. }
  2506. ],
  2507. "default": true,
  2508. "leaf": false
  2509. },
  2510. {
  2511. "id": 5030,
  2512. "menuCode": "XTJSGL",
  2513. "systemCode": null,
  2514. "menuName": "系统角色管理",
  2515. "url": "",
  2516. "rightType": 2,
  2517. "parentCode": 5003,
  2518. "displayOrder": 2,
  2519. "isApp": 0,
  2520. "enabled": 1,
  2521. "createdBy": 1,
  2522. "createdAt": "2019-05-08 19:13:59",
  2523. "updatedBy": null,
  2524. "updatedAt": null,
  2525. "perms": "system-management.role",
  2526. "iconUrl": "",
  2527. "description": "系统角色管理",
  2528. "moduleId": null,
  2529. "isOuterChain": 0,
  2530. "isPopup": 0,
  2531. "cache": 0,
  2532. "component": null,
  2533. "children": [
  2534. {
  2535. "id": 5133,
  2536. "menuCode": "operate",
  2537. "systemCode": null,
  2538. "menuName": "新增/修改/删除",
  2539. "url": "",
  2540. "rightType": 3,
  2541. "parentCode": 5030,
  2542. "displayOrder": 0,
  2543. "isApp": 0,
  2544. "enabled": 1,
  2545. "createdBy": 1,
  2546. "createdAt": "2019-05-27 11:57:06",
  2547. "updatedBy": 135,
  2548. "updatedAt": "2019-07-16 14:53:29",
  2549. "perms": "system-management.role.operate",
  2550. "iconUrl": "",
  2551. "description": "查询",
  2552. "moduleId": null,
  2553. "isOuterChain": 0,
  2554. "isPopup": 0,
  2555. "cache": 0,
  2556. "component": null,
  2557. "children": null,
  2558. "default": true,
  2559. "leaf": false
  2560. }
  2561. ],
  2562. "default": true,
  2563. "leaf": false
  2564. },
  2565. {
  2566. "id": 5327,
  2567. "menuCode": "glybmgl",
  2568. "systemCode": null,
  2569. "menuName": "管理员部门管理",
  2570. "url": "",
  2571. "rightType": 2,
  2572. "parentCode": 5003,
  2573. "displayOrder": 4,
  2574. "isApp": 0,
  2575. "enabled": 1,
  2576. "createdBy": 41,
  2577. "createdAt": "2020-01-15 17:23:25",
  2578. "updatedBy": null,
  2579. "updatedAt": null,
  2580. "perms": "system-management.department",
  2581. "iconUrl": "",
  2582. "description": "管理员部门管理",
  2583. "moduleId": null,
  2584. "isOuterChain": 0,
  2585. "isPopup": 0,
  2586. "cache": 0,
  2587. "component": null,
  2588. "children": [
  2589. {
  2590. "id": 5394,
  2591. "menuCode": "GLYBMGL",
  2592. "systemCode": null,
  2593. "menuName": "新增/修改/删除",
  2594. "url": "0",
  2595. "rightType": 3,
  2596. "parentCode": 5327,
  2597. "displayOrder": 0,
  2598. "isApp": 0,
  2599. "enabled": 1,
  2600. "createdBy": 3288,
  2601. "createdAt": "2020-06-12 15:09:40",
  2602. "updatedBy": null,
  2603. "updatedAt": null,
  2604. "perms": "system-management.department.operate",
  2605. "iconUrl": "",
  2606. "description": "管理员部门管理",
  2607. "moduleId": null,
  2608. "isOuterChain": 0,
  2609. "isPopup": 0,
  2610. "cache": 0,
  2611. "component": null,
  2612. "children": null,
  2613. "default": true,
  2614. "leaf": true
  2615. }
  2616. ],
  2617. "default": true,
  2618. "leaf": false
  2619. }
  2620. ],
  2621. "default": true,
  2622. "leaf": false
  2623. },
  2624. {
  2625. "id": 5004,
  2626. "menuCode": "ZZJG",
  2627. "systemCode": null,
  2628. "menuName": "组织架构",
  2629. "url": "",
  2630. "rightType": 1,
  2631. "parentCode": 0,
  2632. "displayOrder": 0,
  2633. "isApp": 0,
  2634. "enabled": 1,
  2635. "createdBy": 1,
  2636. "createdAt": "2019-05-08 17:40:13",
  2637. "updatedBy": null,
  2638. "updatedAt": null,
  2639. "perms": "organization",
  2640. "iconUrl": "",
  2641. "description": "组织架构",
  2642. "moduleId": null,
  2643. "isOuterChain": 0,
  2644. "isPopup": 0,
  2645. "cache": 0,
  2646. "component": null,
  2647. "children": [
  2648. {
  2649. "id": 5223,
  2650. "menuCode": "serviceOrgConfig",
  2651. "systemCode": null,
  2652. "menuName": "校区服务配置",
  2653. "url": "",
  2654. "rightType": 2,
  2655. "parentCode": 5004,
  2656. "displayOrder": 0,
  2657. "isApp": 0,
  2658. "enabled": 1,
  2659. "createdBy": 135,
  2660. "createdAt": "2019-07-16 14:12:07",
  2661. "updatedBy": 3200,
  2662. "updatedAt": "2020-06-12 16:09:39",
  2663. "perms": "organization.serviceOrgConfig",
  2664. "iconUrl": "",
  2665. "description": "",
  2666. "moduleId": null,
  2667. "isOuterChain": 0,
  2668. "isPopup": 0,
  2669. "cache": 0,
  2670. "component": null,
  2671. "children": [
  2672. {
  2673. "id": 5226,
  2674. "menuCode": "operate",
  2675. "systemCode": null,
  2676. "menuName": "新增/删除/修改",
  2677. "url": "",
  2678. "rightType": 3,
  2679. "parentCode": 5223,
  2680. "displayOrder": 0,
  2681. "isApp": 0,
  2682. "enabled": 1,
  2683. "createdBy": 135,
  2684. "createdAt": "2019-07-16 14:45:18",
  2685. "updatedBy": null,
  2686. "updatedAt": null,
  2687. "perms": "organization.serviceOrgConfig.operate",
  2688. "iconUrl": "",
  2689. "description": "",
  2690. "moduleId": null,
  2691. "isOuterChain": 0,
  2692. "isPopup": 0,
  2693. "cache": 0,
  2694. "component": null,
  2695. "children": null,
  2696. "default": true,
  2697. "leaf": false
  2698. }
  2699. ],
  2700. "default": true,
  2701. "leaf": false
  2702. },
  2703. {
  2704. "id": 5583,
  2705. "menuCode": "",
  2706. "systemCode": null,
  2707. "menuName": "服务申请管理",
  2708. "url": "",
  2709. "rightType": 2,
  2710. "parentCode": 5004,
  2711. "displayOrder": 0,
  2712. "isApp": 0,
  2713. "enabled": 1,
  2714. "createdBy": 3071,
  2715. "createdAt": "2021-11-10 18:15:32",
  2716. "updatedBy": 2959,
  2717. "updatedAt": "2021-11-26 16:23:05",
  2718. "perms": "organization.serviceApplicationManage",
  2719. "iconUrl": "",
  2720. "description": "",
  2721. "moduleId": null,
  2722. "isOuterChain": 0,
  2723. "isPopup": 0,
  2724. "cache": 0,
  2725. "component": null,
  2726. "children": null,
  2727. "default": true,
  2728. "leaf": false
  2729. },
  2730. {
  2731. "id": 5018,
  2732. "menuCode": "organization",
  2733. "systemCode": null,
  2734. "menuName": "项目信息配置",
  2735. "url": "0",
  2736. "rightType": 2,
  2737. "parentCode": 5004,
  2738. "displayOrder": 1,
  2739. "isApp": 0,
  2740. "enabled": 1,
  2741. "createdBy": 19,
  2742. "createdAt": "2019-05-08 18:30:44",
  2743. "updatedBy": 135,
  2744. "updatedAt": "2019-07-16 11:42:01",
  2745. "perms": "organization.organization",
  2746. "iconUrl": "",
  2747. "description": "",
  2748. "moduleId": null,
  2749. "isOuterChain": 0,
  2750. "isPopup": 0,
  2751. "cache": 0,
  2752. "component": null,
  2753. "children": [
  2754. {
  2755. "id": 5082,
  2756. "menuCode": "operate",
  2757. "systemCode": null,
  2758. "menuName": "新增/删除/修改",
  2759. "url": "",
  2760. "rightType": 3,
  2761. "parentCode": 5018,
  2762. "displayOrder": 0,
  2763. "isApp": 0,
  2764. "enabled": 1,
  2765. "createdBy": 1,
  2766. "createdAt": "2019-05-27 11:57:06",
  2767. "updatedBy": 135,
  2768. "updatedAt": "2019-07-16 14:41:10",
  2769. "perms": "organization.organization.operate",
  2770. "iconUrl": "",
  2771. "description": "新增",
  2772. "moduleId": null,
  2773. "isOuterChain": 0,
  2774. "isPopup": 0,
  2775. "cache": 0,
  2776. "component": null,
  2777. "children": null,
  2778. "default": true,
  2779. "leaf": false
  2780. },
  2781. {
  2782. "id": 5418,
  2783. "menuCode": "",
  2784. "systemCode": null,
  2785. "menuName": "推荐管理",
  2786. "url": "",
  2787. "rightType": 3,
  2788. "parentCode": 5018,
  2789. "displayOrder": 0,
  2790. "isApp": 0,
  2791. "enabled": 1,
  2792. "createdBy": 2977,
  2793. "createdAt": "2020-11-16 10:26:46",
  2794. "updatedBy": 2977,
  2795. "updatedAt": "2020-11-16 10:29:18",
  2796. "perms": "organization.organization.recommandManger",
  2797. "iconUrl": "",
  2798. "description": "推荐管理",
  2799. "moduleId": null,
  2800. "isOuterChain": 0,
  2801. "isPopup": 0,
  2802. "cache": 0,
  2803. "component": null,
  2804. "children": null,
  2805. "default": true,
  2806. "leaf": false
  2807. }
  2808. ],
  2809. "default": true,
  2810. "leaf": true
  2811. },
  2812. {
  2813. "id": 5222,
  2814. "menuCode": "service",
  2815. "systemCode": null,
  2816. "menuName": "运营中心服务配置",
  2817. "url": "0",
  2818. "rightType": 2,
  2819. "parentCode": 5004,
  2820. "displayOrder": 2,
  2821. "isApp": 0,
  2822. "enabled": 1,
  2823. "createdBy": 135,
  2824. "createdAt": "2019-07-16 11:57:49",
  2825. "updatedBy": 135,
  2826. "updatedAt": "2019-07-16 11:59:44",
  2827. "perms": "organization.service",
  2828. "iconUrl": "",
  2829. "description": "运营中心服务配置",
  2830. "moduleId": null,
  2831. "isOuterChain": 0,
  2832. "isPopup": 0,
  2833. "cache": 0,
  2834. "component": null,
  2835. "children": [
  2836. {
  2837. "id": 5225,
  2838. "menuCode": "operate",
  2839. "systemCode": null,
  2840. "menuName": "新增/删除/修改",
  2841. "url": "",
  2842. "rightType": 3,
  2843. "parentCode": 5222,
  2844. "displayOrder": 0,
  2845. "isApp": 0,
  2846. "enabled": 1,
  2847. "createdBy": 135,
  2848. "createdAt": "2019-07-16 14:28:10",
  2849. "updatedBy": 135,
  2850. "updatedAt": "2019-07-16 14:36:25",
  2851. "perms": "organization.service.operate",
  2852. "iconUrl": "",
  2853. "description": "",
  2854. "moduleId": null,
  2855. "isOuterChain": 0,
  2856. "isPopup": 0,
  2857. "cache": 0,
  2858. "component": null,
  2859. "children": null,
  2860. "default": true,
  2861. "leaf": false
  2862. }
  2863. ],
  2864. "default": true,
  2865. "leaf": true
  2866. },
  2867. {
  2868. "id": 5022,
  2869. "menuCode": "company",
  2870. "systemCode": null,
  2871. "menuName": "运营中心信息配置",
  2872. "url": "0",
  2873. "rightType": 2,
  2874. "parentCode": 5004,
  2875. "displayOrder": 3,
  2876. "isApp": 0,
  2877. "enabled": 1,
  2878. "createdBy": 19,
  2879. "createdAt": "2019-05-08 18:35:38",
  2880. "updatedBy": 135,
  2881. "updatedAt": "2019-07-16 11:59:25",
  2882. "perms": "organization.company",
  2883. "iconUrl": "",
  2884. "description": "",
  2885. "moduleId": null,
  2886. "isOuterChain": 0,
  2887. "isPopup": 0,
  2888. "cache": 0,
  2889. "component": null,
  2890. "children": [
  2891. {
  2892. "id": 5098,
  2893. "menuCode": "operate",
  2894. "systemCode": null,
  2895. "menuName": "新增/删除/修改",
  2896. "url": "",
  2897. "rightType": 3,
  2898. "parentCode": 5022,
  2899. "displayOrder": 0,
  2900. "isApp": 0,
  2901. "enabled": 1,
  2902. "createdBy": 1,
  2903. "createdAt": "2019-05-27 11:57:06",
  2904. "updatedBy": 135,
  2905. "updatedAt": "2019-07-16 14:38:10",
  2906. "perms": "organization.company.operate",
  2907. "iconUrl": "",
  2908. "description": "新增/删除/修改",
  2909. "moduleId": null,
  2910. "isOuterChain": 0,
  2911. "isPopup": 0,
  2912. "cache": 0,
  2913. "component": null,
  2914. "children": null,
  2915. "default": true,
  2916. "leaf": false
  2917. }
  2918. ],
  2919. "default": true,
  2920. "leaf": true
  2921. }
  2922. ],
  2923. "default": true,
  2924. "leaf": false
  2925. },
  2926. {
  2927. "id": 5005,
  2928. "menuCode": "JCSZ",
  2929. "systemCode": null,
  2930. "menuName": "基础设置",
  2931. "url": "",
  2932. "rightType": 1,
  2933. "parentCode": 0,
  2934. "displayOrder": 0,
  2935. "isApp": 0,
  2936. "enabled": 1,
  2937. "createdBy": 1,
  2938. "createdAt": "2019-05-08 17:40:40",
  2939. "updatedBy": 2,
  2940. "updatedAt": "2019-05-27 15:39:14",
  2941. "perms": "dictionary",
  2942. "iconUrl": "",
  2943. "description": "数据字典",
  2944. "moduleId": null,
  2945. "isOuterChain": 0,
  2946. "isPopup": 0,
  2947. "cache": 0,
  2948. "component": null,
  2949. "children": [
  2950. {
  2951. "id": 5202,
  2952. "menuCode": "SJZD",
  2953. "systemCode": null,
  2954. "menuName": "数据字典配置",
  2955. "url": "",
  2956. "rightType": 2,
  2957. "parentCode": 5005,
  2958. "displayOrder": 0,
  2959. "isApp": 0,
  2960. "enabled": 1,
  2961. "createdBy": 2,
  2962. "createdAt": "2019-05-27 12:01:34",
  2963. "updatedBy": 2,
  2964. "updatedAt": "2019-07-17 15:06:11",
  2965. "perms": "dictionary.dictionaryGroup",
  2966. "iconUrl": "",
  2967. "description": "数据字典",
  2968. "moduleId": null,
  2969. "isOuterChain": 0,
  2970. "isPopup": 0,
  2971. "cache": 0,
  2972. "component": null,
  2973. "children": [
  2974. {
  2975. "id": 5203,
  2976. "menuCode": "operate",
  2977. "systemCode": null,
  2978. "menuName": "新增/修改/删除",
  2979. "url": "0",
  2980. "rightType": 3,
  2981. "parentCode": 5202,
  2982. "displayOrder": 0,
  2983. "isApp": 0,
  2984. "enabled": 1,
  2985. "createdBy": 2,
  2986. "createdAt": "2019-05-27 12:02:48",
  2987. "updatedBy": 2,
  2988. "updatedAt": "2019-07-17 15:11:48",
  2989. "perms": "dictionary.dictionaryGroup.operate",
  2990. "iconUrl": "",
  2991. "description": "新增",
  2992. "moduleId": null,
  2993. "isOuterChain": 0,
  2994. "isPopup": 0,
  2995. "cache": 0,
  2996. "component": null,
  2997. "children": null,
  2998. "default": true,
  2999. "leaf": true
  3000. }
  3001. ],
  3002. "default": true,
  3003. "leaf": false
  3004. },
  3005. {
  3006. "id": 5238,
  3007. "menuCode": "mobileConfig",
  3008. "systemCode": null,
  3009. "menuName": "短信账号配置",
  3010. "url": "",
  3011. "rightType": 2,
  3012. "parentCode": 5005,
  3013. "displayOrder": 0,
  3014. "isApp": 0,
  3015. "enabled": 1,
  3016. "createdBy": 2,
  3017. "createdAt": "2019-07-17 15:08:03",
  3018. "updatedBy": null,
  3019. "updatedAt": null,
  3020. "perms": "dictionary.mobileConfig",
  3021. "iconUrl": "",
  3022. "description": "",
  3023. "moduleId": null,
  3024. "isOuterChain": 0,
  3025. "isPopup": 0,
  3026. "cache": 0,
  3027. "component": null,
  3028. "children": [
  3029. {
  3030. "id": 5240,
  3031. "menuCode": "operate",
  3032. "systemCode": null,
  3033. "menuName": "新增/修改/删除",
  3034. "url": "",
  3035. "rightType": 3,
  3036. "parentCode": 5238,
  3037. "displayOrder": 0,
  3038. "isApp": 0,
  3039. "enabled": 1,
  3040. "createdBy": 2,
  3041. "createdAt": "2019-07-17 15:13:03",
  3042. "updatedBy": null,
  3043. "updatedAt": null,
  3044. "perms": "dictionary.mobileConfig.operate",
  3045. "iconUrl": "",
  3046. "description": "",
  3047. "moduleId": null,
  3048. "isOuterChain": 0,
  3049. "isPopup": 0,
  3050. "cache": 0,
  3051. "component": null,
  3052. "children": null,
  3053. "default": true,
  3054. "leaf": false
  3055. }
  3056. ],
  3057. "default": true,
  3058. "leaf": false
  3059. },
  3060. {
  3061. "id": 5239,
  3062. "menuCode": "smsAuthcode",
  3063. "systemCode": null,
  3064. "menuName": "历史短信查询",
  3065. "url": "",
  3066. "rightType": 2,
  3067. "parentCode": 5005,
  3068. "displayOrder": 0,
  3069. "isApp": 0,
  3070. "enabled": 1,
  3071. "createdBy": 2,
  3072. "createdAt": "2019-07-17 15:08:32",
  3073. "updatedBy": null,
  3074. "updatedAt": null,
  3075. "perms": "dictionary.smsAuthcode",
  3076. "iconUrl": "",
  3077. "description": "",
  3078. "moduleId": null,
  3079. "isOuterChain": 0,
  3080. "isPopup": 0,
  3081. "cache": 0,
  3082. "component": null,
  3083. "children": null,
  3084. "default": true,
  3085. "leaf": false
  3086. },
  3087. {
  3088. "id": 5477,
  3089. "menuCode": "YYGL",
  3090. "systemCode": null,
  3091. "menuName": "应用管理",
  3092. "url": "0",
  3093. "rightType": 2,
  3094. "parentCode": 5005,
  3095. "displayOrder": 0,
  3096. "isApp": 0,
  3097. "enabled": 1,
  3098. "createdBy": 3071,
  3099. "createdAt": "2021-02-23 15:25:02",
  3100. "updatedBy": null,
  3101. "updatedAt": null,
  3102. "perms": "dictionary.applicationManage",
  3103. "iconUrl": "",
  3104. "description": "应用管理",
  3105. "moduleId": null,
  3106. "isOuterChain": 0,
  3107. "isPopup": 0,
  3108. "cache": 0,
  3109. "component": null,
  3110. "children": null,
  3111. "default": true,
  3112. "leaf": true
  3113. },
  3114. {
  3115. "id": 5478,
  3116. "menuCode": "JKGL",
  3117. "systemCode": null,
  3118. "menuName": "接口管理",
  3119. "url": "",
  3120. "rightType": 2,
  3121. "parentCode": 5005,
  3122. "displayOrder": 0,
  3123. "isApp": 0,
  3124. "enabled": 1,
  3125. "createdBy": 3071,
  3126. "createdAt": "2021-02-23 15:26:43",
  3127. "updatedBy": null,
  3128. "updatedAt": null,
  3129. "perms": "dictionary.interfaceManage",
  3130. "iconUrl": "",
  3131. "description": "",
  3132. "moduleId": null,
  3133. "isOuterChain": 0,
  3134. "isPopup": 0,
  3135. "cache": 0,
  3136. "component": null,
  3137. "children": null,
  3138. "default": true,
  3139. "leaf": false
  3140. },
  3141. {
  3142. "id": 5316,
  3143. "menuCode": "YYXMYSGL",
  3144. "systemCode": null,
  3145. "menuName": "应用项目映射管理",
  3146. "url": " projectMappingManger",
  3147. "rightType": 2,
  3148. "parentCode": 5005,
  3149. "displayOrder": 4,
  3150. "isApp": 0,
  3151. "enabled": 1,
  3152. "createdBy": 532,
  3153. "createdAt": "2019-12-17 15:31:08",
  3154. "updatedBy": 532,
  3155. "updatedAt": "2019-12-20 16:50:49",
  3156. "perms": "dictionary.projectMappingManger",
  3157. "iconUrl": "",
  3158. "description": "应用项目映射管理",
  3159. "moduleId": null,
  3160. "isOuterChain": 0,
  3161. "isPopup": 0,
  3162. "cache": 0,
  3163. "component": null,
  3164. "children": [
  3165. {
  3166. "id": 5317,
  3167. "menuCode": "operate",
  3168. "systemCode": null,
  3169. "menuName": "新增",
  3170. "url": "",
  3171. "rightType": 3,
  3172. "parentCode": 5316,
  3173. "displayOrder": 0,
  3174. "isApp": 0,
  3175. "enabled": 1,
  3176. "createdBy": 532,
  3177. "createdAt": "2019-12-20 16:56:44",
  3178. "updatedBy": null,
  3179. "updatedAt": null,
  3180. "perms": "projectMappingManger.add",
  3181. "iconUrl": "",
  3182. "description": "新增",
  3183. "moduleId": null,
  3184. "isOuterChain": 0,
  3185. "isPopup": 0,
  3186. "cache": 0,
  3187. "component": null,
  3188. "children": null,
  3189. "default": true,
  3190. "leaf": false
  3191. },
  3192. {
  3193. "id": 5318,
  3194. "menuCode": "operate",
  3195. "systemCode": null,
  3196. "menuName": "编辑",
  3197. "url": "",
  3198. "rightType": 3,
  3199. "parentCode": 5316,
  3200. "displayOrder": 0,
  3201. "isApp": 0,
  3202. "enabled": 1,
  3203. "createdBy": 532,
  3204. "createdAt": "2019-12-20 16:58:07",
  3205. "updatedBy": 532,
  3206. "updatedAt": "2019-12-20 17:00:40",
  3207. "perms": "projectMappingManger.update",
  3208. "iconUrl": "",
  3209. "description": "编辑",
  3210. "moduleId": null,
  3211. "isOuterChain": 0,
  3212. "isPopup": 0,
  3213. "cache": 0,
  3214. "component": null,
  3215. "children": null,
  3216. "default": true,
  3217. "leaf": false
  3218. },
  3219. {
  3220. "id": 5319,
  3221. "menuCode": "operate",
  3222. "systemCode": null,
  3223. "menuName": "删除",
  3224. "url": "",
  3225. "rightType": 3,
  3226. "parentCode": 5316,
  3227. "displayOrder": 0,
  3228. "isApp": 0,
  3229. "enabled": 1,
  3230. "createdBy": 532,
  3231. "createdAt": "2019-12-20 16:59:22",
  3232. "updatedBy": null,
  3233. "updatedAt": null,
  3234. "perms": "projectMappingManger.del",
  3235. "iconUrl": "",
  3236. "description": "删除",
  3237. "moduleId": null,
  3238. "isOuterChain": 0,
  3239. "isPopup": 0,
  3240. "cache": 0,
  3241. "component": null,
  3242. "children": null,
  3243. "default": true,
  3244. "leaf": false
  3245. }
  3246. ],
  3247. "default": true,
  3248. "leaf": true
  3249. }
  3250. ],
  3251. "default": true,
  3252. "leaf": false
  3253. },
  3254. {
  3255. "id": 5006,
  3256. "menuCode": "SZZX",
  3257. "systemCode": null,
  3258. "menuName": "设置中心",
  3259. "url": "",
  3260. "rightType": 1,
  3261. "parentCode": 0,
  3262. "displayOrder": 0,
  3263. "isApp": 0,
  3264. "enabled": 1,
  3265. "createdBy": 1,
  3266. "createdAt": "2019-05-08 17:48:14",
  3267. "updatedBy": null,
  3268. "updatedAt": null,
  3269. "perms": "base-setting",
  3270. "iconUrl": "",
  3271. "description": "设置中心",
  3272. "moduleId": null,
  3273. "isOuterChain": 0,
  3274. "isPopup": 0,
  3275. "cache": 0,
  3276. "component": null,
  3277. "children": [
  3278. {
  3279. "id": 5035,
  3280. "menuCode": "WXGZHGL",
  3281. "systemCode": null,
  3282. "menuName": "微信公众号管理",
  3283. "url": "",
  3284. "rightType": 2,
  3285. "parentCode": 5006,
  3286. "displayOrder": 0,
  3287. "isApp": 0,
  3288. "enabled": 1,
  3289. "createdBy": 1,
  3290. "createdAt": "2019-05-08 19:33:01",
  3291. "updatedBy": null,
  3292. "updatedAt": null,
  3293. "perms": "base-setting.wxpublic",
  3294. "iconUrl": "",
  3295. "description": "微信公众号管理",
  3296. "moduleId": null,
  3297. "isOuterChain": 0,
  3298. "isPopup": 0,
  3299. "cache": 0,
  3300. "component": null,
  3301. "children": [
  3302. {
  3303. "id": 5153,
  3304. "menuCode": "operate",
  3305. "systemCode": null,
  3306. "menuName": "新增/修改/删除",
  3307. "url": "",
  3308. "rightType": 3,
  3309. "parentCode": 5035,
  3310. "displayOrder": 0,
  3311. "isApp": 0,
  3312. "enabled": 1,
  3313. "createdBy": 1,
  3314. "createdAt": "2019-05-27 11:57:06",
  3315. "updatedBy": 2,
  3316. "updatedAt": "2019-07-17 15:37:13",
  3317. "perms": "base-setting.wxpublic.operate",
  3318. "iconUrl": "",
  3319. "description": "查询",
  3320. "moduleId": null,
  3321. "isOuterChain": 0,
  3322. "isPopup": 0,
  3323. "cache": 0,
  3324. "component": null,
  3325. "children": null,
  3326. "default": true,
  3327. "leaf": false
  3328. }
  3329. ],
  3330. "default": true,
  3331. "leaf": false
  3332. },
  3333. {
  3334. "id": 5036,
  3335. "menuCode": "FWXXGL",
  3336. "systemCode": null,
  3337. "menuName": "服务信息管理",
  3338. "url": "0",
  3339. "rightType": 2,
  3340. "parentCode": 5006,
  3341. "displayOrder": 0,
  3342. "isApp": 0,
  3343. "enabled": 1,
  3344. "createdBy": 1,
  3345. "createdAt": "2019-05-08 19:33:50",
  3346. "updatedBy": null,
  3347. "updatedAt": null,
  3348. "perms": "base-setting.serveinfo",
  3349. "iconUrl": "",
  3350. "description": "服务信息管理",
  3351. "moduleId": null,
  3352. "isOuterChain": 0,
  3353. "isPopup": 0,
  3354. "cache": 0,
  3355. "component": null,
  3356. "children": [
  3357. {
  3358. "id": 5157,
  3359. "menuCode": "operate",
  3360. "systemCode": null,
  3361. "menuName": "新增/修改/删除",
  3362. "url": "",
  3363. "rightType": 3,
  3364. "parentCode": 5036,
  3365. "displayOrder": 0,
  3366. "isApp": 0,
  3367. "enabled": 1,
  3368. "createdBy": 1,
  3369. "createdAt": "2019-05-27 11:57:06",
  3370. "updatedBy": 2,
  3371. "updatedAt": "2019-07-17 15:36:01",
  3372. "perms": "base-setting.serveinfo.operate",
  3373. "iconUrl": "",
  3374. "description": "查询",
  3375. "moduleId": null,
  3376. "isOuterChain": 0,
  3377. "isPopup": 0,
  3378. "cache": 0,
  3379. "component": null,
  3380. "children": null,
  3381. "default": true,
  3382. "leaf": false
  3383. }
  3384. ],
  3385. "default": true,
  3386. "leaf": true
  3387. },
  3388. {
  3389. "id": 5296,
  3390. "menuCode": "projectSetting",
  3391. "systemCode": null,
  3392. "menuName": "项目常用选项配置",
  3393. "url": "",
  3394. "rightType": 2,
  3395. "parentCode": 5006,
  3396. "displayOrder": 0,
  3397. "isApp": 0,
  3398. "enabled": 1,
  3399. "createdBy": 995,
  3400. "createdAt": "2019-10-22 15:41:22",
  3401. "updatedBy": null,
  3402. "updatedAt": null,
  3403. "perms": "dictionary.projectSetting",
  3404. "iconUrl": "",
  3405. "description": "",
  3406. "moduleId": null,
  3407. "isOuterChain": 0,
  3408. "isPopup": 0,
  3409. "cache": 0,
  3410. "component": null,
  3411. "children": [
  3412. {
  3413. "id": 5297,
  3414. "menuCode": "operate",
  3415. "systemCode": null,
  3416. "menuName": "新增/修改/删除",
  3417. "url": "",
  3418. "rightType": 3,
  3419. "parentCode": 5296,
  3420. "displayOrder": 0,
  3421. "isApp": 0,
  3422. "enabled": 1,
  3423. "createdBy": 995,
  3424. "createdAt": "2019-10-22 15:42:23",
  3425. "updatedBy": null,
  3426. "updatedAt": null,
  3427. "perms": "dictionary.projectSetting.operate",
  3428. "iconUrl": "",
  3429. "description": "",
  3430. "moduleId": null,
  3431. "isOuterChain": 0,
  3432. "isPopup": 0,
  3433. "cache": 0,
  3434. "component": null,
  3435. "children": null,
  3436. "default": true,
  3437. "leaf": false
  3438. }
  3439. ],
  3440. "default": true,
  3441. "leaf": false
  3442. },
  3443. {
  3444. "id": 5320,
  3445. "menuCode": "",
  3446. "systemCode": null,
  3447. "menuName": "服务权限配置",
  3448. "url": "",
  3449. "rightType": 2,
  3450. "parentCode": 5006,
  3451. "displayOrder": 0,
  3452. "isApp": 0,
  3453. "enabled": 1,
  3454. "createdBy": 716,
  3455. "createdAt": "2019-12-27 15:03:26",
  3456. "updatedBy": null,
  3457. "updatedAt": null,
  3458. "perms": "basesetting.serviceAuthSetting",
  3459. "iconUrl": "",
  3460. "description": "",
  3461. "moduleId": null,
  3462. "isOuterChain": 0,
  3463. "isPopup": 0,
  3464. "cache": 0,
  3465. "component": null,
  3466. "children": null,
  3467. "default": true,
  3468. "leaf": false
  3469. }
  3470. ],
  3471. "default": true,
  3472. "leaf": false
  3473. },
  3474. {
  3475. "id": 5007,
  3476. "menuCode": "DZQB",
  3477. "systemCode": null,
  3478. "menuName": "订餐商户管理",
  3479. "url": "",
  3480. "rightType": 1,
  3481. "parentCode": 0,
  3482. "displayOrder": 0,
  3483. "isApp": 0,
  3484. "enabled": 1,
  3485. "createdBy": 1,
  3486. "createdAt": "2019-05-08 17:48:31",
  3487. "updatedBy": 3071,
  3488. "updatedAt": "2021-09-01 18:08:00",
  3489. "perms": "wallet",
  3490. "iconUrl": "",
  3491. "description": "订餐商户管理",
  3492. "moduleId": null,
  3493. "isOuterChain": 0,
  3494. "isPopup": 0,
  3495. "cache": 0,
  3496. "component": null,
  3497. "children": [
  3498. {
  3499. "id": 5040,
  3500. "menuCode": "CZSQGL",
  3501. "systemCode": null,
  3502. "menuName": "企业充值管理",
  3503. "url": "0",
  3504. "rightType": 2,
  3505. "parentCode": 5007,
  3506. "displayOrder": 0,
  3507. "isApp": 0,
  3508. "enabled": 1,
  3509. "createdBy": 2,
  3510. "createdAt": "2019-05-09 18:16:47",
  3511. "updatedBy": 2,
  3512. "updatedAt": "2019-07-17 16:18:38",
  3513. "perms": "wallet.rechargeManage",
  3514. "iconUrl": "",
  3515. "description": "充值申请管理",
  3516. "moduleId": null,
  3517. "isOuterChain": 0,
  3518. "isPopup": 0,
  3519. "cache": 0,
  3520. "component": null,
  3521. "children": [
  3522. {
  3523. "id": 5265,
  3524. "menuCode": "operate",
  3525. "systemCode": null,
  3526. "menuName": "新增/修改/删除",
  3527. "url": "",
  3528. "rightType": 3,
  3529. "parentCode": 5040,
  3530. "displayOrder": 0,
  3531. "isApp": 0,
  3532. "enabled": 1,
  3533. "createdBy": 135,
  3534. "createdAt": "2019-07-18 10:19:47",
  3535. "updatedBy": null,
  3536. "updatedAt": null,
  3537. "perms": "wallet.rechargeManage.operate",
  3538. "iconUrl": "",
  3539. "description": "",
  3540. "moduleId": null,
  3541. "isOuterChain": 0,
  3542. "isPopup": 0,
  3543. "cache": 0,
  3544. "component": null,
  3545. "children": null,
  3546. "default": true,
  3547. "leaf": false
  3548. }
  3549. ],
  3550. "default": true,
  3551. "leaf": true
  3552. },
  3553. {
  3554. "id": 5220,
  3555. "menuCode": "JYLS",
  3556. "systemCode": null,
  3557. "menuName": "交易流水管理",
  3558. "url": "0",
  3559. "rightType": 2,
  3560. "parentCode": 5007,
  3561. "displayOrder": 0,
  3562. "isApp": 0,
  3563. "enabled": 1,
  3564. "createdBy": 37,
  3565. "createdAt": "2019-06-26 15:06:03",
  3566. "updatedBy": 2,
  3567. "updatedAt": "2019-07-17 16:19:10",
  3568. "perms": "wallet.virtAccountWater",
  3569. "iconUrl": "",
  3570. "description": "交易流水",
  3571. "moduleId": null,
  3572. "isOuterChain": 0,
  3573. "isPopup": 0,
  3574. "cache": 0,
  3575. "component": null,
  3576. "children": null,
  3577. "default": true,
  3578. "leaf": true
  3579. },
  3580. {
  3581. "id": 5221,
  3582. "menuCode": "SHTJ",
  3583. "systemCode": null,
  3584. "menuName": "商户账户统计",
  3585. "url": "",
  3586. "rightType": 2,
  3587. "parentCode": 5007,
  3588. "displayOrder": 0,
  3589. "isApp": 0,
  3590. "enabled": 1,
  3591. "createdBy": 37,
  3592. "createdAt": "2019-06-26 15:06:55",
  3593. "updatedBy": 37,
  3594. "updatedAt": "2019-06-26 15:07:39",
  3595. "perms": "wallet.merchantStatistics",
  3596. "iconUrl": "",
  3597. "description": "商户账户统计",
  3598. "moduleId": null,
  3599. "isOuterChain": 0,
  3600. "isPopup": 0,
  3601. "cache": 0,
  3602. "component": null,
  3603. "children": null,
  3604. "default": true,
  3605. "leaf": false
  3606. },
  3607. {
  3608. "id": 5247,
  3609. "menuCode": "orgExtend",
  3610. "systemCode": null,
  3611. "menuName": "商户账户管理",
  3612. "url": "",
  3613. "rightType": 2,
  3614. "parentCode": 5007,
  3615. "displayOrder": 0,
  3616. "isApp": 0,
  3617. "enabled": 1,
  3618. "createdBy": 2,
  3619. "createdAt": "2019-07-17 16:23:54",
  3620. "updatedBy": 3071,
  3621. "updatedAt": "2021-09-01 18:09:15",
  3622. "perms": "wallet.orgExtend",
  3623. "iconUrl": "",
  3624. "description": "商户账户管理",
  3625. "moduleId": null,
  3626. "isOuterChain": 0,
  3627. "isPopup": 0,
  3628. "cache": 0,
  3629. "component": null,
  3630. "children": [
  3631. {
  3632. "id": 5248,
  3633. "menuCode": "operate",
  3634. "systemCode": null,
  3635. "menuName": "新增/修改/删除",
  3636. "url": "",
  3637. "rightType": 3,
  3638. "parentCode": 5247,
  3639. "displayOrder": 0,
  3640. "isApp": 0,
  3641. "enabled": 1,
  3642. "createdBy": 2,
  3643. "createdAt": "2019-07-17 16:25:39",
  3644. "updatedBy": null,
  3645. "updatedAt": null,
  3646. "perms": "wallet.orgExtend.operate",
  3647. "iconUrl": "",
  3648. "description": "",
  3649. "moduleId": null,
  3650. "isOuterChain": 0,
  3651. "isPopup": 0,
  3652. "cache": 0,
  3653. "component": null,
  3654. "children": null,
  3655. "default": true,
  3656. "leaf": false
  3657. }
  3658. ],
  3659. "default": true,
  3660. "leaf": false
  3661. },
  3662. {
  3663. "id": 5249,
  3664. "menuCode": "payfacility",
  3665. "systemCode": null,
  3666. "menuName": "收款设备管理",
  3667. "url": "",
  3668. "rightType": 2,
  3669. "parentCode": 5007,
  3670. "displayOrder": 0,
  3671. "isApp": 0,
  3672. "enabled": 1,
  3673. "createdBy": 2,
  3674. "createdAt": "2019-07-17 16:27:54",
  3675. "updatedBy": null,
  3676. "updatedAt": null,
  3677. "perms": "wallet.payfacility",
  3678. "iconUrl": "",
  3679. "description": "",
  3680. "moduleId": null,
  3681. "isOuterChain": 0,
  3682. "isPopup": 0,
  3683. "cache": 0,
  3684. "component": null,
  3685. "children": [
  3686. {
  3687. "id": 5251,
  3688. "menuCode": "operate",
  3689. "systemCode": null,
  3690. "menuName": "新增/修改/删除",
  3691. "url": "",
  3692. "rightType": 3,
  3693. "parentCode": 5249,
  3694. "displayOrder": 0,
  3695. "isApp": 0,
  3696. "enabled": 1,
  3697. "createdBy": 2,
  3698. "createdAt": "2019-07-17 16:30:29",
  3699. "updatedBy": 3071,
  3700. "updatedAt": "2022-01-25 18:03:18",
  3701. "perms": "dc:wallet.payfacility.operate",
  3702. "iconUrl": "",
  3703. "description": "",
  3704. "moduleId": null,
  3705. "isOuterChain": 0,
  3706. "isPopup": 0,
  3707. "cache": 0,
  3708. "component": null,
  3709. "children": null,
  3710. "default": true,
  3711. "leaf": false
  3712. }
  3713. ],
  3714. "default": true,
  3715. "leaf": false
  3716. },
  3717. {
  3718. "id": 5250,
  3719. "menuCode": "payorder",
  3720. "systemCode": null,
  3721. "menuName": "收款订单管理",
  3722. "url": "",
  3723. "rightType": 2,
  3724. "parentCode": 5007,
  3725. "displayOrder": 0,
  3726. "isApp": 0,
  3727. "enabled": 1,
  3728. "createdBy": 2,
  3729. "createdAt": "2019-07-17 16:28:40",
  3730. "updatedBy": null,
  3731. "updatedAt": null,
  3732. "perms": "wallet.payorder",
  3733. "iconUrl": "",
  3734. "description": "",
  3735. "moduleId": null,
  3736. "isOuterChain": 0,
  3737. "isPopup": 0,
  3738. "cache": 0,
  3739. "component": null,
  3740. "children": null,
  3741. "default": true,
  3742. "leaf": false
  3743. },
  3744. {
  3745. "id": 5574,
  3746. "menuCode": "offlinePayorder",
  3747. "systemCode": null,
  3748. "menuName": "离线收款订单",
  3749. "url": "0",
  3750. "rightType": 2,
  3751. "parentCode": 5007,
  3752. "displayOrder": 0,
  3753. "isApp": 0,
  3754. "enabled": 1,
  3755. "createdBy": 3071,
  3756. "createdAt": "2021-09-01 18:10:41",
  3757. "updatedBy": null,
  3758. "updatedAt": null,
  3759. "perms": "wallet.offlinePayorder",
  3760. "iconUrl": "",
  3761. "description": "离线收款订单",
  3762. "moduleId": null,
  3763. "isOuterChain": 0,
  3764. "isPopup": 0,
  3765. "cache": 0,
  3766. "component": null,
  3767. "children": null,
  3768. "default": true,
  3769. "leaf": true
  3770. },
  3771. {
  3772. "id": 5575,
  3773. "menuCode": "",
  3774. "systemCode": null,
  3775. "menuName": "发卡设备配置",
  3776. "url": "0",
  3777. "rightType": 2,
  3778. "parentCode": 5007,
  3779. "displayOrder": 0,
  3780. "isApp": 0,
  3781. "enabled": 1,
  3782. "createdBy": 3071,
  3783. "createdAt": "2021-09-01 18:11:32",
  3784. "updatedBy": null,
  3785. "updatedAt": null,
  3786. "perms": "wallet.cardIssuingIndex",
  3787. "iconUrl": "",
  3788. "description": "发卡设备配置",
  3789. "moduleId": null,
  3790. "isOuterChain": 0,
  3791. "isPopup": 0,
  3792. "cache": 0,
  3793. "component": null,
  3794. "children": null,
  3795. "default": true,
  3796. "leaf": true
  3797. },
  3798. {
  3799. "id": 5591,
  3800. "menuCode": "",
  3801. "systemCode": null,
  3802. "menuName": "收款单管理",
  3803. "url": "",
  3804. "rightType": 1,
  3805. "parentCode": 5007,
  3806. "displayOrder": 0,
  3807. "isApp": 0,
  3808. "enabled": 1,
  3809. "createdBy": 2959,
  3810. "createdAt": "2022-02-16 16:07:07",
  3811. "updatedBy": null,
  3812. "updatedAt": null,
  3813. "perms": "merchant.receiving",
  3814. "iconUrl": "",
  3815. "description": "",
  3816. "moduleId": null,
  3817. "isOuterChain": 0,
  3818. "isPopup": 0,
  3819. "cache": 0,
  3820. "component": null,
  3821. "children": null,
  3822. "default": true,
  3823. "leaf": false
  3824. }
  3825. ],
  3826. "default": true,
  3827. "leaf": false
  3828. },
  3829. {
  3830. "id": 5008,
  3831. "menuCode": "DCGL",
  3832. "systemCode": null,
  3833. "menuName": "订餐-取餐",
  3834. "url": "",
  3835. "rightType": 1,
  3836. "parentCode": 0,
  3837. "displayOrder": 0,
  3838. "isApp": 0,
  3839. "enabled": 1,
  3840. "createdBy": 1,
  3841. "createdAt": "2019-05-08 17:48:53",
  3842. "updatedBy": 149,
  3843. "updatedAt": "2019-07-24 15:27:01",
  3844. "perms": "ordermeal",
  3845. "iconUrl": "",
  3846. "description": "订餐管理",
  3847. "moduleId": null,
  3848. "isOuterChain": 0,
  3849. "isPopup": 0,
  3850. "cache": 0,
  3851. "component": null,
  3852. "children": [
  3853. {
  3854. "id": 5013,
  3855. "menuCode": "DCPZ",
  3856. "systemCode": null,
  3857. "menuName": "订餐配置",
  3858. "url": "http://fdsfds",
  3859. "rightType": 2,
  3860. "parentCode": 5008,
  3861. "displayOrder": 0,
  3862. "isApp": 0,
  3863. "enabled": 1,
  3864. "createdBy": 1,
  3865. "createdAt": "2019-05-08 18:14:21",
  3866. "updatedBy": null,
  3867. "updatedAt": null,
  3868. "perms": "ordermeal.configuration",
  3869. "iconUrl": "",
  3870. "description": "订餐配置",
  3871. "moduleId": null,
  3872. "isOuterChain": 0,
  3873. "isPopup": 0,
  3874. "cache": 0,
  3875. "component": null,
  3876. "children": null,
  3877. "default": true,
  3878. "leaf": true
  3879. },
  3880. {
  3881. "id": 5015,
  3882. "menuCode": "CPGL",
  3883. "systemCode": null,
  3884. "menuName": "餐品管理",
  3885. "url": "0",
  3886. "rightType": 2,
  3887. "parentCode": 5008,
  3888. "displayOrder": 0,
  3889. "isApp": 0,
  3890. "enabled": 1,
  3891. "createdBy": 8,
  3892. "createdAt": "2019-05-08 18:27:55",
  3893. "updatedBy": null,
  3894. "updatedAt": null,
  3895. "perms": "ordermeal.meallist",
  3896. "iconUrl": "",
  3897. "description": "餐品管理",
  3898. "moduleId": null,
  3899. "isOuterChain": 0,
  3900. "isPopup": 0,
  3901. "cache": 0,
  3902. "component": null,
  3903. "children": [
  3904. {
  3905. "id": 5073,
  3906. "menuCode": "operate",
  3907. "systemCode": null,
  3908. "menuName": "新增/修改/删除",
  3909. "url": "",
  3910. "rightType": 3,
  3911. "parentCode": 5015,
  3912. "displayOrder": 0,
  3913. "isApp": 0,
  3914. "enabled": 1,
  3915. "createdBy": 1,
  3916. "createdAt": "2019-05-27 11:57:06",
  3917. "updatedBy": 2,
  3918. "updatedAt": "2019-07-19 10:56:23",
  3919. "perms": "ordermeal.meallist.operate",
  3920. "iconUrl": "",
  3921. "description": "新增/修改/删除",
  3922. "moduleId": null,
  3923. "isOuterChain": 0,
  3924. "isPopup": 0,
  3925. "cache": 0,
  3926. "component": null,
  3927. "children": null,
  3928. "default": true,
  3929. "leaf": false
  3930. }
  3931. ],
  3932. "default": true,
  3933. "leaf": true
  3934. },
  3935. {
  3936. "id": 5016,
  3937. "menuCode": "CXGL",
  3938. "systemCode": null,
  3939. "menuName": "餐线管理",
  3940. "url": "0",
  3941. "rightType": 2,
  3942. "parentCode": 5008,
  3943. "displayOrder": 0,
  3944. "isApp": 0,
  3945. "enabled": 1,
  3946. "createdBy": 8,
  3947. "createdAt": "2019-05-08 18:28:59",
  3948. "updatedBy": null,
  3949. "updatedAt": null,
  3950. "perms": "ordermeal.mealline",
  3951. "iconUrl": "",
  3952. "description": "餐线管理",
  3953. "moduleId": null,
  3954. "isOuterChain": 0,
  3955. "isPopup": 0,
  3956. "cache": 0,
  3957. "component": null,
  3958. "children": null,
  3959. "default": true,
  3960. "leaf": true
  3961. },
  3962. {
  3963. "id": 5017,
  3964. "menuCode": "DDGL",
  3965. "systemCode": null,
  3966. "menuName": "订单管理",
  3967. "url": "0",
  3968. "rightType": 2,
  3969. "parentCode": 5008,
  3970. "displayOrder": 0,
  3971. "isApp": 0,
  3972. "enabled": 1,
  3973. "createdBy": 8,
  3974. "createdAt": "2019-05-08 18:30:00",
  3975. "updatedBy": null,
  3976. "updatedAt": null,
  3977. "perms": "ordermeal.orderdinner",
  3978. "iconUrl": "",
  3979. "description": "订单管理",
  3980. "moduleId": null,
  3981. "isOuterChain": 0,
  3982. "isPopup": 0,
  3983. "cache": 0,
  3984. "component": null,
  3985. "children": null,
  3986. "default": true,
  3987. "leaf": true
  3988. },
  3989. {
  3990. "id": 5304,
  3991. "menuCode": "",
  3992. "systemCode": null,
  3993. "menuName": "订餐banner管理",
  3994. "url": "",
  3995. "rightType": 2,
  3996. "parentCode": 5008,
  3997. "displayOrder": 0,
  3998. "isApp": 0,
  3999. "enabled": 1,
  4000. "createdBy": 716,
  4001. "createdAt": "2019-11-01 16:43:47",
  4002. "updatedBy": null,
  4003. "updatedAt": null,
  4004. "perms": "ordermeal.orderBannerManage",
  4005. "iconUrl": "",
  4006. "description": "",
  4007. "moduleId": null,
  4008. "isOuterChain": 0,
  4009. "isPopup": 0,
  4010. "cache": 0,
  4011. "component": null,
  4012. "children": null,
  4013. "default": true,
  4014. "leaf": false
  4015. }
  4016. ],
  4017. "default": true,
  4018. "leaf": false
  4019. },
  4020. {
  4021. "id": 5210,
  4022. "menuCode": "YHGL",
  4023. "systemCode": null,
  4024. "menuName": "用户管理",
  4025. "url": "",
  4026. "rightType": 1,
  4027. "parentCode": 0,
  4028. "displayOrder": 0,
  4029. "isApp": 0,
  4030. "enabled": 1,
  4031. "createdBy": 1,
  4032. "createdAt": "2019-06-21 17:24:14",
  4033. "updatedBy": 2,
  4034. "updatedAt": "2019-07-17 15:48:05",
  4035. "perms": "userManagement",
  4036. "iconUrl": "",
  4037. "description": "运营中心版用户管理",
  4038. "moduleId": null,
  4039. "isOuterChain": 0,
  4040. "isPopup": 0,
  4041. "cache": 0,
  4042. "component": null,
  4043. "children": [
  4044. {
  4045. "id": 5211,
  4046. "menuCode": "YHGL",
  4047. "systemCode": null,
  4048. "menuName": "用户信息管理",
  4049. "url": "",
  4050. "rightType": 2,
  4051. "parentCode": 5210,
  4052. "displayOrder": 0,
  4053. "isApp": 0,
  4054. "enabled": 1,
  4055. "createdBy": 1,
  4056. "createdAt": "2019-06-21 17:24:52",
  4057. "updatedBy": 2,
  4058. "updatedAt": "2019-07-17 15:51:12",
  4059. "perms": "userManagement.user",
  4060. "iconUrl": "",
  4061. "description": "运营中心版用户管理",
  4062. "moduleId": null,
  4063. "isOuterChain": 0,
  4064. "isPopup": 0,
  4065. "cache": 0,
  4066. "component": null,
  4067. "children": [
  4068. {
  4069. "id": 5215,
  4070. "menuCode": "operate",
  4071. "systemCode": null,
  4072. "menuName": "新增/修改/删除",
  4073. "url": "",
  4074. "rightType": 3,
  4075. "parentCode": 5211,
  4076. "displayOrder": 0,
  4077. "isApp": 0,
  4078. "enabled": 1,
  4079. "createdBy": 1,
  4080. "createdAt": "2019-05-27 11:57:06",
  4081. "updatedBy": 2,
  4082. "updatedAt": "2019-07-17 15:50:53",
  4083. "perms": "userManagement.user.operate",
  4084. "iconUrl": "",
  4085. "description": "新增/修改/删除",
  4086. "moduleId": null,
  4087. "isOuterChain": 0,
  4088. "isPopup": 0,
  4089. "cache": 0,
  4090. "component": null,
  4091. "children": null,
  4092. "default": true,
  4093. "leaf": false
  4094. },
  4095. {
  4096. "id": 5216,
  4097. "menuCode": "ZXCZ",
  4098. "systemCode": null,
  4099. "menuName": "中心充值",
  4100. "url": "",
  4101. "rightType": 3,
  4102. "parentCode": 5211,
  4103. "displayOrder": 0,
  4104. "isApp": 0,
  4105. "enabled": 1,
  4106. "createdBy": 2,
  4107. "createdAt": "2019-06-24 15:42:00",
  4108. "updatedBy": 2,
  4109. "updatedAt": "2019-07-17 16:01:30",
  4110. "perms": "userManagement.user.center-recharge",
  4111. "iconUrl": "",
  4112. "description": "",
  4113. "moduleId": null,
  4114. "isOuterChain": 0,
  4115. "isPopup": 0,
  4116. "cache": 0,
  4117. "component": null,
  4118. "children": null,
  4119. "default": true,
  4120. "leaf": false
  4121. },
  4122. {
  4123. "id": 5217,
  4124. "menuCode": "XMCZ",
  4125. "systemCode": null,
  4126. "menuName": "项目充值",
  4127. "url": "",
  4128. "rightType": 3,
  4129. "parentCode": 5211,
  4130. "displayOrder": 0,
  4131. "isApp": 0,
  4132. "enabled": 1,
  4133. "createdBy": 2,
  4134. "createdAt": "2019-06-24 15:43:15",
  4135. "updatedBy": 2,
  4136. "updatedAt": "2019-07-17 16:01:49",
  4137. "perms": "userManagement.user.organization-recharge",
  4138. "iconUrl": "",
  4139. "description": "项目充值",
  4140. "moduleId": null,
  4141. "isOuterChain": 0,
  4142. "isPopup": 0,
  4143. "cache": 0,
  4144. "component": null,
  4145. "children": null,
  4146. "default": true,
  4147. "leaf": false
  4148. },
  4149. {
  4150. "id": 5273,
  4151. "menuCode": "YHDR",
  4152. "systemCode": null,
  4153. "menuName": "用户导入",
  4154. "url": "",
  4155. "rightType": 3,
  4156. "parentCode": 5211,
  4157. "displayOrder": 0,
  4158. "isApp": 0,
  4159. "enabled": 1,
  4160. "createdBy": 1,
  4161. "createdAt": "2019-07-29 18:18:51",
  4162. "updatedBy": null,
  4163. "updatedAt": null,
  4164. "perms": "userManagement.user.import",
  4165. "iconUrl": "",
  4166. "description": "用户导入",
  4167. "moduleId": null,
  4168. "isOuterChain": 0,
  4169. "isPopup": 0,
  4170. "cache": 0,
  4171. "component": null,
  4172. "children": null,
  4173. "default": true,
  4174. "leaf": false
  4175. }
  4176. ],
  4177. "default": true,
  4178. "leaf": false
  4179. },
  4180. {
  4181. "id": 5241,
  4182. "menuCode": "virtPermConfigUser",
  4183. "systemCode": null,
  4184. "menuName": "身份类型配置",
  4185. "url": "",
  4186. "rightType": 2,
  4187. "parentCode": 5210,
  4188. "displayOrder": 0,
  4189. "isApp": 0,
  4190. "enabled": 1,
  4191. "createdBy": 2,
  4192. "createdAt": "2019-07-17 15:53:02",
  4193. "updatedBy": null,
  4194. "updatedAt": null,
  4195. "perms": "userManagement.virtPermConfigUser",
  4196. "iconUrl": "",
  4197. "description": "",
  4198. "moduleId": null,
  4199. "isOuterChain": 0,
  4200. "isPopup": 0,
  4201. "cache": 0,
  4202. "component": null,
  4203. "children": [
  4204. {
  4205. "id": 5242,
  4206. "menuCode": "operate",
  4207. "systemCode": null,
  4208. "menuName": "新增/修改/删除",
  4209. "url": "",
  4210. "rightType": 3,
  4211. "parentCode": 5241,
  4212. "displayOrder": 0,
  4213. "isApp": 0,
  4214. "enabled": 1,
  4215. "createdBy": 2,
  4216. "createdAt": "2019-07-17 15:53:43",
  4217. "updatedBy": null,
  4218. "updatedAt": null,
  4219. "perms": "userManagement.virtPermConfigUser.operate",
  4220. "iconUrl": "",
  4221. "description": "",
  4222. "moduleId": null,
  4223. "isOuterChain": 0,
  4224. "isPopup": 0,
  4225. "cache": 0,
  4226. "component": null,
  4227. "children": null,
  4228. "default": true,
  4229. "leaf": false
  4230. },
  4231. {
  4232. "id": 5514,
  4233. "menuCode": "",
  4234. "systemCode": null,
  4235. "menuName": "权限控制",
  4236. "url": "",
  4237. "rightType": 3,
  4238. "parentCode": 5241,
  4239. "displayOrder": 0,
  4240. "isApp": 0,
  4241. "enabled": 1,
  4242. "createdBy": 3071,
  4243. "createdAt": "2021-07-06 19:07:20",
  4244. "updatedBy": null,
  4245. "updatedAt": null,
  4246. "perms": "userManagement.virtPermConfigUser.accessControl",
  4247. "iconUrl": "",
  4248. "description": "",
  4249. "moduleId": null,
  4250. "isOuterChain": 0,
  4251. "isPopup": 0,
  4252. "cache": 0,
  4253. "component": null,
  4254. "children": null,
  4255. "default": true,
  4256. "leaf": false
  4257. }
  4258. ],
  4259. "default": true,
  4260. "leaf": false
  4261. },
  4262. {
  4263. "id": 5243,
  4264. "menuCode": "household",
  4265. "systemCode": null,
  4266. "menuName": "住户信息管理",
  4267. "url": "",
  4268. "rightType": 2,
  4269. "parentCode": 5210,
  4270. "displayOrder": 0,
  4271. "isApp": 0,
  4272. "enabled": 1,
  4273. "createdBy": 2,
  4274. "createdAt": "2019-07-17 15:54:30",
  4275. "updatedBy": null,
  4276. "updatedAt": null,
  4277. "perms": "userManagement.household",
  4278. "iconUrl": "",
  4279. "description": "",
  4280. "moduleId": null,
  4281. "isOuterChain": 0,
  4282. "isPopup": 0,
  4283. "cache": 0,
  4284. "component": null,
  4285. "children": [
  4286. {
  4287. "id": 5244,
  4288. "menuCode": "operate",
  4289. "systemCode": null,
  4290. "menuName": "新增/修改/删除",
  4291. "url": "",
  4292. "rightType": 3,
  4293. "parentCode": 5243,
  4294. "displayOrder": 0,
  4295. "isApp": 0,
  4296. "enabled": 1,
  4297. "createdBy": 2,
  4298. "createdAt": "2019-07-17 15:55:17",
  4299. "updatedBy": null,
  4300. "updatedAt": null,
  4301. "perms": "userManagement.household.operate",
  4302. "iconUrl": "",
  4303. "description": "",
  4304. "moduleId": null,
  4305. "isOuterChain": 0,
  4306. "isPopup": 0,
  4307. "cache": 0,
  4308. "component": null,
  4309. "children": null,
  4310. "default": true,
  4311. "leaf": false
  4312. }
  4313. ],
  4314. "default": true,
  4315. "leaf": false
  4316. },
  4317. {
  4318. "id": 5245,
  4319. "menuCode": "householdAudit",
  4320. "systemCode": null,
  4321. "menuName": "住户认证审核",
  4322. "url": "",
  4323. "rightType": 2,
  4324. "parentCode": 5210,
  4325. "displayOrder": 0,
  4326. "isApp": 0,
  4327. "enabled": 1,
  4328. "createdBy": 2,
  4329. "createdAt": "2019-07-17 15:55:51",
  4330. "updatedBy": null,
  4331. "updatedAt": null,
  4332. "perms": "userManagement.householdAudit",
  4333. "iconUrl": "",
  4334. "description": "",
  4335. "moduleId": null,
  4336. "isOuterChain": 0,
  4337. "isPopup": 0,
  4338. "cache": 0,
  4339. "component": null,
  4340. "children": [
  4341. {
  4342. "id": 5246,
  4343. "menuCode": "operate",
  4344. "systemCode": null,
  4345. "menuName": "新增/修改/删除",
  4346. "url": "",
  4347. "rightType": 3,
  4348. "parentCode": 5245,
  4349. "displayOrder": 0,
  4350. "isApp": 0,
  4351. "enabled": 1,
  4352. "createdBy": 2,
  4353. "createdAt": "2019-07-17 15:56:33",
  4354. "updatedBy": null,
  4355. "updatedAt": null,
  4356. "perms": "userManagement.householdAudit.operate",
  4357. "iconUrl": "",
  4358. "description": "",
  4359. "moduleId": null,
  4360. "isOuterChain": 0,
  4361. "isPopup": 0,
  4362. "cache": 0,
  4363. "component": null,
  4364. "children": null,
  4365. "default": true,
  4366. "leaf": false
  4367. }
  4368. ],
  4369. "default": true,
  4370. "leaf": false
  4371. },
  4372. {
  4373. "id": 5294,
  4374. "menuCode": "batchRecharge",
  4375. "systemCode": null,
  4376. "menuName": "用户批量充值",
  4377. "url": "",
  4378. "rightType": 2,
  4379. "parentCode": 5210,
  4380. "displayOrder": 0,
  4381. "isApp": 0,
  4382. "enabled": 1,
  4383. "createdBy": 2790,
  4384. "createdAt": "2019-10-16 14:54:52",
  4385. "updatedBy": null,
  4386. "updatedAt": null,
  4387. "perms": "userManagement.batchRecharge",
  4388. "iconUrl": "",
  4389. "description": "",
  4390. "moduleId": null,
  4391. "isOuterChain": 0,
  4392. "isPopup": 0,
  4393. "cache": 0,
  4394. "component": null,
  4395. "children": [
  4396. {
  4397. "id": 5295,
  4398. "menuCode": "operate",
  4399. "systemCode": null,
  4400. "menuName": "新增/修改/删除",
  4401. "url": "0",
  4402. "rightType": 3,
  4403. "parentCode": 5294,
  4404. "displayOrder": 0,
  4405. "isApp": 0,
  4406. "enabled": 1,
  4407. "createdBy": 2790,
  4408. "createdAt": "2019-10-16 14:55:45",
  4409. "updatedBy": null,
  4410. "updatedAt": null,
  4411. "perms": "userManagement.batchRecharge.operate",
  4412. "iconUrl": "",
  4413. "description": "",
  4414. "moduleId": null,
  4415. "isOuterChain": 0,
  4416. "isPopup": 0,
  4417. "cache": 0,
  4418. "component": null,
  4419. "children": null,
  4420. "default": true,
  4421. "leaf": true
  4422. }
  4423. ],
  4424. "default": true,
  4425. "leaf": false
  4426. },
  4427. {
  4428. "id": 5415,
  4429. "menuCode": "userOperation",
  4430. "systemCode": null,
  4431. "menuName": "用户运营",
  4432. "url": "",
  4433. "rightType": 2,
  4434. "parentCode": 5210,
  4435. "displayOrder": 0,
  4436. "isApp": 0,
  4437. "enabled": 1,
  4438. "createdBy": 3071,
  4439. "createdAt": "2020-10-22 11:58:09",
  4440. "updatedBy": 3071,
  4441. "updatedAt": "2020-10-22 11:59:18",
  4442. "perms": "userManagement.userOperation",
  4443. "iconUrl": "",
  4444. "description": "",
  4445. "moduleId": null,
  4446. "isOuterChain": 0,
  4447. "isPopup": 0,
  4448. "cache": 0,
  4449. "component": null,
  4450. "children": [
  4451. {
  4452. "id": 5416,
  4453. "menuCode": "sendMsgOrEdit",
  4454. "systemCode": null,
  4455. "menuName": "发送消息/编辑",
  4456. "url": "0",
  4457. "rightType": 3,
  4458. "parentCode": 5415,
  4459. "displayOrder": 0,
  4460. "isApp": 0,
  4461. "enabled": 1,
  4462. "createdBy": 3071,
  4463. "createdAt": "2020-10-28 11:53:27",
  4464. "updatedBy": 3071,
  4465. "updatedAt": "2020-10-28 11:56:54",
  4466. "perms": "userManagement.userOperation.sendMsgOrEdit",
  4467. "iconUrl": "",
  4468. "description": "",
  4469. "moduleId": null,
  4470. "isOuterChain": 0,
  4471. "isPopup": 0,
  4472. "cache": 0,
  4473. "component": null,
  4474. "children": null,
  4475. "default": true,
  4476. "leaf": true
  4477. },
  4478. {
  4479. "id": 5417,
  4480. "menuCode": "labelManagement",
  4481. "systemCode": null,
  4482. "menuName": "标签管理权限",
  4483. "url": "0",
  4484. "rightType": 3,
  4485. "parentCode": 5415,
  4486. "displayOrder": 0,
  4487. "isApp": 0,
  4488. "enabled": 1,
  4489. "createdBy": 3071,
  4490. "createdAt": "2020-10-28 11:55:11",
  4491. "updatedBy": 3071,
  4492. "updatedAt": "2020-10-28 11:57:45",
  4493. "perms": "userManagement.userOperation.labelManagement",
  4494. "iconUrl": "",
  4495. "description": "",
  4496. "moduleId": null,
  4497. "isOuterChain": 0,
  4498. "isPopup": 0,
  4499. "cache": 0,
  4500. "component": null,
  4501. "children": null,
  4502. "default": true,
  4503. "leaf": true
  4504. }
  4505. ],
  4506. "default": true,
  4507. "leaf": false
  4508. },
  4509. {
  4510. "id": 5422,
  4511. "menuCode": "",
  4512. "systemCode": null,
  4513. "menuName": "高校用户信息管理",
  4514. "url": "",
  4515. "rightType": 2,
  4516. "parentCode": 5210,
  4517. "displayOrder": 0,
  4518. "isApp": 0,
  4519. "enabled": 1,
  4520. "createdBy": 2960,
  4521. "createdAt": "2020-11-24 15:46:16",
  4522. "updatedBy": null,
  4523. "updatedAt": null,
  4524. "perms": "userManagement.user",
  4525. "iconUrl": "",
  4526. "description": "",
  4527. "moduleId": null,
  4528. "isOuterChain": 0,
  4529. "isPopup": 0,
  4530. "cache": 0,
  4531. "component": null,
  4532. "children": [
  4533. {
  4534. "id": 5423,
  4535. "menuCode": "userManagement.user.base",
  4536. "systemCode": null,
  4537. "menuName": "基础信息配置",
  4538. "url": "",
  4539. "rightType": 3,
  4540. "parentCode": 5422,
  4541. "displayOrder": 0,
  4542. "isApp": 0,
  4543. "enabled": 1,
  4544. "createdBy": 41,
  4545. "createdAt": "2020-11-24 15:57:43",
  4546. "updatedBy": null,
  4547. "updatedAt": null,
  4548. "perms": "userManagement.user.base",
  4549. "iconUrl": "",
  4550. "description": "基础信息配置",
  4551. "moduleId": null,
  4552. "isOuterChain": 0,
  4553. "isPopup": 0,
  4554. "cache": 0,
  4555. "component": null,
  4556. "children": null,
  4557. "default": true,
  4558. "leaf": false
  4559. },
  4560. {
  4561. "id": 5424,
  4562. "menuCode": "",
  4563. "systemCode": null,
  4564. "menuName": "删除",
  4565. "url": "",
  4566. "rightType": 3,
  4567. "parentCode": 5422,
  4568. "displayOrder": 0,
  4569. "isApp": 0,
  4570. "enabled": 1,
  4571. "createdBy": 2960,
  4572. "createdAt": "2020-11-24 16:29:27",
  4573. "updatedBy": null,
  4574. "updatedAt": null,
  4575. "perms": "userManagement.user.delete",
  4576. "iconUrl": "",
  4577. "description": "",
  4578. "moduleId": null,
  4579. "isOuterChain": 0,
  4580. "isPopup": 0,
  4581. "cache": 0,
  4582. "component": null,
  4583. "children": null,
  4584. "default": true,
  4585. "leaf": false
  4586. },
  4587. {
  4588. "id": 5425,
  4589. "menuCode": "",
  4590. "systemCode": null,
  4591. "menuName": "新增",
  4592. "url": "",
  4593. "rightType": 3,
  4594. "parentCode": 5422,
  4595. "displayOrder": 0,
  4596. "isApp": 0,
  4597. "enabled": 1,
  4598. "createdBy": 2960,
  4599. "createdAt": "2020-11-24 16:30:21",
  4600. "updatedBy": null,
  4601. "updatedAt": null,
  4602. "perms": "userManagement.user.add",
  4603. "iconUrl": "",
  4604. "description": "",
  4605. "moduleId": null,
  4606. "isOuterChain": 0,
  4607. "isPopup": 0,
  4608. "cache": 0,
  4609. "component": null,
  4610. "children": null,
  4611. "default": true,
  4612. "leaf": false
  4613. },
  4614. {
  4615. "id": 5426,
  4616. "menuCode": "",
  4617. "systemCode": null,
  4618. "menuName": "导入",
  4619. "url": "",
  4620. "rightType": 3,
  4621. "parentCode": 5422,
  4622. "displayOrder": 0,
  4623. "isApp": 0,
  4624. "enabled": 1,
  4625. "createdBy": 2960,
  4626. "createdAt": "2020-11-24 16:31:26",
  4627. "updatedBy": null,
  4628. "updatedAt": null,
  4629. "perms": "userManagement.user.upload",
  4630. "iconUrl": "",
  4631. "description": "",
  4632. "moduleId": null,
  4633. "isOuterChain": 0,
  4634. "isPopup": 0,
  4635. "cache": 0,
  4636. "component": null,
  4637. "children": null,
  4638. "default": true,
  4639. "leaf": false
  4640. },
  4641. {
  4642. "id": 5427,
  4643. "menuCode": "",
  4644. "systemCode": null,
  4645. "menuName": "编辑/启用/禁用/详情",
  4646. "url": "",
  4647. "rightType": 3,
  4648. "parentCode": 5422,
  4649. "displayOrder": 0,
  4650. "isApp": 0,
  4651. "enabled": 1,
  4652. "createdBy": 2960,
  4653. "createdAt": "2020-11-24 16:32:16",
  4654. "updatedBy": null,
  4655. "updatedAt": null,
  4656. "perms": "userManagement.user.operate",
  4657. "iconUrl": "",
  4658. "description": "",
  4659. "moduleId": null,
  4660. "isOuterChain": 0,
  4661. "isPopup": 0,
  4662. "cache": 0,
  4663. "component": null,
  4664. "children": null,
  4665. "default": true,
  4666. "leaf": false
  4667. }
  4668. ],
  4669. "default": true,
  4670. "leaf": false
  4671. },
  4672. {
  4673. "id": 5520,
  4674. "menuCode": "",
  4675. "systemCode": null,
  4676. "menuName": "移动用户信息管理",
  4677. "url": "0",
  4678. "rightType": 2,
  4679. "parentCode": 5210,
  4680. "displayOrder": 0,
  4681. "isApp": 0,
  4682. "enabled": 1,
  4683. "createdBy": 3071,
  4684. "createdAt": "2021-07-13 17:58:21",
  4685. "updatedBy": null,
  4686. "updatedAt": null,
  4687. "perms": "mobileUserManagement.user",
  4688. "iconUrl": "",
  4689. "description": "移动项目",
  4690. "moduleId": null,
  4691. "isOuterChain": 0,
  4692. "isPopup": 0,
  4693. "cache": 0,
  4694. "component": null,
  4695. "children": null,
  4696. "default": true,
  4697. "leaf": true
  4698. },
  4699. {
  4700. "id": 5566,
  4701. "menuCode": "",
  4702. "systemCode": null,
  4703. "menuName": "订餐用户信息管理",
  4704. "url": "",
  4705. "rightType": 2,
  4706. "parentCode": 5210,
  4707. "displayOrder": 0,
  4708. "isApp": 0,
  4709. "enabled": 1,
  4710. "createdBy": 3071,
  4711. "createdAt": "2021-08-19 11:19:33",
  4712. "updatedBy": 3071,
  4713. "updatedAt": "2021-08-20 09:53:05",
  4714. "perms": "dingcan.userManage",
  4715. "iconUrl": "",
  4716. "description": "订餐外链接入",
  4717. "moduleId": null,
  4718. "isOuterChain": 0,
  4719. "isPopup": 0,
  4720. "cache": 0,
  4721. "component": null,
  4722. "children": null,
  4723. "default": true,
  4724. "leaf": false
  4725. },
  4726. {
  4727. "id": 5567,
  4728. "menuCode": "",
  4729. "systemCode": null,
  4730. "menuName": "订餐身份类型配置",
  4731. "url": "",
  4732. "rightType": 2,
  4733. "parentCode": 5210,
  4734. "displayOrder": 0,
  4735. "isApp": 0,
  4736. "enabled": 1,
  4737. "createdBy": 3071,
  4738. "createdAt": "2021-08-20 09:52:32",
  4739. "updatedBy": null,
  4740. "updatedAt": null,
  4741. "perms": "dingcan.idTypeManger",
  4742. "iconUrl": "",
  4743. "description": "订餐外链接入",
  4744. "moduleId": null,
  4745. "isOuterChain": 0,
  4746. "isPopup": 0,
  4747. "cache": 0,
  4748. "component": null,
  4749. "children": null,
  4750. "default": true,
  4751. "leaf": false
  4752. },
  4753. {
  4754. "id": 5568,
  4755. "menuCode": "",
  4756. "systemCode": null,
  4757. "menuName": "订餐用户批量充值",
  4758. "url": "0",
  4759. "rightType": 2,
  4760. "parentCode": 5210,
  4761. "displayOrder": 0,
  4762. "isApp": 0,
  4763. "enabled": 1,
  4764. "createdBy": 3071,
  4765. "createdAt": "2021-08-20 09:53:55",
  4766. "updatedBy": null,
  4767. "updatedAt": null,
  4768. "perms": "dingcan.batchRecharge",
  4769. "iconUrl": "",
  4770. "description": "订餐外链接入",
  4771. "moduleId": null,
  4772. "isOuterChain": 0,
  4773. "isPopup": 0,
  4774. "cache": 0,
  4775. "component": null,
  4776. "children": null,
  4777. "default": true,
  4778. "leaf": true
  4779. },
  4780. {
  4781. "id": 5569,
  4782. "menuCode": "",
  4783. "systemCode": null,
  4784. "menuName": "订餐卡类型配置",
  4785. "url": "0",
  4786. "rightType": 2,
  4787. "parentCode": 5210,
  4788. "displayOrder": 0,
  4789. "isApp": 0,
  4790. "enabled": 1,
  4791. "createdBy": 3071,
  4792. "createdAt": "2021-08-20 09:55:21",
  4793. "updatedBy": null,
  4794. "updatedAt": null,
  4795. "perms": "dingcan.cardSetting",
  4796. "iconUrl": "",
  4797. "description": "订餐外链接入",
  4798. "moduleId": null,
  4799. "isOuterChain": 0,
  4800. "isPopup": 0,
  4801. "cache": 0,
  4802. "component": null,
  4803. "children": null,
  4804. "default": true,
  4805. "leaf": true
  4806. },
  4807. {
  4808. "id": 5274,
  4809. "menuCode": "201",
  4810. "systemCode": null,
  4811. "menuName": "发放福利",
  4812. "url": "0",
  4813. "rightType": 2,
  4814. "parentCode": 5210,
  4815. "displayOrder": 1,
  4816. "isApp": 0,
  4817. "enabled": 1,
  4818. "createdBy": 149,
  4819. "createdAt": "2019-08-02 15:47:35",
  4820. "updatedBy": null,
  4821. "updatedAt": null,
  4822. "perms": "userManagement.welfareRecord",
  4823. "iconUrl": "",
  4824. "description": "运营中心的发放福利",
  4825. "moduleId": null,
  4826. "isOuterChain": 0,
  4827. "isPopup": 0,
  4828. "cache": 0,
  4829. "component": null,
  4830. "children": [
  4831. {
  4832. "id": 5275,
  4833. "menuCode": "userManagement.welfareRecord.operate",
  4834. "systemCode": null,
  4835. "menuName": "查询/重置/删除",
  4836. "url": "",
  4837. "rightType": 3,
  4838. "parentCode": 5274,
  4839. "displayOrder": 0,
  4840. "isApp": 0,
  4841. "enabled": 1,
  4842. "createdBy": 149,
  4843. "createdAt": "2019-08-02 15:50:35",
  4844. "updatedBy": 149,
  4845. "updatedAt": "2019-08-02 15:53:59",
  4846. "perms": "userManagement.welfareRecord.operate",
  4847. "iconUrl": "",
  4848. "description": "",
  4849. "moduleId": null,
  4850. "isOuterChain": 0,
  4851. "isPopup": 0,
  4852. "cache": 0,
  4853. "component": null,
  4854. "children": null,
  4855. "default": true,
  4856. "leaf": false
  4857. }
  4858. ],
  4859. "default": true,
  4860. "leaf": true
  4861. }
  4862. ],
  4863. "default": true,
  4864. "leaf": false
  4865. },
  4866. {
  4867. "id": 5227,
  4868. "menuCode": "KJGL",
  4869. "systemCode": null,
  4870. "menuName": "空间管理",
  4871. "url": "",
  4872. "rightType": 1,
  4873. "parentCode": 0,
  4874. "displayOrder": 0,
  4875. "isApp": 0,
  4876. "enabled": 1,
  4877. "createdBy": 135,
  4878. "createdAt": "2019-07-16 15:21:44",
  4879. "updatedBy": 138,
  4880. "updatedAt": "2019-07-16 16:54:57",
  4881. "perms": "space",
  4882. "iconUrl": "",
  4883. "description": "",
  4884. "moduleId": null,
  4885. "isOuterChain": 0,
  4886. "isPopup": 0,
  4887. "cache": 0,
  4888. "component": null,
  4889. "children": [
  4890. {
  4891. "id": 5228,
  4892. "menuCode": "build",
  4893. "systemCode": null,
  4894. "menuName": "楼栋信息配置",
  4895. "url": "",
  4896. "rightType": 2,
  4897. "parentCode": 5227,
  4898. "displayOrder": 0,
  4899. "isApp": 0,
  4900. "enabled": 1,
  4901. "createdBy": 135,
  4902. "createdAt": "2019-07-16 16:50:07",
  4903. "updatedBy": null,
  4904. "updatedAt": null,
  4905. "perms": "space.build",
  4906. "iconUrl": "",
  4907. "description": "",
  4908. "moduleId": null,
  4909. "isOuterChain": 0,
  4910. "isPopup": 0,
  4911. "cache": 0,
  4912. "component": null,
  4913. "children": [
  4914. {
  4915. "id": 5230,
  4916. "menuCode": "operate",
  4917. "systemCode": null,
  4918. "menuName": "新增/修改/删除",
  4919. "url": "",
  4920. "rightType": 3,
  4921. "parentCode": 5228,
  4922. "displayOrder": 0,
  4923. "isApp": 0,
  4924. "enabled": 1,
  4925. "createdBy": 2,
  4926. "createdAt": "2019-07-17 14:45:12",
  4927. "updatedBy": null,
  4928. "updatedAt": null,
  4929. "perms": "space.build.operate",
  4930. "iconUrl": "",
  4931. "description": "",
  4932. "moduleId": null,
  4933. "isOuterChain": 0,
  4934. "isPopup": 0,
  4935. "cache": 0,
  4936. "component": null,
  4937. "children": null,
  4938. "default": true,
  4939. "leaf": false
  4940. },
  4941. {
  4942. "id": 5291,
  4943. "menuCode": "add",
  4944. "systemCode": null,
  4945. "menuName": "新增",
  4946. "url": "",
  4947. "rightType": 3,
  4948. "parentCode": 5228,
  4949. "displayOrder": 0,
  4950. "isApp": 0,
  4951. "enabled": 1,
  4952. "createdBy": 1,
  4953. "createdAt": "2019-09-20 14:37:38",
  4954. "updatedBy": 1,
  4955. "updatedAt": "2019-09-20 14:39:15",
  4956. "perms": "space.build.add",
  4957. "iconUrl": "",
  4958. "description": "space.build.add",
  4959. "moduleId": null,
  4960. "isOuterChain": 0,
  4961. "isPopup": 0,
  4962. "cache": 0,
  4963. "component": null,
  4964. "children": null,
  4965. "default": true,
  4966. "leaf": false
  4967. },
  4968. {
  4969. "id": 5292,
  4970. "menuCode": "edit",
  4971. "systemCode": null,
  4972. "menuName": "编辑",
  4973. "url": "",
  4974. "rightType": 3,
  4975. "parentCode": 5228,
  4976. "displayOrder": 1,
  4977. "isApp": 0,
  4978. "enabled": 1,
  4979. "createdBy": 1,
  4980. "createdAt": "2019-09-20 14:38:37",
  4981. "updatedBy": 1,
  4982. "updatedAt": "2019-09-20 14:39:44",
  4983. "perms": "space.build.edit",
  4984. "iconUrl": "",
  4985. "description": "space.build.edit",
  4986. "moduleId": null,
  4987. "isOuterChain": 0,
  4988. "isPopup": 0,
  4989. "cache": 0,
  4990. "component": null,
  4991. "children": null,
  4992. "default": true,
  4993. "leaf": false
  4994. },
  4995. {
  4996. "id": 5293,
  4997. "menuCode": "delete",
  4998. "systemCode": null,
  4999. "menuName": "删除",
  5000. "url": "",
  5001. "rightType": 3,
  5002. "parentCode": 5228,
  5003. "displayOrder": 1,
  5004. "isApp": 0,
  5005. "enabled": 1,
  5006. "createdBy": 1,
  5007. "createdAt": "2019-09-20 14:43:53",
  5008. "updatedBy": null,
  5009. "updatedAt": null,
  5010. "perms": "space.build.delete",
  5011. "iconUrl": "",
  5012. "description": "space.build.delete",
  5013. "moduleId": null,
  5014. "isOuterChain": 0,
  5015. "isPopup": 0,
  5016. "cache": 0,
  5017. "component": null,
  5018. "children": null,
  5019. "default": true,
  5020. "leaf": false
  5021. }
  5022. ],
  5023. "default": true,
  5024. "leaf": false
  5025. },
  5026. {
  5027. "id": 5229,
  5028. "menuCode": "orgTree",
  5029. "systemCode": null,
  5030. "menuName": "空间信息配置",
  5031. "url": "",
  5032. "rightType": 2,
  5033. "parentCode": 5227,
  5034. "displayOrder": 0,
  5035. "isApp": 0,
  5036. "enabled": 1,
  5037. "createdBy": 2,
  5038. "createdAt": "2019-07-17 14:43:36",
  5039. "updatedBy": 670,
  5040. "updatedAt": "2019-10-22 11:55:29",
  5041. "perms": "space.orgTree",
  5042. "iconUrl": "",
  5043. "description": "",
  5044. "moduleId": null,
  5045. "isOuterChain": 0,
  5046. "isPopup": 0,
  5047. "cache": 0,
  5048. "component": null,
  5049. "children": [
  5050. {
  5051. "id": 5392,
  5052. "menuCode": "upload",
  5053. "systemCode": null,
  5054. "menuName": "批量上传/模板下载",
  5055. "url": "0",
  5056. "rightType": 3,
  5057. "parentCode": 5229,
  5058. "displayOrder": 0,
  5059. "isApp": 0,
  5060. "enabled": 1,
  5061. "createdBy": 3200,
  5062. "createdAt": "2020-06-01 17:17:17",
  5063. "updatedBy": null,
  5064. "updatedAt": null,
  5065. "perms": "space.upload",
  5066. "iconUrl": "",
  5067. "description": "批量上传/模板下载",
  5068. "moduleId": null,
  5069. "isOuterChain": 0,
  5070. "isPopup": 0,
  5071. "cache": 0,
  5072. "component": null,
  5073. "children": null,
  5074. "default": true,
  5075. "leaf": true
  5076. }
  5077. ],
  5078. "default": true,
  5079. "leaf": false
  5080. },
  5081. {
  5082. "id": 5232,
  5083. "menuCode": "airCheckSet",
  5084. "systemCode": null,
  5085. "menuName": "空气检测配置",
  5086. "url": "",
  5087. "rightType": 2,
  5088. "parentCode": 5227,
  5089. "displayOrder": 0,
  5090. "isApp": 0,
  5091. "enabled": 1,
  5092. "createdBy": 2,
  5093. "createdAt": "2019-07-17 14:47:27",
  5094. "updatedBy": null,
  5095. "updatedAt": null,
  5096. "perms": "space.airCheckSet",
  5097. "iconUrl": "",
  5098. "description": "",
  5099. "moduleId": null,
  5100. "isOuterChain": 0,
  5101. "isPopup": 0,
  5102. "cache": 0,
  5103. "component": null,
  5104. "children": null,
  5105. "default": true,
  5106. "leaf": false
  5107. },
  5108. {
  5109. "id": 5234,
  5110. "menuCode": "realtimeToilet",
  5111. "systemCode": null,
  5112. "menuName": "实时厕位配置",
  5113. "url": "",
  5114. "rightType": 2,
  5115. "parentCode": 5227,
  5116. "displayOrder": 0,
  5117. "isApp": 0,
  5118. "enabled": 1,
  5119. "createdBy": 2,
  5120. "createdAt": "2019-07-17 14:54:16",
  5121. "updatedBy": null,
  5122. "updatedAt": null,
  5123. "perms": "space.realtimeToilet",
  5124. "iconUrl": "",
  5125. "description": "",
  5126. "moduleId": null,
  5127. "isOuterChain": 0,
  5128. "isPopup": 0,
  5129. "cache": 0,
  5130. "component": null,
  5131. "children": null,
  5132. "default": true,
  5133. "leaf": false
  5134. },
  5135. {
  5136. "id": 5236,
  5137. "menuCode": "space.oxygenSetting",
  5138. "systemCode": null,
  5139. "menuName": "含氧量设备配置",
  5140. "url": "",
  5141. "rightType": 2,
  5142. "parentCode": 5227,
  5143. "displayOrder": 0,
  5144. "isApp": 0,
  5145. "enabled": 1,
  5146. "createdBy": 2,
  5147. "createdAt": "2019-07-17 14:56:41",
  5148. "updatedBy": null,
  5149. "updatedAt": null,
  5150. "perms": "space.oxygenSetting",
  5151. "iconUrl": "",
  5152. "description": "",
  5153. "moduleId": null,
  5154. "isOuterChain": 0,
  5155. "isPopup": 0,
  5156. "cache": 0,
  5157. "component": null,
  5158. "children": null,
  5159. "default": true,
  5160. "leaf": false
  5161. }
  5162. ],
  5163. "default": true,
  5164. "leaf": false
  5165. },
  5166. {
  5167. "id": 5252,
  5168. "menuCode": "QYGL",
  5169. "systemCode": null,
  5170. "menuName": "企业管理",
  5171. "url": "",
  5172. "rightType": 1,
  5173. "parentCode": 0,
  5174. "displayOrder": 0,
  5175. "isApp": 0,
  5176. "enabled": 1,
  5177. "createdBy": 2,
  5178. "createdAt": "2019-07-18 09:49:35",
  5179. "updatedBy": null,
  5180. "updatedAt": null,
  5181. "perms": "enterprise",
  5182. "iconUrl": "",
  5183. "description": "",
  5184. "moduleId": null,
  5185. "isOuterChain": 0,
  5186. "isPopup": 0,
  5187. "cache": 0,
  5188. "component": null,
  5189. "children": [
  5190. {
  5191. "id": 5253,
  5192. "menuCode": "virtualarchitecture",
  5193. "systemCode": null,
  5194. "menuName": "企业信息配置",
  5195. "url": "",
  5196. "rightType": 2,
  5197. "parentCode": 5252,
  5198. "displayOrder": 0,
  5199. "isApp": 0,
  5200. "enabled": 1,
  5201. "createdBy": 2,
  5202. "createdAt": "2019-07-18 09:50:13",
  5203. "updatedBy": null,
  5204. "updatedAt": null,
  5205. "perms": "enterprise.virtualarchitecture",
  5206. "iconUrl": "",
  5207. "description": "",
  5208. "moduleId": null,
  5209. "isOuterChain": 0,
  5210. "isPopup": 0,
  5211. "cache": 0,
  5212. "component": null,
  5213. "children": [
  5214. {
  5215. "id": 5255,
  5216. "menuCode": "operate",
  5217. "systemCode": null,
  5218. "menuName": "新增/修改",
  5219. "url": "",
  5220. "rightType": 3,
  5221. "parentCode": 5253,
  5222. "displayOrder": 0,
  5223. "isApp": 0,
  5224. "enabled": 1,
  5225. "createdBy": 2,
  5226. "createdAt": "2019-07-18 09:52:35",
  5227. "updatedBy": 3071,
  5228. "updatedAt": "2021-03-09 09:25:30",
  5229. "perms": "enterprise.virtualarchitecture.operate",
  5230. "iconUrl": "",
  5231. "description": "",
  5232. "moduleId": null,
  5233. "isOuterChain": 0,
  5234. "isPopup": 0,
  5235. "cache": 0,
  5236. "component": null,
  5237. "children": null,
  5238. "default": true,
  5239. "leaf": false
  5240. },
  5241. {
  5242. "id": 5314,
  5243. "menuCode": "",
  5244. "systemCode": null,
  5245. "menuName": "企业加入码",
  5246. "url": "",
  5247. "rightType": 3,
  5248. "parentCode": 5253,
  5249. "displayOrder": 0,
  5250. "isApp": 0,
  5251. "enabled": 1,
  5252. "createdBy": 716,
  5253. "createdAt": "2019-12-03 14:35:53",
  5254. "updatedBy": null,
  5255. "updatedAt": null,
  5256. "perms": "enterprise.virtualarchitecture.joinEnter",
  5257. "iconUrl": "",
  5258. "description": "",
  5259. "moduleId": null,
  5260. "isOuterChain": 0,
  5261. "isPopup": 0,
  5262. "cache": 0,
  5263. "component": null,
  5264. "children": null,
  5265. "default": true,
  5266. "leaf": false
  5267. },
  5268. {
  5269. "id": 5323,
  5270. "menuCode": "",
  5271. "systemCode": null,
  5272. "menuName": "采购信息编辑",
  5273. "url": "",
  5274. "rightType": 3,
  5275. "parentCode": 5253,
  5276. "displayOrder": 0,
  5277. "isApp": 0,
  5278. "enabled": 1,
  5279. "createdBy": 532,
  5280. "createdAt": "2020-01-08 15:05:53",
  5281. "updatedBy": null,
  5282. "updatedAt": null,
  5283. "perms": "enterprise.virtualarchitecture.purchase",
  5284. "iconUrl": "",
  5285. "description": "",
  5286. "moduleId": null,
  5287. "isOuterChain": 0,
  5288. "isPopup": 0,
  5289. "cache": 0,
  5290. "component": null,
  5291. "children": null,
  5292. "default": true,
  5293. "leaf": false
  5294. },
  5295. {
  5296. "id": 5479,
  5297. "menuCode": "delete",
  5298. "systemCode": null,
  5299. "menuName": "删除",
  5300. "url": "",
  5301. "rightType": 3,
  5302. "parentCode": 5253,
  5303. "displayOrder": 0,
  5304. "isApp": 0,
  5305. "enabled": 1,
  5306. "createdBy": 3071,
  5307. "createdAt": "2021-03-09 09:24:59",
  5308. "updatedBy": null,
  5309. "updatedAt": null,
  5310. "perms": "enterprise.virtualarchitecture.delete",
  5311. "iconUrl": "",
  5312. "description": "",
  5313. "moduleId": null,
  5314. "isOuterChain": 0,
  5315. "isPopup": 0,
  5316. "cache": 0,
  5317. "component": null,
  5318. "children": null,
  5319. "default": true,
  5320. "leaf": false
  5321. }
  5322. ],
  5323. "default": true,
  5324. "leaf": false
  5325. },
  5326. {
  5327. "id": 5254,
  5328. "menuCode": "department",
  5329. "systemCode": null,
  5330. "menuName": "部门信息配置",
  5331. "url": "",
  5332. "rightType": 2,
  5333. "parentCode": 5252,
  5334. "displayOrder": 0,
  5335. "isApp": 0,
  5336. "enabled": 1,
  5337. "createdBy": 2,
  5338. "createdAt": "2019-07-18 09:51:38",
  5339. "updatedBy": null,
  5340. "updatedAt": null,
  5341. "perms": "enterprise.department",
  5342. "iconUrl": "",
  5343. "description": "",
  5344. "moduleId": null,
  5345. "isOuterChain": 0,
  5346. "isPopup": 0,
  5347. "cache": 0,
  5348. "component": null,
  5349. "children": [
  5350. {
  5351. "id": 5256,
  5352. "menuCode": "operate",
  5353. "systemCode": null,
  5354. "menuName": "新增/修改/删除",
  5355. "url": "",
  5356. "rightType": 3,
  5357. "parentCode": 5254,
  5358. "displayOrder": 0,
  5359. "isApp": 0,
  5360. "enabled": 1,
  5361. "createdBy": 2,
  5362. "createdAt": "2019-07-18 09:53:21",
  5363. "updatedBy": null,
  5364. "updatedAt": null,
  5365. "perms": "enterprise.department.operate",
  5366. "iconUrl": "",
  5367. "description": "",
  5368. "moduleId": null,
  5369. "isOuterChain": 0,
  5370. "isPopup": 0,
  5371. "cache": 0,
  5372. "component": null,
  5373. "children": null,
  5374. "default": true,
  5375. "leaf": false
  5376. }
  5377. ],
  5378. "default": true,
  5379. "leaf": false
  5380. },
  5381. {
  5382. "id": 5257,
  5383. "menuCode": "virtAccount",
  5384. "systemCode": null,
  5385. "menuName": "企业账号配置",
  5386. "url": "",
  5387. "rightType": 2,
  5388. "parentCode": 5252,
  5389. "displayOrder": 0,
  5390. "isApp": 0,
  5391. "enabled": 1,
  5392. "createdBy": 2,
  5393. "createdAt": "2019-07-18 09:53:54",
  5394. "updatedBy": null,
  5395. "updatedAt": null,
  5396. "perms": "enterprise.virtAccount",
  5397. "iconUrl": "",
  5398. "description": "",
  5399. "moduleId": null,
  5400. "isOuterChain": 0,
  5401. "isPopup": 0,
  5402. "cache": 0,
  5403. "component": null,
  5404. "children": [
  5405. {
  5406. "id": 5258,
  5407. "menuCode": "operate",
  5408. "systemCode": null,
  5409. "menuName": "新增/修改/删除",
  5410. "url": "",
  5411. "rightType": 3,
  5412. "parentCode": 5257,
  5413. "displayOrder": 0,
  5414. "isApp": 0,
  5415. "enabled": 1,
  5416. "createdBy": 2,
  5417. "createdAt": "2019-07-18 09:54:23",
  5418. "updatedBy": null,
  5419. "updatedAt": null,
  5420. "perms": "enterprise.virtAccount.operate",
  5421. "iconUrl": "",
  5422. "description": "",
  5423. "moduleId": null,
  5424. "isOuterChain": 0,
  5425. "isPopup": 0,
  5426. "cache": 0,
  5427. "component": null,
  5428. "children": null,
  5429. "default": true,
  5430. "leaf": false
  5431. }
  5432. ],
  5433. "default": true,
  5434. "leaf": false
  5435. },
  5436. {
  5437. "id": 5259,
  5438. "menuCode": "virtAccountExtend",
  5439. "systemCode": null,
  5440. "menuName": "企业账户管理",
  5441. "url": "",
  5442. "rightType": 2,
  5443. "parentCode": 5252,
  5444. "displayOrder": 0,
  5445. "isApp": 0,
  5446. "enabled": 1,
  5447. "createdBy": 2,
  5448. "createdAt": "2019-07-18 09:54:53",
  5449. "updatedBy": null,
  5450. "updatedAt": null,
  5451. "perms": "enterprise.virtAccountExtend",
  5452. "iconUrl": "",
  5453. "description": "",
  5454. "moduleId": null,
  5455. "isOuterChain": 0,
  5456. "isPopup": 0,
  5457. "cache": 0,
  5458. "component": null,
  5459. "children": [
  5460. {
  5461. "id": 5493,
  5462. "menuCode": "",
  5463. "systemCode": null,
  5464. "menuName": "充值",
  5465. "url": "0",
  5466. "rightType": 3,
  5467. "parentCode": 5259,
  5468. "displayOrder": 0,
  5469. "isApp": 0,
  5470. "enabled": 1,
  5471. "createdBy": 3071,
  5472. "createdAt": "2021-05-26 18:58:02",
  5473. "updatedBy": null,
  5474. "updatedAt": null,
  5475. "perms": "enterprise.virtAccountExtend.topUp",
  5476. "iconUrl": "",
  5477. "description": "列表充值按钮权限",
  5478. "moduleId": null,
  5479. "isOuterChain": 0,
  5480. "isPopup": 0,
  5481. "cache": 0,
  5482. "component": null,
  5483. "children": null,
  5484. "default": true,
  5485. "leaf": true
  5486. },
  5487. {
  5488. "id": 5494,
  5489. "menuCode": "",
  5490. "systemCode": null,
  5491. "menuName": "月结缴费",
  5492. "url": "0",
  5493. "rightType": 3,
  5494. "parentCode": 5259,
  5495. "displayOrder": 0,
  5496. "isApp": 0,
  5497. "enabled": 1,
  5498. "createdBy": 3071,
  5499. "createdAt": "2021-05-26 18:59:19",
  5500. "updatedBy": null,
  5501. "updatedAt": null,
  5502. "perms": "enterprise.virtAccountExtend.monthly",
  5503. "iconUrl": "",
  5504. "description": "列表月结缴费按钮权限",
  5505. "moduleId": null,
  5506. "isOuterChain": 0,
  5507. "isPopup": 0,
  5508. "cache": 0,
  5509. "component": null,
  5510. "children": null,
  5511. "default": true,
  5512. "leaf": true
  5513. },
  5514. {
  5515. "id": 5495,
  5516. "menuCode": "",
  5517. "systemCode": null,
  5518. "menuName": "积分规则配置",
  5519. "url": "0",
  5520. "rightType": 3,
  5521. "parentCode": 5259,
  5522. "displayOrder": 0,
  5523. "isApp": 0,
  5524. "enabled": 1,
  5525. "createdBy": 3071,
  5526. "createdAt": "2021-05-26 19:00:52",
  5527. "updatedBy": null,
  5528. "updatedAt": null,
  5529. "perms": "enterprise.virtAccountExtend.integral",
  5530. "iconUrl": "",
  5531. "description": "列表积分规则配置按钮权限",
  5532. "moduleId": null,
  5533. "isOuterChain": 0,
  5534. "isPopup": 0,
  5535. "cache": 0,
  5536. "component": null,
  5537. "children": null,
  5538. "default": true,
  5539. "leaf": true
  5540. }
  5541. ],
  5542. "default": true,
  5543. "leaf": false
  5544. },
  5545. {
  5546. "id": 5261,
  5547. "menuCode": "virtPermConfig",
  5548. "systemCode": null,
  5549. "menuName": "企业类型管理",
  5550. "url": "",
  5551. "rightType": 2,
  5552. "parentCode": 5252,
  5553. "displayOrder": 0,
  5554. "isApp": 0,
  5555. "enabled": 1,
  5556. "createdBy": 2,
  5557. "createdAt": "2019-07-18 09:56:06",
  5558. "updatedBy": null,
  5559. "updatedAt": null,
  5560. "perms": "enterprise.virtPermConfig",
  5561. "iconUrl": "",
  5562. "description": "",
  5563. "moduleId": null,
  5564. "isOuterChain": 0,
  5565. "isPopup": 0,
  5566. "cache": 0,
  5567. "component": null,
  5568. "children": [
  5569. {
  5570. "id": 5262,
  5571. "menuCode": "operate",
  5572. "systemCode": null,
  5573. "menuName": "新增/修改/删除",
  5574. "url": "0",
  5575. "rightType": 3,
  5576. "parentCode": 5261,
  5577. "displayOrder": 0,
  5578. "isApp": 0,
  5579. "enabled": 1,
  5580. "createdBy": 2,
  5581. "createdAt": "2019-07-18 09:56:49",
  5582. "updatedBy": null,
  5583. "updatedAt": null,
  5584. "perms": "enterprise.virtPermConfig.operate",
  5585. "iconUrl": "",
  5586. "description": "",
  5587. "moduleId": null,
  5588. "isOuterChain": 0,
  5589. "isPopup": 0,
  5590. "cache": 0,
  5591. "component": null,
  5592. "children": null,
  5593. "default": true,
  5594. "leaf": true
  5595. }
  5596. ],
  5597. "default": true,
  5598. "leaf": false
  5599. },
  5600. {
  5601. "id": 5263,
  5602. "menuCode": "rechargeRecord",
  5603. "systemCode": null,
  5604. "menuName": "企业充值申请",
  5605. "url": "",
  5606. "rightType": 2,
  5607. "parentCode": 5252,
  5608. "displayOrder": 0,
  5609. "isApp": 0,
  5610. "enabled": 1,
  5611. "createdBy": 2,
  5612. "createdAt": "2019-07-18 10:02:14",
  5613. "updatedBy": null,
  5614. "updatedAt": null,
  5615. "perms": "enterprise.rechargeRecord",
  5616. "iconUrl": "",
  5617. "description": "",
  5618. "moduleId": null,
  5619. "isOuterChain": 0,
  5620. "isPopup": 0,
  5621. "cache": 0,
  5622. "component": null,
  5623. "children": [
  5624. {
  5625. "id": 5264,
  5626. "menuCode": "operate",
  5627. "systemCode": null,
  5628. "menuName": "新增/修改/删除",
  5629. "url": "",
  5630. "rightType": 3,
  5631. "parentCode": 5263,
  5632. "displayOrder": 0,
  5633. "isApp": 0,
  5634. "enabled": 1,
  5635. "createdBy": 2,
  5636. "createdAt": "2019-07-18 10:03:06",
  5637. "updatedBy": null,
  5638. "updatedAt": null,
  5639. "perms": "enterprise.rechargeRecord.operate",
  5640. "iconUrl": "",
  5641. "description": "",
  5642. "moduleId": null,
  5643. "isOuterChain": 0,
  5644. "isPopup": 0,
  5645. "cache": 0,
  5646. "component": null,
  5647. "children": null,
  5648. "default": true,
  5649. "leaf": false
  5650. }
  5651. ],
  5652. "default": true,
  5653. "leaf": false
  5654. },
  5655. {
  5656. "id": 5345,
  5657. "menuCode": "",
  5658. "systemCode": null,
  5659. "menuName": "企业授信管理",
  5660. "url": "",
  5661. "rightType": 2,
  5662. "parentCode": 5252,
  5663. "displayOrder": 0,
  5664. "isApp": 0,
  5665. "enabled": 1,
  5666. "createdBy": 716,
  5667. "createdAt": "2020-02-26 15:22:56",
  5668. "updatedBy": 716,
  5669. "updatedAt": "2020-02-26 15:24:13",
  5670. "perms": "enterprise.creditManagement",
  5671. "iconUrl": "",
  5672. "description": "",
  5673. "moduleId": null,
  5674. "isOuterChain": 0,
  5675. "isPopup": 0,
  5676. "cache": 0,
  5677. "component": null,
  5678. "children": null,
  5679. "default": true,
  5680. "leaf": false
  5681. },
  5682. {
  5683. "id": 5346,
  5684. "menuCode": "",
  5685. "systemCode": null,
  5686. "menuName": "授信账户流水",
  5687. "url": "0",
  5688. "rightType": 2,
  5689. "parentCode": 5252,
  5690. "displayOrder": 0,
  5691. "isApp": 0,
  5692. "enabled": 1,
  5693. "createdBy": 716,
  5694. "createdAt": "2020-02-26 15:23:45",
  5695. "updatedBy": null,
  5696. "updatedAt": null,
  5697. "perms": "enterprise.accountFlow",
  5698. "iconUrl": "",
  5699. "description": "",
  5700. "moduleId": null,
  5701. "isOuterChain": 0,
  5702. "isPopup": 0,
  5703. "cache": 0,
  5704. "component": null,
  5705. "children": null,
  5706. "default": true,
  5707. "leaf": true
  5708. },
  5709. {
  5710. "id": 5562,
  5711. "menuCode": "virtTopUpWater",
  5712. "systemCode": null,
  5713. "menuName": "企业充值流水",
  5714. "url": "",
  5715. "rightType": 2,
  5716. "parentCode": 5252,
  5717. "displayOrder": 0,
  5718. "isApp": 0,
  5719. "enabled": 1,
  5720. "createdBy": 3071,
  5721. "createdAt": "2021-08-17 11:16:51",
  5722. "updatedBy": 3071,
  5723. "updatedAt": "2021-08-17 11:19:25",
  5724. "perms": "enterprise.virtTopUpWater",
  5725. "iconUrl": "",
  5726. "description": "",
  5727. "moduleId": null,
  5728. "isOuterChain": 0,
  5729. "isPopup": 0,
  5730. "cache": 0,
  5731. "component": null,
  5732. "children": [
  5733. {
  5734. "id": 5563,
  5735. "menuCode": "",
  5736. "systemCode": null,
  5737. "menuName": "导出Excel",
  5738. "url": "",
  5739. "rightType": 3,
  5740. "parentCode": 5562,
  5741. "displayOrder": 0,
  5742. "isApp": 0,
  5743. "enabled": 1,
  5744. "createdBy": 3071,
  5745. "createdAt": "2021-08-17 11:21:35",
  5746. "updatedBy": null,
  5747. "updatedAt": null,
  5748. "perms": "enterprise.virtTopUpWater.export",
  5749. "iconUrl": "",
  5750. "description": "",
  5751. "moduleId": null,
  5752. "isOuterChain": 0,
  5753. "isPopup": 0,
  5754. "cache": 0,
  5755. "component": null,
  5756. "children": null,
  5757. "default": true,
  5758. "leaf": false
  5759. },
  5760. {
  5761. "id": 5564,
  5762. "menuCode": "",
  5763. "systemCode": null,
  5764. "menuName": "菜单权限",
  5765. "url": "",
  5766. "rightType": 3,
  5767. "parentCode": 5562,
  5768. "displayOrder": 0,
  5769. "isApp": 0,
  5770. "enabled": 1,
  5771. "createdBy": 3071,
  5772. "createdAt": "2021-08-18 09:19:47",
  5773. "updatedBy": null,
  5774. "updatedAt": null,
  5775. "perms": "enterprise.virtTopUpWater.menu",
  5776. "iconUrl": "",
  5777. "description": "",
  5778. "moduleId": null,
  5779. "isOuterChain": 0,
  5780. "isPopup": 0,
  5781. "cache": 0,
  5782. "component": null,
  5783. "children": null,
  5784. "default": true,
  5785. "leaf": false
  5786. }
  5787. ],
  5788. "default": true,
  5789. "leaf": false
  5790. }
  5791. ],
  5792. "default": true,
  5793. "leaf": false
  5794. },
  5795. {
  5796. "id": 5266,
  5797. "menuCode": "TJSJ",
  5798. "systemCode": null,
  5799. "menuName": "统计数据",
  5800. "url": "",
  5801. "rightType": 1,
  5802. "parentCode": 0,
  5803. "displayOrder": 0,
  5804. "isApp": 0,
  5805. "enabled": 1,
  5806. "createdBy": 135,
  5807. "createdAt": "2019-07-18 10:41:32",
  5808. "updatedBy": 3071,
  5809. "updatedAt": "2022-01-20 11:08:04",
  5810. "perms": "pc:dataStatistic",
  5811. "iconUrl": "",
  5812. "description": "",
  5813. "moduleId": null,
  5814. "isOuterChain": 0,
  5815. "isPopup": 0,
  5816. "cache": 0,
  5817. "component": null,
  5818. "children": [
  5819. {
  5820. "id": 5268,
  5821. "menuCode": "userOrdering",
  5822. "systemCode": null,
  5823. "menuName": "用户订餐统计",
  5824. "url": "",
  5825. "rightType": 2,
  5826. "parentCode": 5266,
  5827. "displayOrder": 0,
  5828. "isApp": 0,
  5829. "enabled": 1,
  5830. "createdBy": 135,
  5831. "createdAt": "2019-07-18 10:42:39",
  5832. "updatedBy": null,
  5833. "updatedAt": null,
  5834. "perms": "statisticalData.userOrdering",
  5835. "iconUrl": "",
  5836. "description": "",
  5837. "moduleId": null,
  5838. "isOuterChain": 0,
  5839. "isPopup": 0,
  5840. "cache": 0,
  5841. "component": null,
  5842. "children": null,
  5843. "default": true,
  5844. "leaf": false
  5845. },
  5846. {
  5847. "id": 5298,
  5848. "menuCode": "",
  5849. "systemCode": null,
  5850. "menuName": "餐卡流水统计",
  5851. "url": "",
  5852. "rightType": 2,
  5853. "parentCode": 5266,
  5854. "displayOrder": 0,
  5855. "isApp": 0,
  5856. "enabled": 1,
  5857. "createdBy": 995,
  5858. "createdAt": "2019-10-24 14:50:15",
  5859. "updatedBy": null,
  5860. "updatedAt": null,
  5861. "perms": "statisticalData.waterStatistics",
  5862. "iconUrl": "",
  5863. "description": "",
  5864. "moduleId": null,
  5865. "isOuterChain": 0,
  5866. "isPopup": 0,
  5867. "cache": 0,
  5868. "component": null,
  5869. "children": null,
  5870. "default": true,
  5871. "leaf": false
  5872. },
  5873. {
  5874. "id": 5299,
  5875. "menuCode": "",
  5876. "systemCode": null,
  5877. "menuName": "数据查询",
  5878. "url": "0",
  5879. "rightType": 2,
  5880. "parentCode": 5266,
  5881. "displayOrder": 0,
  5882. "isApp": 0,
  5883. "enabled": 1,
  5884. "createdBy": 995,
  5885. "createdAt": "2019-10-24 14:50:39",
  5886. "updatedBy": null,
  5887. "updatedAt": null,
  5888. "perms": "statisticalData.dataStatisal",
  5889. "iconUrl": "",
  5890. "description": "",
  5891. "moduleId": null,
  5892. "isOuterChain": 0,
  5893. "isPopup": 0,
  5894. "cache": 0,
  5895. "component": null,
  5896. "children": null,
  5897. "default": true,
  5898. "leaf": true
  5899. },
  5900. {
  5901. "id": 5300,
  5902. "menuCode": "",
  5903. "systemCode": null,
  5904. "menuName": "操作记录查询",
  5905. "url": "0",
  5906. "rightType": 2,
  5907. "parentCode": 5266,
  5908. "displayOrder": 0,
  5909. "isApp": 0,
  5910. "enabled": 1,
  5911. "createdBy": 530,
  5912. "createdAt": "2019-10-24 14:54:16",
  5913. "updatedBy": null,
  5914. "updatedAt": null,
  5915. "perms": "statisticalData.operateStatisal",
  5916. "iconUrl": "",
  5917. "description": "",
  5918. "moduleId": null,
  5919. "isOuterChain": 0,
  5920. "isPopup": 0,
  5921. "cache": 0,
  5922. "component": null,
  5923. "children": null,
  5924. "default": true,
  5925. "leaf": true
  5926. },
  5927. {
  5928. "id": 5301,
  5929. "menuCode": "",
  5930. "systemCode": null,
  5931. "menuName": "交易流水管理",
  5932. "url": "0",
  5933. "rightType": 2,
  5934. "parentCode": 5266,
  5935. "displayOrder": 0,
  5936. "isApp": 0,
  5937. "enabled": 1,
  5938. "createdBy": 530,
  5939. "createdAt": "2019-10-24 14:54:44",
  5940. "updatedBy": null,
  5941. "updatedAt": null,
  5942. "perms": "wallet.virtAccountWater",
  5943. "iconUrl": "",
  5944. "description": "",
  5945. "moduleId": null,
  5946. "isOuterChain": 0,
  5947. "isPopup": 0,
  5948. "cache": 0,
  5949. "component": null,
  5950. "children": null,
  5951. "default": true,
  5952. "leaf": true
  5953. },
  5954. {
  5955. "id": 5589,
  5956. "menuCode": "",
  5957. "systemCode": null,
  5958. "menuName": "平台概况",
  5959. "url": "",
  5960. "rightType": 2,
  5961. "parentCode": 5266,
  5962. "displayOrder": 0,
  5963. "isApp": 0,
  5964. "enabled": 1,
  5965. "createdBy": 3071,
  5966. "createdAt": "2022-01-20 11:08:31",
  5967. "updatedBy": 3071,
  5968. "updatedAt": "2022-01-20 11:08:56",
  5969. "perms": "statisticalData.platformOverview",
  5970. "iconUrl": "",
  5971. "description": "",
  5972. "moduleId": null,
  5973. "isOuterChain": 0,
  5974. "isPopup": 0,
  5975. "cache": 0,
  5976. "component": null,
  5977. "children": null,
  5978. "default": true,
  5979. "leaf": false
  5980. },
  5981. {
  5982. "id": 5590,
  5983. "menuCode": "",
  5984. "systemCode": null,
  5985. "menuName": "业务概况",
  5986. "url": "",
  5987. "rightType": 2,
  5988. "parentCode": 5266,
  5989. "displayOrder": 0,
  5990. "isApp": 0,
  5991. "enabled": 1,
  5992. "createdBy": 3071,
  5993. "createdAt": "2022-01-20 11:13:13",
  5994. "updatedBy": null,
  5995. "updatedAt": null,
  5996. "perms": "statisticalData.businessProfile",
  5997. "iconUrl": "",
  5998. "description": "",
  5999. "moduleId": null,
  6000. "isOuterChain": 0,
  6001. "isPopup": 0,
  6002. "cache": 0,
  6003. "component": null,
  6004. "children": null,
  6005. "default": true,
  6006. "leaf": false
  6007. }
  6008. ],
  6009. "default": true,
  6010. "leaf": false
  6011. },
  6012. {
  6013. "id": 5269,
  6014. "menuCode": "HWJD",
  6015. "systemCode": null,
  6016. "menuName": "会务接待",
  6017. "url": "",
  6018. "rightType": 1,
  6019. "parentCode": 0,
  6020. "displayOrder": 0,
  6021. "isApp": 0,
  6022. "enabled": 1,
  6023. "createdBy": 2,
  6024. "createdAt": "2019-07-19 11:37:50",
  6025. "updatedBy": null,
  6026. "updatedAt": null,
  6027. "perms": "conference",
  6028. "iconUrl": "",
  6029. "description": "",
  6030. "moduleId": null,
  6031. "isOuterChain": 0,
  6032. "isPopup": 0,
  6033. "cache": 0,
  6034. "component": null,
  6035. "children": [
  6036. {
  6037. "id": 5270,
  6038. "menuCode": "conferenceManagement",
  6039. "systemCode": null,
  6040. "menuName": "会务管理",
  6041. "url": "",
  6042. "rightType": 2,
  6043. "parentCode": 5269,
  6044. "displayOrder": 0,
  6045. "isApp": 0,
  6046. "enabled": 1,
  6047. "createdBy": 2,
  6048. "createdAt": "2019-07-19 11:38:19",
  6049. "updatedBy": null,
  6050. "updatedAt": null,
  6051. "perms": "conference.conferenceManagement",
  6052. "iconUrl": "",
  6053. "description": "",
  6054. "moduleId": null,
  6055. "isOuterChain": 0,
  6056. "isPopup": 0,
  6057. "cache": 0,
  6058. "component": null,
  6059. "children": null,
  6060. "default": true,
  6061. "leaf": false
  6062. },
  6063. {
  6064. "id": 5271,
  6065. "menuCode": "conferenceMeans",
  6066. "systemCode": null,
  6067. "menuName": "企业资料管理",
  6068. "url": "",
  6069. "rightType": 2,
  6070. "parentCode": 5269,
  6071. "displayOrder": 0,
  6072. "isApp": 0,
  6073. "enabled": 1,
  6074. "createdBy": 2,
  6075. "createdAt": "2019-07-19 11:38:53",
  6076. "updatedBy": null,
  6077. "updatedAt": null,
  6078. "perms": "conference.conferenceMeans",
  6079. "iconUrl": "",
  6080. "description": "",
  6081. "moduleId": null,
  6082. "isOuterChain": 0,
  6083. "isPopup": 0,
  6084. "cache": 0,
  6085. "component": null,
  6086. "children": null,
  6087. "default": true,
  6088. "leaf": false
  6089. }
  6090. ],
  6091. "default": true,
  6092. "leaf": false
  6093. },
  6094. {
  6095. "id": 5276,
  6096. "menuCode": "TCCFW",
  6097. "systemCode": null,
  6098. "menuName": "停车场服务",
  6099. "url": "",
  6100. "rightType": 1,
  6101. "parentCode": 0,
  6102. "displayOrder": 0,
  6103. "isApp": 0,
  6104. "enabled": 1,
  6105. "createdBy": 1,
  6106. "createdAt": "2019-09-05 16:26:05",
  6107. "updatedBy": null,
  6108. "updatedAt": null,
  6109. "perms": "carpark",
  6110. "iconUrl": "",
  6111. "description": "停车场服务",
  6112. "moduleId": null,
  6113. "isOuterChain": 0,
  6114. "isPopup": 0,
  6115. "cache": 0,
  6116. "component": null,
  6117. "children": [
  6118. {
  6119. "id": 5277,
  6120. "menuCode": "FWPZ",
  6121. "systemCode": null,
  6122. "menuName": "服务配置",
  6123. "url": "",
  6124. "rightType": 2,
  6125. "parentCode": 5276,
  6126. "displayOrder": 0,
  6127. "isApp": 0,
  6128. "enabled": 1,
  6129. "createdBy": 1,
  6130. "createdAt": "2019-09-05 16:26:49",
  6131. "updatedBy": null,
  6132. "updatedAt": null,
  6133. "perms": "carpark.setting",
  6134. "iconUrl": "",
  6135. "description": "服务配置",
  6136. "moduleId": null,
  6137. "isOuterChain": 0,
  6138. "isPopup": 0,
  6139. "cache": 0,
  6140. "component": null,
  6141. "children": null,
  6142. "default": true,
  6143. "leaf": false
  6144. }
  6145. ],
  6146. "default": true,
  6147. "leaf": false
  6148. },
  6149. {
  6150. "id": 5278,
  6151. "menuCode": "LNSS",
  6152. "systemCode": null,
  6153. "menuName": "楼闪送",
  6154. "url": "",
  6155. "rightType": 1,
  6156. "parentCode": 0,
  6157. "displayOrder": 0,
  6158. "isApp": 0,
  6159. "enabled": 1,
  6160. "createdBy": 529,
  6161. "createdAt": "2019-09-16 17:11:10",
  6162. "updatedBy": null,
  6163. "updatedAt": null,
  6164. "perms": "flashdeliver",
  6165. "iconUrl": "",
  6166. "description": "",
  6167. "moduleId": null,
  6168. "isOuterChain": 0,
  6169. "isPopup": 0,
  6170. "cache": 0,
  6171. "component": null,
  6172. "children": [
  6173. {
  6174. "id": 5279,
  6175. "menuCode": "",
  6176. "systemCode": null,
  6177. "menuName": "商品管理",
  6178. "url": "",
  6179. "rightType": 2,
  6180. "parentCode": 5278,
  6181. "displayOrder": 0,
  6182. "isApp": 0,
  6183. "enabled": 1,
  6184. "createdBy": 529,
  6185. "createdAt": "2019-09-16 17:12:39",
  6186. "updatedBy": null,
  6187. "updatedAt": null,
  6188. "perms": "flashdeliver.product",
  6189. "iconUrl": "",
  6190. "description": "楼内闪送商品管理",
  6191. "moduleId": null,
  6192. "isOuterChain": 0,
  6193. "isPopup": 0,
  6194. "cache": 0,
  6195. "component": null,
  6196. "children": [
  6197. {
  6198. "id": 5280,
  6199. "menuCode": "",
  6200. "systemCode": null,
  6201. "menuName": "商品审核",
  6202. "url": "0",
  6203. "rightType": 3,
  6204. "parentCode": 5279,
  6205. "displayOrder": 0,
  6206. "isApp": 0,
  6207. "enabled": 1,
  6208. "createdBy": 529,
  6209. "createdAt": "2019-09-16 17:13:30",
  6210. "updatedBy": null,
  6211. "updatedAt": null,
  6212. "perms": "flashdeliver.product.audit",
  6213. "iconUrl": "",
  6214. "description": "楼内闪送商品管理",
  6215. "moduleId": null,
  6216. "isOuterChain": 0,
  6217. "isPopup": 0,
  6218. "cache": 0,
  6219. "component": null,
  6220. "children": null,
  6221. "default": true,
  6222. "leaf": true
  6223. },
  6224. {
  6225. "id": 5329,
  6226. "menuCode": "",
  6227. "systemCode": null,
  6228. "menuName": "编辑",
  6229. "url": "",
  6230. "rightType": 3,
  6231. "parentCode": 5279,
  6232. "displayOrder": 0,
  6233. "isApp": 0,
  6234. "enabled": 1,
  6235. "createdBy": 532,
  6236. "createdAt": "2020-01-17 16:56:41",
  6237. "updatedBy": null,
  6238. "updatedAt": null,
  6239. "perms": "flashdeliver.product.edit",
  6240. "iconUrl": "",
  6241. "description": "",
  6242. "moduleId": null,
  6243. "isOuterChain": 0,
  6244. "isPopup": 0,
  6245. "cache": 0,
  6246. "component": null,
  6247. "children": null,
  6248. "default": true,
  6249. "leaf": false
  6250. },
  6251. {
  6252. "id": 5384,
  6253. "menuCode": "spkssj",
  6254. "systemCode": null,
  6255. "menuName": "商品快速上架",
  6256. "url": "",
  6257. "rightType": 3,
  6258. "parentCode": 5279,
  6259. "displayOrder": 0,
  6260. "isApp": 0,
  6261. "enabled": 1,
  6262. "createdBy": 41,
  6263. "createdAt": "2020-04-24 17:08:43",
  6264. "updatedBy": 41,
  6265. "updatedAt": "2020-04-24 17:22:28",
  6266. "perms": "flashdeliver.product.grounding",
  6267. "iconUrl": "",
  6268. "description": "楼闪送商品快速上架",
  6269. "moduleId": null,
  6270. "isOuterChain": 0,
  6271. "isPopup": 0,
  6272. "cache": 0,
  6273. "component": null,
  6274. "children": null,
  6275. "default": true,
  6276. "leaf": false
  6277. },
  6278. {
  6279. "id": 5385,
  6280. "menuCode": "spplsh",
  6281. "systemCode": null,
  6282. "menuName": "商品批量审核",
  6283. "url": "",
  6284. "rightType": 3,
  6285. "parentCode": 5279,
  6286. "displayOrder": 0,
  6287. "isApp": 0,
  6288. "enabled": 1,
  6289. "createdBy": 41,
  6290. "createdAt": "2020-04-24 17:09:46",
  6291. "updatedBy": 41,
  6292. "updatedAt": "2020-04-24 17:19:15",
  6293. "perms": "flashdeliver.product.auth",
  6294. "iconUrl": "",
  6295. "description": "楼闪送商品快速审核",
  6296. "moduleId": null,
  6297. "isOuterChain": 0,
  6298. "isPopup": 0,
  6299. "cache": 0,
  6300. "component": null,
  6301. "children": null,
  6302. "default": true,
  6303. "leaf": false
  6304. },
  6305. {
  6306. "id": 5580,
  6307. "menuCode": "flashdeliver.product.syncstarbucksproduct",
  6308. "systemCode": null,
  6309. "menuName": "同步星巴克代点商品",
  6310. "url": "",
  6311. "rightType": 3,
  6312. "parentCode": 5279,
  6313. "displayOrder": 0,
  6314. "isApp": 0,
  6315. "enabled": 1,
  6316. "createdBy": 3620,
  6317. "createdAt": "2021-09-08 14:55:52",
  6318. "updatedBy": null,
  6319. "updatedAt": null,
  6320. "perms": "flashdeliver.product.syncstarbucksproduct",
  6321. "iconUrl": "",
  6322. "description": "同步星巴克代点商品",
  6323. "moduleId": null,
  6324. "isOuterChain": 0,
  6325. "isPopup": 0,
  6326. "cache": 0,
  6327. "component": null,
  6328. "children": null,
  6329. "default": true,
  6330. "leaf": false
  6331. }
  6332. ],
  6333. "default": true,
  6334. "leaf": false
  6335. },
  6336. {
  6337. "id": 5286,
  6338. "menuCode": "",
  6339. "systemCode": null,
  6340. "menuName": "商品分类管理",
  6341. "url": "0",
  6342. "rightType": 2,
  6343. "parentCode": 5278,
  6344. "displayOrder": 0,
  6345. "isApp": 0,
  6346. "enabled": 1,
  6347. "createdBy": 529,
  6348. "createdAt": "2019-09-16 18:03:17",
  6349. "updatedBy": null,
  6350. "updatedAt": null,
  6351. "perms": "flashdeliver.productCatalog",
  6352. "iconUrl": "",
  6353. "description": "商品分类管理",
  6354. "moduleId": null,
  6355. "isOuterChain": 0,
  6356. "isPopup": 0,
  6357. "cache": 0,
  6358. "component": null,
  6359. "children": [
  6360. {
  6361. "id": 5303,
  6362. "menuCode": "",
  6363. "systemCode": null,
  6364. "menuName": "商品分类按新增钮展示权限",
  6365. "url": "",
  6366. "rightType": 3,
  6367. "parentCode": 5286,
  6368. "displayOrder": 0,
  6369. "isApp": 0,
  6370. "enabled": 1,
  6371. "createdBy": 529,
  6372. "createdAt": "2019-10-28 14:39:06",
  6373. "updatedBy": null,
  6374. "updatedAt": null,
  6375. "perms": "flashdeliver.productCatalog.add",
  6376. "iconUrl": "",
  6377. "description": "商品分类按新增钮展示权限",
  6378. "moduleId": null,
  6379. "isOuterChain": 0,
  6380. "isPopup": 0,
  6381. "cache": 0,
  6382. "component": null,
  6383. "children": null,
  6384. "default": true,
  6385. "leaf": false
  6386. }
  6387. ],
  6388. "default": true,
  6389. "leaf": true
  6390. },
  6391. {
  6392. "id": 5287,
  6393. "menuCode": "DDGL",
  6394. "systemCode": null,
  6395. "menuName": "订单管理",
  6396. "url": "",
  6397. "rightType": 2,
  6398. "parentCode": 5278,
  6399. "displayOrder": 0,
  6400. "isApp": 0,
  6401. "enabled": 1,
  6402. "createdBy": 1,
  6403. "createdAt": "2019-09-20 11:53:43",
  6404. "updatedBy": null,
  6405. "updatedAt": null,
  6406. "perms": "flashdeliver.order-manage",
  6407. "iconUrl": "",
  6408. "description": "订单管理",
  6409. "moduleId": null,
  6410. "isOuterChain": 0,
  6411. "isPopup": 0,
  6412. "cache": 0,
  6413. "component": null,
  6414. "children": [
  6415. {
  6416. "id": 5431,
  6417. "menuCode": "",
  6418. "systemCode": null,
  6419. "menuName": "确认订单",
  6420. "url": "",
  6421. "rightType": 3,
  6422. "parentCode": 5287,
  6423. "displayOrder": 0,
  6424. "isApp": 0,
  6425. "enabled": 1,
  6426. "createdBy": 2960,
  6427. "createdAt": "2020-12-11 15:09:33",
  6428. "updatedBy": null,
  6429. "updatedAt": null,
  6430. "perms": "flashdeliver.orderManager.confirmOrder",
  6431. "iconUrl": "",
  6432. "description": "",
  6433. "moduleId": null,
  6434. "isOuterChain": 0,
  6435. "isPopup": 0,
  6436. "cache": 0,
  6437. "component": null,
  6438. "children": null,
  6439. "default": true,
  6440. "leaf": false
  6441. },
  6442. {
  6443. "id": 5432,
  6444. "menuCode": "",
  6445. "systemCode": null,
  6446. "menuName": "确认提货",
  6447. "url": "",
  6448. "rightType": 3,
  6449. "parentCode": 5287,
  6450. "displayOrder": 0,
  6451. "isApp": 0,
  6452. "enabled": 1,
  6453. "createdBy": 2960,
  6454. "createdAt": "2020-12-11 15:10:38",
  6455. "updatedBy": null,
  6456. "updatedAt": null,
  6457. "perms": "flashdeliver.orderManager.confirmDelivery",
  6458. "iconUrl": "",
  6459. "description": "",
  6460. "moduleId": null,
  6461. "isOuterChain": 0,
  6462. "isPopup": 0,
  6463. "cache": 0,
  6464. "component": null,
  6465. "children": null,
  6466. "default": true,
  6467. "leaf": false
  6468. },
  6469. {
  6470. "id": 5433,
  6471. "menuCode": "",
  6472. "systemCode": null,
  6473. "menuName": "取消订单",
  6474. "url": "",
  6475. "rightType": 3,
  6476. "parentCode": 5287,
  6477. "displayOrder": 0,
  6478. "isApp": 0,
  6479. "enabled": 1,
  6480. "createdBy": 2960,
  6481. "createdAt": "2020-12-11 15:12:17",
  6482. "updatedBy": null,
  6483. "updatedAt": null,
  6484. "perms": "flashdeliver.orderManager.cancelOrder",
  6485. "iconUrl": "",
  6486. "description": "",
  6487. "moduleId": null,
  6488. "isOuterChain": 0,
  6489. "isPopup": 0,
  6490. "cache": 0,
  6491. "component": null,
  6492. "children": null,
  6493. "default": true,
  6494. "leaf": false
  6495. },
  6496. {
  6497. "id": 5434,
  6498. "menuCode": "",
  6499. "systemCode": null,
  6500. "menuName": "完成服务",
  6501. "url": "",
  6502. "rightType": 3,
  6503. "parentCode": 5287,
  6504. "displayOrder": 0,
  6505. "isApp": 0,
  6506. "enabled": 1,
  6507. "createdBy": 2960,
  6508. "createdAt": "2020-12-11 15:17:33",
  6509. "updatedBy": null,
  6510. "updatedAt": null,
  6511. "perms": "flashdeliver.orderManager.complete",
  6512. "iconUrl": "",
  6513. "description": "",
  6514. "moduleId": null,
  6515. "isOuterChain": 0,
  6516. "isPopup": 0,
  6517. "cache": 0,
  6518. "component": null,
  6519. "children": null,
  6520. "default": true,
  6521. "leaf": false
  6522. },
  6523. {
  6524. "id": 5435,
  6525. "menuCode": "",
  6526. "systemCode": null,
  6527. "menuName": "指派/改派",
  6528. "url": "",
  6529. "rightType": 3,
  6530. "parentCode": 5287,
  6531. "displayOrder": 0,
  6532. "isApp": 0,
  6533. "enabled": 1,
  6534. "createdBy": 2960,
  6535. "createdAt": "2020-12-11 15:18:26",
  6536. "updatedBy": null,
  6537. "updatedAt": null,
  6538. "perms": "flashdeliver.orderManager.appoint",
  6539. "iconUrl": "",
  6540. "description": "",
  6541. "moduleId": null,
  6542. "isOuterChain": 0,
  6543. "isPopup": 0,
  6544. "cache": 0,
  6545. "component": null,
  6546. "children": null,
  6547. "default": true,
  6548. "leaf": false
  6549. },
  6550. {
  6551. "id": 5436,
  6552. "menuCode": "",
  6553. "systemCode": null,
  6554. "menuName": "取消审核",
  6555. "url": "",
  6556. "rightType": 3,
  6557. "parentCode": 5287,
  6558. "displayOrder": 0,
  6559. "isApp": 0,
  6560. "enabled": 1,
  6561. "createdBy": 2960,
  6562. "createdAt": "2020-12-11 15:19:18",
  6563. "updatedBy": null,
  6564. "updatedAt": null,
  6565. "perms": "flashdeliver.orderManager.cancelVerify",
  6566. "iconUrl": "",
  6567. "description": "",
  6568. "moduleId": null,
  6569. "isOuterChain": 0,
  6570. "isPopup": 0,
  6571. "cache": 0,
  6572. "component": null,
  6573. "children": null,
  6574. "default": true,
  6575. "leaf": false
  6576. }
  6577. ],
  6578. "default": true,
  6579. "leaf": false
  6580. },
  6581. {
  6582. "id": 5288,
  6583. "menuCode": "PSYTJ",
  6584. "systemCode": null,
  6585. "menuName": "配送员统计",
  6586. "url": "0",
  6587. "rightType": 2,
  6588. "parentCode": 5278,
  6589. "displayOrder": 0,
  6590. "isApp": 0,
  6591. "enabled": 1,
  6592. "createdBy": 1,
  6593. "createdAt": "2019-09-20 11:54:25",
  6594. "updatedBy": null,
  6595. "updatedAt": null,
  6596. "perms": "flashdeliver.deliveryman-statistics",
  6597. "iconUrl": "",
  6598. "description": "配送员统计",
  6599. "moduleId": null,
  6600. "isOuterChain": 0,
  6601. "isPopup": 0,
  6602. "cache": 0,
  6603. "component": null,
  6604. "children": null,
  6605. "default": true,
  6606. "leaf": true
  6607. },
  6608. {
  6609. "id": 5289,
  6610. "menuCode": "SHTJ",
  6611. "systemCode": null,
  6612. "menuName": "商户统计",
  6613. "url": "0",
  6614. "rightType": 2,
  6615. "parentCode": 5278,
  6616. "displayOrder": 0,
  6617. "isApp": 0,
  6618. "enabled": 1,
  6619. "createdBy": 1,
  6620. "createdAt": "2019-09-20 11:55:02",
  6621. "updatedBy": null,
  6622. "updatedAt": null,
  6623. "perms": "flashdeliver.merchant-statistics",
  6624. "iconUrl": "",
  6625. "description": "商户统计",
  6626. "moduleId": null,
  6627. "isOuterChain": 0,
  6628. "isPopup": 0,
  6629. "cache": 0,
  6630. "component": null,
  6631. "children": null,
  6632. "default": true,
  6633. "leaf": true
  6634. },
  6635. {
  6636. "id": 5290,
  6637. "menuCode": "XMXSTJ",
  6638. "systemCode": null,
  6639. "menuName": "项目销售统计",
  6640. "url": "0",
  6641. "rightType": 2,
  6642. "parentCode": 5278,
  6643. "displayOrder": 0,
  6644. "isApp": 0,
  6645. "enabled": 1,
  6646. "createdBy": 1,
  6647. "createdAt": "2019-09-20 11:55:38",
  6648. "updatedBy": null,
  6649. "updatedAt": null,
  6650. "perms": "flashdeliver.organization-sell-statistics",
  6651. "iconUrl": "",
  6652. "description": "项目销售统计",
  6653. "moduleId": null,
  6654. "isOuterChain": 0,
  6655. "isPopup": 0,
  6656. "cache": 0,
  6657. "component": null,
  6658. "children": null,
  6659. "default": true,
  6660. "leaf": true
  6661. },
  6662. {
  6663. "id": 5338,
  6664. "menuCode": "JTGL",
  6665. "systemCode": null,
  6666. "menuName": "价套管理",
  6667. "url": "0",
  6668. "rightType": 2,
  6669. "parentCode": 5278,
  6670. "displayOrder": 0,
  6671. "isApp": 0,
  6672. "enabled": 1,
  6673. "createdBy": 3059,
  6674. "createdAt": "2020-02-20 09:39:14",
  6675. "updatedBy": 3059,
  6676. "updatedAt": "2020-02-27 09:14:51",
  6677. "perms": "flashdeliver.typrofenterprise",
  6678. "iconUrl": "",
  6679. "description": "价套管理",
  6680. "moduleId": null,
  6681. "isOuterChain": 0,
  6682. "isPopup": 0,
  6683. "cache": 0,
  6684. "component": null,
  6685. "children": null,
  6686. "default": true,
  6687. "leaf": true
  6688. },
  6689. {
  6690. "id": 5396,
  6691. "menuCode": "",
  6692. "systemCode": null,
  6693. "menuName": "商户分类管理",
  6694. "url": "",
  6695. "rightType": 2,
  6696. "parentCode": 5278,
  6697. "displayOrder": 0,
  6698. "isApp": 0,
  6699. "enabled": 1,
  6700. "createdBy": 2960,
  6701. "createdAt": "2020-08-10 16:07:35",
  6702. "updatedBy": null,
  6703. "updatedAt": null,
  6704. "perms": "flashdeliver.broad",
  6705. "iconUrl": "",
  6706. "description": "楼闪送商户分类管理页面",
  6707. "moduleId": null,
  6708. "isOuterChain": 0,
  6709. "isPopup": 0,
  6710. "cache": 0,
  6711. "component": null,
  6712. "children": null,
  6713. "default": true,
  6714. "leaf": false
  6715. },
  6716. {
  6717. "id": 5496,
  6718. "menuCode": "XXK",
  6719. "systemCode": null,
  6720. "menuName": "信息库",
  6721. "url": "",
  6722. "rightType": 2,
  6723. "parentCode": 5278,
  6724. "displayOrder": 0,
  6725. "isApp": 0,
  6726. "enabled": 1,
  6727. "createdBy": 3620,
  6728. "createdAt": "2021-05-27 17:03:00",
  6729. "updatedBy": 3620,
  6730. "updatedAt": "2021-05-28 09:31:17",
  6731. "perms": "flashdeliver.information",
  6732. "iconUrl": "",
  6733. "description": "信息库",
  6734. "moduleId": null,
  6735. "isOuterChain": 0,
  6736. "isPopup": 0,
  6737. "cache": 0,
  6738. "component": null,
  6739. "children": [
  6740. {
  6741. "id": 5497,
  6742. "menuCode": "",
  6743. "systemCode": null,
  6744. "menuName": "新增",
  6745. "url": "0",
  6746. "rightType": 3,
  6747. "parentCode": 5496,
  6748. "displayOrder": 0,
  6749. "isApp": 0,
  6750. "enabled": 1,
  6751. "createdBy": 3620,
  6752. "createdAt": "2021-05-28 09:30:24",
  6753. "updatedBy": 3620,
  6754. "updatedAt": "2021-05-28 09:37:40",
  6755. "perms": "flashdeliver.information.create",
  6756. "iconUrl": "",
  6757. "description": "",
  6758. "moduleId": null,
  6759. "isOuterChain": 0,
  6760. "isPopup": 0,
  6761. "cache": 0,
  6762. "component": null,
  6763. "children": null,
  6764. "default": true,
  6765. "leaf": true
  6766. },
  6767. {
  6768. "id": 5498,
  6769. "menuCode": "",
  6770. "systemCode": null,
  6771. "menuName": "修改",
  6772. "url": "0",
  6773. "rightType": 3,
  6774. "parentCode": 5496,
  6775. "displayOrder": 0,
  6776. "isApp": 0,
  6777. "enabled": 1,
  6778. "createdBy": 3620,
  6779. "createdAt": "2021-05-28 09:38:53",
  6780. "updatedBy": null,
  6781. "updatedAt": null,
  6782. "perms": "flashdeliver.information.update",
  6783. "iconUrl": "",
  6784. "description": "",
  6785. "moduleId": null,
  6786. "isOuterChain": 0,
  6787. "isPopup": 0,
  6788. "cache": 0,
  6789. "component": null,
  6790. "children": null,
  6791. "default": true,
  6792. "leaf": true
  6793. },
  6794. {
  6795. "id": 5499,
  6796. "menuCode": "",
  6797. "systemCode": null,
  6798. "menuName": "删除",
  6799. "url": "",
  6800. "rightType": 3,
  6801. "parentCode": 5496,
  6802. "displayOrder": 0,
  6803. "isApp": 0,
  6804. "enabled": 1,
  6805. "createdBy": 3620,
  6806. "createdAt": "2021-05-28 14:22:20",
  6807. "updatedBy": null,
  6808. "updatedAt": null,
  6809. "perms": "flashdeliver.information.delete",
  6810. "iconUrl": "",
  6811. "description": "",
  6812. "moduleId": null,
  6813. "isOuterChain": 0,
  6814. "isPopup": 0,
  6815. "cache": 0,
  6816. "component": null,
  6817. "children": null,
  6818. "default": true,
  6819. "leaf": false
  6820. }
  6821. ],
  6822. "default": true,
  6823. "leaf": false
  6824. },
  6825. {
  6826. "id": 5500,
  6827. "menuCode": "cdgl",
  6828. "systemCode": null,
  6829. "menuName": "菜单管理",
  6830. "url": "",
  6831. "rightType": 2,
  6832. "parentCode": 5278,
  6833. "displayOrder": 0,
  6834. "isApp": 0,
  6835. "enabled": 1,
  6836. "createdBy": 3620,
  6837. "createdAt": "2021-06-01 11:53:41",
  6838. "updatedBy": 3620,
  6839. "updatedAt": "2021-06-01 11:54:47",
  6840. "perms": "flashdeliver.menu",
  6841. "iconUrl": "",
  6842. "description": "",
  6843. "moduleId": null,
  6844. "isOuterChain": 0,
  6845. "isPopup": 0,
  6846. "cache": 0,
  6847. "component": null,
  6848. "children": [
  6849. {
  6850. "id": 5506,
  6851. "menuCode": "",
  6852. "systemCode": null,
  6853. "menuName": "新建",
  6854. "url": "",
  6855. "rightType": 3,
  6856. "parentCode": 5500,
  6857. "displayOrder": 0,
  6858. "isApp": 0,
  6859. "enabled": 1,
  6860. "createdBy": 3620,
  6861. "createdAt": "2021-06-03 09:54:31",
  6862. "updatedBy": null,
  6863. "updatedAt": null,
  6864. "perms": "flashdeliver.menu.create",
  6865. "iconUrl": "",
  6866. "description": "",
  6867. "moduleId": null,
  6868. "isOuterChain": 0,
  6869. "isPopup": 0,
  6870. "cache": 0,
  6871. "component": null,
  6872. "children": null,
  6873. "default": true,
  6874. "leaf": false
  6875. }
  6876. ],
  6877. "default": true,
  6878. "leaf": false
  6879. },
  6880. {
  6881. "id": 5582,
  6882. "menuCode": "flashdeliver.jiaoshuima",
  6883. "systemCode": null,
  6884. "menuName": "叫水码管理",
  6885. "url": "jiaoshuima",
  6886. "rightType": 2,
  6887. "parentCode": 5278,
  6888. "displayOrder": 0,
  6889. "isApp": 0,
  6890. "enabled": 1,
  6891. "createdBy": 3620,
  6892. "createdAt": "2021-10-22 16:32:01",
  6893. "updatedBy": 3620,
  6894. "updatedAt": "2022-02-23 15:28:18",
  6895. "perms": "flashdeliver.jiaoshuima",
  6896. "iconUrl": "",
  6897. "description": "",
  6898. "moduleId": null,
  6899. "isOuterChain": 0,
  6900. "isPopup": 0,
  6901. "cache": 0,
  6902. "component": "flashdeliver/jiaoshuima/index",
  6903. "children": null,
  6904. "default": true,
  6905. "leaf": true
  6906. },
  6907. {
  6908. "id": 5326,
  6909. "menuCode": "HSGL",
  6910. "systemCode": null,
  6911. "menuName": "回收管理",
  6912. "url": "0",
  6913. "rightType": 2,
  6914. "parentCode": 5278,
  6915. "displayOrder": 4,
  6916. "isApp": 0,
  6917. "enabled": 1,
  6918. "createdBy": 3059,
  6919. "createdAt": "2020-01-15 16:16:23",
  6920. "updatedBy": 3059,
  6921. "updatedAt": "2020-01-15 16:27:57",
  6922. "perms": "flashdeliver.recovery",
  6923. "iconUrl": "",
  6924. "description": "回收管理",
  6925. "moduleId": null,
  6926. "isOuterChain": 0,
  6927. "isPopup": 0,
  6928. "cache": 0,
  6929. "component": null,
  6930. "children": null,
  6931. "default": true,
  6932. "leaf": true
  6933. }
  6934. ],
  6935. "default": true,
  6936. "leaf": false
  6937. },
  6938. {
  6939. "id": 5281,
  6940. "menuCode": "merchant",
  6941. "systemCode": null,
  6942. "menuName": "商户管理",
  6943. "url": "",
  6944. "rightType": 1,
  6945. "parentCode": 0,
  6946. "displayOrder": 0,
  6947. "isApp": 0,
  6948. "enabled": 1,
  6949. "createdBy": 529,
  6950. "createdAt": "2019-09-16 17:52:59",
  6951. "updatedBy": null,
  6952. "updatedAt": null,
  6953. "perms": "merchant",
  6954. "iconUrl": "",
  6955. "description": "商户管理",
  6956. "moduleId": null,
  6957. "isOuterChain": 0,
  6958. "isPopup": 0,
  6959. "cache": 0,
  6960. "component": null,
  6961. "children": [
  6962. {
  6963. "id": 5282,
  6964. "menuCode": "",
  6965. "systemCode": null,
  6966. "menuName": "配送员管理",
  6967. "url": "",
  6968. "rightType": 2,
  6969. "parentCode": 5281,
  6970. "displayOrder": 0,
  6971. "isApp": 0,
  6972. "enabled": 1,
  6973. "createdBy": 529,
  6974. "createdAt": "2019-09-16 17:55:16",
  6975. "updatedBy": null,
  6976. "updatedAt": null,
  6977. "perms": "merchant.staff",
  6978. "iconUrl": "",
  6979. "description": "商户管理-配送员管理",
  6980. "moduleId": null,
  6981. "isOuterChain": 0,
  6982. "isPopup": 0,
  6983. "cache": 0,
  6984. "component": null,
  6985. "children": [
  6986. {
  6987. "id": 5284,
  6988. "menuCode": "",
  6989. "systemCode": null,
  6990. "menuName": "配送员新增可否展示项目选项权限",
  6991. "url": "0",
  6992. "rightType": 3,
  6993. "parentCode": 5282,
  6994. "displayOrder": 0,
  6995. "isApp": 0,
  6996. "enabled": 1,
  6997. "createdBy": 529,
  6998. "createdAt": "2019-09-16 18:00:43",
  6999. "updatedBy": null,
  7000. "updatedAt": null,
  7001. "perms": "merchant.staff.project",
  7002. "iconUrl": "",
  7003. "description": "配送员新增可否展示项目选项权限",
  7004. "moduleId": null,
  7005. "isOuterChain": 0,
  7006. "isPopup": 0,
  7007. "cache": 0,
  7008. "component": null,
  7009. "children": null,
  7010. "default": true,
  7011. "leaf": true
  7012. },
  7013. {
  7014. "id": 5285,
  7015. "menuCode": "",
  7016. "systemCode": null,
  7017. "menuName": "配送员新增可否展示商户选项权限",
  7018. "url": "0",
  7019. "rightType": 3,
  7020. "parentCode": 5282,
  7021. "displayOrder": 0,
  7022. "isApp": 0,
  7023. "enabled": 1,
  7024. "createdBy": 529,
  7025. "createdAt": "2019-09-16 18:01:29",
  7026. "updatedBy": null,
  7027. "updatedAt": null,
  7028. "perms": "merchant.staff.merchant",
  7029. "iconUrl": "",
  7030. "description": "配送员新增可否展示商户选项权限",
  7031. "moduleId": null,
  7032. "isOuterChain": 0,
  7033. "isPopup": 0,
  7034. "cache": 0,
  7035. "component": null,
  7036. "children": null,
  7037. "default": true,
  7038. "leaf": true
  7039. }
  7040. ],
  7041. "default": true,
  7042. "leaf": false
  7043. },
  7044. {
  7045. "id": 5386,
  7046. "menuCode": "",
  7047. "systemCode": null,
  7048. "menuName": "自动打印单配置",
  7049. "url": "",
  7050. "rightType": 2,
  7051. "parentCode": 5281,
  7052. "displayOrder": 0,
  7053. "isApp": 0,
  7054. "enabled": 1,
  7055. "createdBy": 2960,
  7056. "createdAt": "2020-05-28 14:19:41",
  7057. "updatedBy": null,
  7058. "updatedAt": null,
  7059. "perms": "merchant.print",
  7060. "iconUrl": "",
  7061. "description": "",
  7062. "moduleId": null,
  7063. "isOuterChain": 0,
  7064. "isPopup": 0,
  7065. "cache": 0,
  7066. "component": null,
  7067. "children": [
  7068. {
  7069. "id": 5387,
  7070. "menuCode": "",
  7071. "systemCode": null,
  7072. "menuName": "编辑",
  7073. "url": "0",
  7074. "rightType": 3,
  7075. "parentCode": 5386,
  7076. "displayOrder": 0,
  7077. "isApp": 0,
  7078. "enabled": 1,
  7079. "createdBy": 2960,
  7080. "createdAt": "2020-05-28 14:21:08",
  7081. "updatedBy": 2960,
  7082. "updatedAt": "2020-05-28 14:59:00",
  7083. "perms": "print.edit",
  7084. "iconUrl": "",
  7085. "description": "",
  7086. "moduleId": null,
  7087. "isOuterChain": 0,
  7088. "isPopup": 0,
  7089. "cache": 0,
  7090. "component": null,
  7091. "children": null,
  7092. "default": true,
  7093. "leaf": true
  7094. },
  7095. {
  7096. "id": 5388,
  7097. "menuCode": "",
  7098. "systemCode": null,
  7099. "menuName": "禁用启用",
  7100. "url": "0",
  7101. "rightType": 3,
  7102. "parentCode": 5386,
  7103. "displayOrder": 0,
  7104. "isApp": 0,
  7105. "enabled": 1,
  7106. "createdBy": 2960,
  7107. "createdAt": "2020-05-28 14:22:34",
  7108. "updatedBy": 2960,
  7109. "updatedAt": "2020-05-28 14:59:35",
  7110. "perms": "print.enable",
  7111. "iconUrl": "",
  7112. "description": "",
  7113. "moduleId": null,
  7114. "isOuterChain": 0,
  7115. "isPopup": 0,
  7116. "cache": 0,
  7117. "component": null,
  7118. "children": null,
  7119. "default": true,
  7120. "leaf": true
  7121. },
  7122. {
  7123. "id": 5389,
  7124. "menuCode": "",
  7125. "systemCode": null,
  7126. "menuName": "删除",
  7127. "url": "0",
  7128. "rightType": 3,
  7129. "parentCode": 5386,
  7130. "displayOrder": 0,
  7131. "isApp": 0,
  7132. "enabled": 1,
  7133. "createdBy": 2960,
  7134. "createdAt": "2020-05-28 14:23:11",
  7135. "updatedBy": 2960,
  7136. "updatedAt": "2020-05-28 14:59:58",
  7137. "perms": "print.delete",
  7138. "iconUrl": "",
  7139. "description": "",
  7140. "moduleId": null,
  7141. "isOuterChain": 0,
  7142. "isPopup": 0,
  7143. "cache": 0,
  7144. "component": null,
  7145. "children": null,
  7146. "default": true,
  7147. "leaf": true
  7148. },
  7149. {
  7150. "id": 5390,
  7151. "menuCode": "",
  7152. "systemCode": null,
  7153. "menuName": "新增权限标识",
  7154. "url": "",
  7155. "rightType": 3,
  7156. "parentCode": 5386,
  7157. "displayOrder": 0,
  7158. "isApp": 0,
  7159. "enabled": 1,
  7160. "createdBy": 2960,
  7161. "createdAt": "2020-05-28 16:59:17",
  7162. "updatedBy": null,
  7163. "updatedAt": null,
  7164. "perms": "print.add",
  7165. "iconUrl": "",
  7166. "description": "",
  7167. "moduleId": null,
  7168. "isOuterChain": 0,
  7169. "isPopup": 0,
  7170. "cache": 0,
  7171. "component": null,
  7172. "children": null,
  7173. "default": true,
  7174. "leaf": false
  7175. }
  7176. ],
  7177. "default": true,
  7178. "leaf": false
  7179. },
  7180. {
  7181. "id": 5510,
  7182. "menuCode": "",
  7183. "systemCode": null,
  7184. "menuName": "钥匙柜管理",
  7185. "url": "",
  7186. "rightType": 2,
  7187. "parentCode": 5281,
  7188. "displayOrder": 0,
  7189. "isApp": 0,
  7190. "enabled": 1,
  7191. "createdBy": 3071,
  7192. "createdAt": "2021-06-10 15:03:16",
  7193. "updatedBy": null,
  7194. "updatedAt": null,
  7195. "perms": "merchant.keyCabinet",
  7196. "iconUrl": "",
  7197. "description": "",
  7198. "moduleId": null,
  7199. "isOuterChain": 0,
  7200. "isPopup": 0,
  7201. "cache": 0,
  7202. "component": null,
  7203. "children": null,
  7204. "default": true,
  7205. "leaf": false
  7206. },
  7207. {
  7208. "id": 5283,
  7209. "menuCode": "",
  7210. "systemCode": null,
  7211. "menuName": "商户信息管理",
  7212. "url": "0",
  7213. "rightType": 2,
  7214. "parentCode": 5281,
  7215. "displayOrder": 25,
  7216. "isApp": 0,
  7217. "enabled": 1,
  7218. "createdBy": 529,
  7219. "createdAt": "2019-09-16 17:57:39",
  7220. "updatedBy": null,
  7221. "updatedAt": null,
  7222. "perms": "merchant.info",
  7223. "iconUrl": "",
  7224. "description": "商户管理-商户信息管理",
  7225. "moduleId": null,
  7226. "isOuterChain": 0,
  7227. "isPopup": 0,
  7228. "cache": 0,
  7229. "component": null,
  7230. "children": [
  7231. {
  7232. "id": 5302,
  7233. "menuCode": "",
  7234. "systemCode": null,
  7235. "menuName": "商户信息新增可否展示权限",
  7236. "url": "0",
  7237. "rightType": 3,
  7238. "parentCode": 5283,
  7239. "displayOrder": 0,
  7240. "isApp": 0,
  7241. "enabled": 1,
  7242. "createdBy": 529,
  7243. "createdAt": "2019-10-28 14:29:48",
  7244. "updatedBy": null,
  7245. "updatedAt": null,
  7246. "perms": "merchant.add",
  7247. "iconUrl": "",
  7248. "description": "商户信息新增可否展示权限",
  7249. "moduleId": null,
  7250. "isOuterChain": 0,
  7251. "isPopup": 0,
  7252. "cache": 0,
  7253. "component": null,
  7254. "children": null,
  7255. "default": true,
  7256. "leaf": true
  7257. },
  7258. {
  7259. "id": 5305,
  7260. "menuCode": "",
  7261. "systemCode": null,
  7262. "menuName": "商户信息管理编辑按钮权限",
  7263. "url": "",
  7264. "rightType": 3,
  7265. "parentCode": 5283,
  7266. "displayOrder": 0,
  7267. "isApp": 0,
  7268. "enabled": 1,
  7269. "createdBy": 529,
  7270. "createdAt": "2019-11-05 14:30:32",
  7271. "updatedBy": null,
  7272. "updatedAt": null,
  7273. "perms": "merchant.edit",
  7274. "iconUrl": "",
  7275. "description": "商户信息管理编辑按钮权限控制",
  7276. "moduleId": null,
  7277. "isOuterChain": 0,
  7278. "isPopup": 0,
  7279. "cache": 0,
  7280. "component": null,
  7281. "children": null,
  7282. "default": true,
  7283. "leaf": false
  7284. },
  7285. {
  7286. "id": 5306,
  7287. "menuCode": "",
  7288. "systemCode": null,
  7289. "menuName": "商户信息管理禁用按钮权限",
  7290. "url": "",
  7291. "rightType": 3,
  7292. "parentCode": 5283,
  7293. "displayOrder": 0,
  7294. "isApp": 0,
  7295. "enabled": 1,
  7296. "createdBy": 529,
  7297. "createdAt": "2019-11-05 14:32:35",
  7298. "updatedBy": null,
  7299. "updatedAt": null,
  7300. "perms": "merchant.prohibit",
  7301. "iconUrl": "",
  7302. "description": "商户信息管理禁用按钮权限控制",
  7303. "moduleId": null,
  7304. "isOuterChain": 0,
  7305. "isPopup": 0,
  7306. "cache": 0,
  7307. "component": null,
  7308. "children": null,
  7309. "default": true,
  7310. "leaf": false
  7311. },
  7312. {
  7313. "id": 5307,
  7314. "menuCode": "",
  7315. "systemCode": null,
  7316. "menuName": "商户信息管理启用按钮权限",
  7317. "url": "",
  7318. "rightType": 3,
  7319. "parentCode": 5283,
  7320. "displayOrder": 0,
  7321. "isApp": 0,
  7322. "enabled": 1,
  7323. "createdBy": 529,
  7324. "createdAt": "2019-11-05 14:33:59",
  7325. "updatedBy": null,
  7326. "updatedAt": null,
  7327. "perms": "merchant.enable",
  7328. "iconUrl": "",
  7329. "description": "商户信息管理启用按钮权限控制",
  7330. "moduleId": null,
  7331. "isOuterChain": 0,
  7332. "isPopup": 0,
  7333. "cache": 0,
  7334. "component": null,
  7335. "children": null,
  7336. "default": true,
  7337. "leaf": false
  7338. }
  7339. ],
  7340. "default": true,
  7341. "leaf": true
  7342. }
  7343. ],
  7344. "default": true,
  7345. "leaf": false
  7346. },
  7347. {
  7348. "id": 5310,
  7349. "menuCode": "",
  7350. "systemCode": null,
  7351. "menuName": "运营中心",
  7352. "url": "",
  7353. "rightType": 1,
  7354. "parentCode": 0,
  7355. "displayOrder": 0,
  7356. "isApp": 0,
  7357. "enabled": 1,
  7358. "createdBy": 2915,
  7359. "createdAt": "2019-11-29 14:53:05",
  7360. "updatedBy": 716,
  7361. "updatedAt": "2019-12-04 10:28:00",
  7362. "perms": "pc:system",
  7363. "iconUrl": "",
  7364. "description": "",
  7365. "moduleId": null,
  7366. "isOuterChain": 0,
  7367. "isPopup": 0,
  7368. "cache": 0,
  7369. "component": null,
  7370. "children": [
  7371. {
  7372. "id": 5311,
  7373. "menuCode": "",
  7374. "systemCode": null,
  7375. "menuName": "运营商信息配置",
  7376. "url": "",
  7377. "rightType": 2,
  7378. "parentCode": 5310,
  7379. "displayOrder": 0,
  7380. "isApp": 0,
  7381. "enabled": 1,
  7382. "createdBy": 716,
  7383. "createdAt": "2019-11-29 14:54:28",
  7384. "updatedBy": null,
  7385. "updatedAt": null,
  7386. "perms": "operationInfoConfigindex",
  7387. "iconUrl": "",
  7388. "description": "",
  7389. "moduleId": null,
  7390. "isOuterChain": 0,
  7391. "isPopup": 0,
  7392. "cache": 0,
  7393. "component": null,
  7394. "children": null,
  7395. "default": true,
  7396. "leaf": false
  7397. },
  7398. {
  7399. "id": 5312,
  7400. "menuCode": "",
  7401. "systemCode": null,
  7402. "menuName": "运营权限管理",
  7403. "url": "0",
  7404. "rightType": 2,
  7405. "parentCode": 5310,
  7406. "displayOrder": 0,
  7407. "isApp": 0,
  7408. "enabled": 1,
  7409. "createdBy": 716,
  7410. "createdAt": "2019-11-29 14:54:51",
  7411. "updatedBy": null,
  7412. "updatedAt": null,
  7413. "perms": "operationPowerIndex",
  7414. "iconUrl": "",
  7415. "description": "",
  7416. "moduleId": null,
  7417. "isOuterChain": 0,
  7418. "isPopup": 0,
  7419. "cache": 0,
  7420. "component": null,
  7421. "children": null,
  7422. "default": true,
  7423. "leaf": true
  7424. },
  7425. {
  7426. "id": 5313,
  7427. "menuCode": "",
  7428. "systemCode": null,
  7429. "menuName": "渠道关联管理",
  7430. "url": "0",
  7431. "rightType": 2,
  7432. "parentCode": 5310,
  7433. "displayOrder": 0,
  7434. "isApp": 0,
  7435. "enabled": 1,
  7436. "createdBy": 716,
  7437. "createdAt": "2019-11-29 14:55:16",
  7438. "updatedBy": null,
  7439. "updatedAt": null,
  7440. "perms": "businessManagementIndex",
  7441. "iconUrl": "",
  7442. "description": "",
  7443. "moduleId": null,
  7444. "isOuterChain": 0,
  7445. "isPopup": 0,
  7446. "cache": 0,
  7447. "component": null,
  7448. "children": null,
  7449. "default": true,
  7450. "leaf": true
  7451. },
  7452. {
  7453. "id": 5315,
  7454. "menuCode": "",
  7455. "systemCode": null,
  7456. "menuName": "统一订单",
  7457. "url": "",
  7458. "rightType": 2,
  7459. "parentCode": 5310,
  7460. "displayOrder": 0,
  7461. "isApp": 0,
  7462. "enabled": 1,
  7463. "createdBy": 716,
  7464. "createdAt": "2019-12-12 10:20:41",
  7465. "updatedBy": null,
  7466. "updatedAt": null,
  7467. "perms": "unifiedOrderIndex",
  7468. "iconUrl": "",
  7469. "description": "",
  7470. "moduleId": null,
  7471. "isOuterChain": 0,
  7472. "isPopup": 0,
  7473. "cache": 0,
  7474. "component": null,
  7475. "children": null,
  7476. "default": true,
  7477. "leaf": false
  7478. },
  7479. {
  7480. "id": 5409,
  7481. "menuCode": "",
  7482. "systemCode": null,
  7483. "menuName": "集团关联管理",
  7484. "url": "",
  7485. "rightType": 2,
  7486. "parentCode": 5310,
  7487. "displayOrder": 0,
  7488. "isApp": 0,
  7489. "enabled": 1,
  7490. "createdBy": 3071,
  7491. "createdAt": "2020-10-09 11:53:59",
  7492. "updatedBy": null,
  7493. "updatedAt": null,
  7494. "perms": "groupManagementIndex",
  7495. "iconUrl": "",
  7496. "description": "",
  7497. "moduleId": null,
  7498. "isOuterChain": 0,
  7499. "isPopup": 0,
  7500. "cache": 0,
  7501. "component": null,
  7502. "children": [
  7503. {
  7504. "id": 5413,
  7505. "menuCode": "operation",
  7506. "systemCode": null,
  7507. "menuName": "新增/修改/删除",
  7508. "url": "",
  7509. "rightType": 3,
  7510. "parentCode": 5409,
  7511. "displayOrder": 0,
  7512. "isApp": 0,
  7513. "enabled": 1,
  7514. "createdBy": 3071,
  7515. "createdAt": "2020-10-20 11:37:01",
  7516. "updatedBy": 3071,
  7517. "updatedAt": "2020-10-20 11:39:12",
  7518. "perms": "system.groupManagement.operation",
  7519. "iconUrl": "",
  7520. "description": "",
  7521. "moduleId": null,
  7522. "isOuterChain": 0,
  7523. "isPopup": 0,
  7524. "cache": 0,
  7525. "component": null,
  7526. "children": null,
  7527. "default": true,
  7528. "leaf": false
  7529. },
  7530. {
  7531. "id": 5414,
  7532. "menuCode": "labelManage",
  7533. "systemCode": null,
  7534. "menuName": "集团标签管理",
  7535. "url": "",
  7536. "rightType": 3,
  7537. "parentCode": 5409,
  7538. "displayOrder": 0,
  7539. "isApp": 0,
  7540. "enabled": 1,
  7541. "createdBy": 3071,
  7542. "createdAt": "2020-10-20 11:41:29",
  7543. "updatedBy": null,
  7544. "updatedAt": null,
  7545. "perms": "system.groupManagement.labelManage",
  7546. "iconUrl": "",
  7547. "description": "",
  7548. "moduleId": null,
  7549. "isOuterChain": 0,
  7550. "isPopup": 0,
  7551. "cache": 0,
  7552. "component": null,
  7553. "children": null,
  7554. "default": true,
  7555. "leaf": false
  7556. }
  7557. ],
  7558. "default": true,
  7559. "leaf": false
  7560. }
  7561. ],
  7562. "default": true,
  7563. "leaf": false
  7564. },
  7565. {
  7566. "id": 5334,
  7567. "menuCode": "",
  7568. "systemCode": null,
  7569. "menuName": "电子通行证",
  7570. "url": "",
  7571. "rightType": 1,
  7572. "parentCode": 0,
  7573. "displayOrder": 0,
  7574. "isApp": 0,
  7575. "enabled": 1,
  7576. "createdBy": 716,
  7577. "createdAt": "2020-02-19 15:28:26",
  7578. "updatedBy": 1,
  7579. "updatedAt": "2020-02-20 10:51:10",
  7580. "perms": "",
  7581. "iconUrl": "",
  7582. "description": "",
  7583. "moduleId": null,
  7584. "isOuterChain": 0,
  7585. "isPopup": 0,
  7586. "cache": 0,
  7587. "component": null,
  7588. "children": [
  7589. {
  7590. "id": 5335,
  7591. "menuCode": "",
  7592. "systemCode": null,
  7593. "menuName": "申请管理",
  7594. "url": "",
  7595. "rightType": 2,
  7596. "parentCode": 5334,
  7597. "displayOrder": 0,
  7598. "isApp": 0,
  7599. "enabled": 1,
  7600. "createdBy": 716,
  7601. "createdAt": "2020-02-19 15:28:53",
  7602. "updatedBy": null,
  7603. "updatedAt": null,
  7604. "perms": "pc:apply-release:manage",
  7605. "iconUrl": "",
  7606. "description": "",
  7607. "moduleId": null,
  7608. "isOuterChain": 0,
  7609. "isPopup": 0,
  7610. "cache": 0,
  7611. "component": null,
  7612. "children": null,
  7613. "default": true,
  7614. "leaf": false
  7615. },
  7616. {
  7617. "id": 5336,
  7618. "menuCode": "",
  7619. "systemCode": null,
  7620. "menuName": "通行统计",
  7621. "url": "",
  7622. "rightType": 2,
  7623. "parentCode": 5334,
  7624. "displayOrder": 0,
  7625. "isApp": 0,
  7626. "enabled": 1,
  7627. "createdBy": 716,
  7628. "createdAt": "2020-02-19 15:30:23",
  7629. "updatedBy": null,
  7630. "updatedAt": null,
  7631. "perms": "pc:apply-release:statics",
  7632. "iconUrl": "",
  7633. "description": "",
  7634. "moduleId": null,
  7635. "isOuterChain": 0,
  7636. "isPopup": 0,
  7637. "cache": 0,
  7638. "component": null,
  7639. "children": null,
  7640. "default": true,
  7641. "leaf": false
  7642. },
  7643. {
  7644. "id": 5337,
  7645. "menuCode": "",
  7646. "systemCode": null,
  7647. "menuName": "通行记录查询",
  7648. "url": "0",
  7649. "rightType": 2,
  7650. "parentCode": 5334,
  7651. "displayOrder": 0,
  7652. "isApp": 0,
  7653. "enabled": 1,
  7654. "createdBy": 716,
  7655. "createdAt": "2020-02-19 15:30:53",
  7656. "updatedBy": null,
  7657. "updatedAt": null,
  7658. "perms": "pc:apply-release:record",
  7659. "iconUrl": "",
  7660. "description": "",
  7661. "moduleId": null,
  7662. "isOuterChain": 0,
  7663. "isPopup": 0,
  7664. "cache": 0,
  7665. "component": null,
  7666. "children": null,
  7667. "default": true,
  7668. "leaf": true
  7669. }
  7670. ],
  7671. "default": true,
  7672. "leaf": false
  7673. },
  7674. {
  7675. "id": 5351,
  7676. "menuCode": "swzl",
  7677. "systemCode": null,
  7678. "menuName": "失物招领",
  7679. "url": "",
  7680. "rightType": 2,
  7681. "parentCode": 0,
  7682. "displayOrder": 0,
  7683. "isApp": 0,
  7684. "enabled": 1,
  7685. "createdBy": 2,
  7686. "createdAt": "2020-04-02 11:53:38",
  7687. "updatedBy": 2977,
  7688. "updatedAt": "2020-06-12 15:18:49",
  7689. "perms": "pc.lost",
  7690. "iconUrl": "",
  7691. "description": "",
  7692. "moduleId": null,
  7693. "isOuterChain": 0,
  7694. "isPopup": 0,
  7695. "cache": 0,
  7696. "component": null,
  7697. "children": [
  7698. {
  7699. "id": 5369,
  7700. "menuCode": "",
  7701. "systemCode": null,
  7702. "menuName": "失物招领",
  7703. "url": "0",
  7704. "rightType": 2,
  7705. "parentCode": 5351,
  7706. "displayOrder": 0,
  7707. "isApp": 0,
  7708. "enabled": 1,
  7709. "createdBy": 3040,
  7710. "createdAt": "2020-04-03 16:04:14",
  7711. "updatedBy": null,
  7712. "updatedAt": null,
  7713. "perms": "pc:lost:AndFound",
  7714. "iconUrl": "",
  7715. "description": "",
  7716. "moduleId": null,
  7717. "isOuterChain": 0,
  7718. "isPopup": 0,
  7719. "cache": 0,
  7720. "component": null,
  7721. "children": [
  7722. {
  7723. "id": 5565,
  7724. "menuCode": "pc:lost:AndFound:audit",
  7725. "systemCode": null,
  7726. "menuName": "审核",
  7727. "url": "",
  7728. "rightType": 3,
  7729. "parentCode": 5369,
  7730. "displayOrder": 0,
  7731. "isApp": 0,
  7732. "enabled": 1,
  7733. "createdBy": 3598,
  7734. "createdAt": "2021-08-18 15:33:05",
  7735. "updatedBy": null,
  7736. "updatedAt": null,
  7737. "perms": "pc:lost:AndFound:audit",
  7738. "iconUrl": "",
  7739. "description": "失物招领审核权限",
  7740. "moduleId": null,
  7741. "isOuterChain": 0,
  7742. "isPopup": 0,
  7743. "cache": 0,
  7744. "component": null,
  7745. "children": null,
  7746. "default": true,
  7747. "leaf": false
  7748. },
  7749. {
  7750. "id": 5570,
  7751. "menuCode": "pc:lost:AndFound:setting",
  7752. "systemCode": null,
  7753. "menuName": "基础设置",
  7754. "url": "0",
  7755. "rightType": 3,
  7756. "parentCode": 5369,
  7757. "displayOrder": 0,
  7758. "isApp": 0,
  7759. "enabled": 1,
  7760. "createdBy": 3620,
  7761. "createdAt": "2021-08-20 15:28:05",
  7762. "updatedBy": 3620,
  7763. "updatedAt": "2021-08-20 15:48:45",
  7764. "perms": "pc:lost:AndFound:setting",
  7765. "iconUrl": "",
  7766. "description": "基础设置权限",
  7767. "moduleId": null,
  7768. "isOuterChain": 0,
  7769. "isPopup": 0,
  7770. "cache": 0,
  7771. "component": null,
  7772. "children": null,
  7773. "default": true,
  7774. "leaf": true
  7775. }
  7776. ],
  7777. "default": true,
  7778. "leaf": true
  7779. }
  7780. ],
  7781. "default": true,
  7782. "leaf": false
  7783. },
  7784. {
  7785. "id": 5352,
  7786. "menuCode": "ysgl",
  7787. "systemCode": null,
  7788. "menuName": "钥匙管理",
  7789. "url": "",
  7790. "rightType": 2,
  7791. "parentCode": 0,
  7792. "displayOrder": 0,
  7793. "isApp": 0,
  7794. "enabled": 1,
  7795. "createdBy": 2,
  7796. "createdAt": "2020-04-02 11:54:08",
  7797. "updatedBy": 529,
  7798. "updatedAt": "2020-06-08 14:58:04",
  7799. "perms": "pc.key",
  7800. "iconUrl": "",
  7801. "description": "",
  7802. "moduleId": null,
  7803. "isOuterChain": 0,
  7804. "isPopup": 0,
  7805. "cache": 0,
  7806. "component": null,
  7807. "children": [
  7808. {
  7809. "id": 5354,
  7810. "menuCode": "",
  7811. "systemCode": null,
  7812. "menuName": "钥匙管理",
  7813. "url": "",
  7814. "rightType": 2,
  7815. "parentCode": 5352,
  7816. "displayOrder": 0,
  7817. "isApp": 0,
  7818. "enabled": 1,
  7819. "createdBy": 3040,
  7820. "createdAt": "2020-04-02 18:23:42",
  7821. "updatedBy": 3040,
  7822. "updatedAt": "2020-04-02 18:35:32",
  7823. "perms": "pc.key:manager",
  7824. "iconUrl": "",
  7825. "description": "",
  7826. "moduleId": null,
  7827. "isOuterChain": 0,
  7828. "isPopup": 0,
  7829. "cache": 0,
  7830. "component": null,
  7831. "children": null,
  7832. "default": true,
  7833. "leaf": false
  7834. },
  7835. {
  7836. "id": 5356,
  7837. "menuCode": "",
  7838. "systemCode": null,
  7839. "menuName": "基础配置",
  7840. "url": "",
  7841. "rightType": 2,
  7842. "parentCode": 5352,
  7843. "displayOrder": 0,
  7844. "isApp": 0,
  7845. "enabled": 1,
  7846. "createdBy": 3040,
  7847. "createdAt": "2020-04-02 18:39:13",
  7848. "updatedBy": null,
  7849. "updatedAt": null,
  7850. "perms": "pc.key:baseConfig",
  7851. "iconUrl": "",
  7852. "description": "",
  7853. "moduleId": null,
  7854. "isOuterChain": 0,
  7855. "isPopup": 0,
  7856. "cache": 0,
  7857. "component": null,
  7858. "children": null,
  7859. "default": true,
  7860. "leaf": false
  7861. },
  7862. {
  7863. "id": 5357,
  7864. "menuCode": "",
  7865. "systemCode": null,
  7866. "menuName": "钥匙配置",
  7867. "url": "",
  7868. "rightType": 2,
  7869. "parentCode": 5352,
  7870. "displayOrder": 0,
  7871. "isApp": 0,
  7872. "enabled": 1,
  7873. "createdBy": 3040,
  7874. "createdAt": "2020-04-02 18:40:22",
  7875. "updatedBy": null,
  7876. "updatedAt": null,
  7877. "perms": "pc.key:keyConfig",
  7878. "iconUrl": "",
  7879. "description": "",
  7880. "moduleId": null,
  7881. "isOuterChain": 0,
  7882. "isPopup": 0,
  7883. "cache": 0,
  7884. "component": null,
  7885. "children": null,
  7886. "default": true,
  7887. "leaf": false
  7888. },
  7889. {
  7890. "id": 5363,
  7891. "menuCode": "",
  7892. "systemCode": null,
  7893. "menuName": "申请管理",
  7894. "url": "",
  7895. "rightType": 2,
  7896. "parentCode": 5352,
  7897. "displayOrder": 0,
  7898. "isApp": 0,
  7899. "enabled": 1,
  7900. "createdBy": 3040,
  7901. "createdAt": "2020-04-03 15:23:55",
  7902. "updatedBy": 3040,
  7903. "updatedAt": "2020-04-03 15:40:49",
  7904. "perms": "pc.key:Apply",
  7905. "iconUrl": "",
  7906. "description": "",
  7907. "moduleId": null,
  7908. "isOuterChain": 0,
  7909. "isPopup": 0,
  7910. "cache": 0,
  7911. "component": null,
  7912. "children": null,
  7913. "default": true,
  7914. "leaf": false
  7915. }
  7916. ],
  7917. "default": true,
  7918. "leaf": false
  7919. },
  7920. {
  7921. "id": 5353,
  7922. "menuCode": "tsjy",
  7923. "systemCode": null,
  7924. "menuName": "投诉建议",
  7925. "url": "",
  7926. "rightType": 1,
  7927. "parentCode": 0,
  7928. "displayOrder": 0,
  7929. "isApp": 0,
  7930. "enabled": 1,
  7931. "createdBy": 2,
  7932. "createdAt": "2020-04-02 11:54:33",
  7933. "updatedBy": null,
  7934. "updatedAt": null,
  7935. "perms": "",
  7936. "iconUrl": "",
  7937. "description": "",
  7938. "moduleId": null,
  7939. "isOuterChain": 0,
  7940. "isPopup": 0,
  7941. "cache": 0,
  7942. "component": null,
  7943. "children": [
  7944. {
  7945. "id": 5372,
  7946. "menuCode": "",
  7947. "systemCode": null,
  7948. "menuName": "信息管理",
  7949. "url": "0",
  7950. "rightType": 2,
  7951. "parentCode": 5353,
  7952. "displayOrder": 0,
  7953. "isApp": 0,
  7954. "enabled": 1,
  7955. "createdBy": 3040,
  7956. "createdAt": "2020-04-03 16:21:40",
  7957. "updatedBy": null,
  7958. "updatedAt": null,
  7959. "perms": "pc.tousujiany.infoManager",
  7960. "iconUrl": "",
  7961. "description": "",
  7962. "moduleId": null,
  7963. "isOuterChain": 0,
  7964. "isPopup": 0,
  7965. "cache": 0,
  7966. "component": null,
  7967. "children": [
  7968. {
  7969. "id": 5374,
  7970. "menuCode": "add",
  7971. "systemCode": null,
  7972. "menuName": "导出/回复/完结",
  7973. "url": "0",
  7974. "rightType": 3,
  7975. "parentCode": 5372,
  7976. "displayOrder": 0,
  7977. "isApp": 0,
  7978. "enabled": 1,
  7979. "createdBy": 3040,
  7980. "createdAt": "2020-04-09 09:35:01",
  7981. "updatedBy": 3040,
  7982. "updatedAt": "2020-04-09 09:40:57",
  7983. "perms": "tousujiany.infoManager.operate",
  7984. "iconUrl": "",
  7985. "description": "",
  7986. "moduleId": null,
  7987. "isOuterChain": 0,
  7988. "isPopup": 0,
  7989. "cache": 0,
  7990. "component": null,
  7991. "children": null,
  7992. "default": true,
  7993. "leaf": true
  7994. }
  7995. ],
  7996. "default": true,
  7997. "leaf": true
  7998. },
  7999. {
  8000. "id": 5373,
  8001. "menuCode": "",
  8002. "systemCode": null,
  8003. "menuName": "基础配置",
  8004. "url": "0",
  8005. "rightType": 2,
  8006. "parentCode": 5353,
  8007. "displayOrder": 0,
  8008. "isApp": 0,
  8009. "enabled": 1,
  8010. "createdBy": 3040,
  8011. "createdAt": "2020-04-03 16:22:06",
  8012. "updatedBy": null,
  8013. "updatedAt": null,
  8014. "perms": "pc.tousujiany.baseConfig",
  8015. "iconUrl": "",
  8016. "description": "",
  8017. "moduleId": null,
  8018. "isOuterChain": 0,
  8019. "isPopup": 0,
  8020. "cache": 0,
  8021. "component": null,
  8022. "children": [
  8023. {
  8024. "id": 5375,
  8025. "menuCode": "operate",
  8026. "systemCode": null,
  8027. "menuName": "类型配置操作",
  8028. "url": "",
  8029. "rightType": 3,
  8030. "parentCode": 5373,
  8031. "displayOrder": 0,
  8032. "isApp": 0,
  8033. "enabled": 1,
  8034. "createdBy": 3196,
  8035. "createdAt": "2020-04-09 10:02:48",
  8036. "updatedBy": 3196,
  8037. "updatedAt": "2020-04-09 10:10:44",
  8038. "perms": "tousujiany.typeConfig.operate",
  8039. "iconUrl": "",
  8040. "description": "",
  8041. "moduleId": null,
  8042. "isOuterChain": 0,
  8043. "isPopup": 0,
  8044. "cache": 0,
  8045. "component": null,
  8046. "children": null,
  8047. "default": true,
  8048. "leaf": false
  8049. },
  8050. {
  8051. "id": 5376,
  8052. "menuCode": "operate",
  8053. "systemCode": null,
  8054. "menuName": "分类配置操作",
  8055. "url": "",
  8056. "rightType": 3,
  8057. "parentCode": 5373,
  8058. "displayOrder": 0,
  8059. "isApp": 0,
  8060. "enabled": 1,
  8061. "createdBy": 3196,
  8062. "createdAt": "2020-04-09 10:09:55",
  8063. "updatedBy": null,
  8064. "updatedAt": null,
  8065. "perms": "tousujiany.clsaaConfig.operate",
  8066. "iconUrl": "",
  8067. "description": "",
  8068. "moduleId": null,
  8069. "isOuterChain": 0,
  8070. "isPopup": 0,
  8071. "cache": 0,
  8072. "component": null,
  8073. "children": null,
  8074. "default": true,
  8075. "leaf": false
  8076. },
  8077. {
  8078. "id": 5377,
  8079. "menuCode": "",
  8080. "systemCode": null,
  8081. "menuName": "常见问题操作",
  8082. "url": "",
  8083. "rightType": 3,
  8084. "parentCode": 5373,
  8085. "displayOrder": 0,
  8086. "isApp": 0,
  8087. "enabled": 1,
  8088. "createdBy": 3196,
  8089. "createdAt": "2020-04-09 10:11:19",
  8090. "updatedBy": null,
  8091. "updatedAt": null,
  8092. "perms": "tousujiany.commonQuestion.operate",
  8093. "iconUrl": "",
  8094. "description": "",
  8095. "moduleId": null,
  8096. "isOuterChain": 0,
  8097. "isPopup": 0,
  8098. "cache": 0,
  8099. "component": null,
  8100. "children": null,
  8101. "default": true,
  8102. "leaf": false
  8103. }
  8104. ],
  8105. "default": true,
  8106. "leaf": true
  8107. }
  8108. ],
  8109. "default": true,
  8110. "leaf": false
  8111. },
  8112. {
  8113. "id": 5358,
  8114. "menuCode": "",
  8115. "systemCode": null,
  8116. "menuName": "表单登记",
  8117. "url": "",
  8118. "rightType": 2,
  8119. "parentCode": 0,
  8120. "displayOrder": 0,
  8121. "isApp": 0,
  8122. "enabled": 1,
  8123. "createdBy": 3040,
  8124. "createdAt": "2020-04-02 18:59:23",
  8125. "updatedBy": 2977,
  8126. "updatedAt": "2020-06-12 15:16:40",
  8127. "perms": "pc.form",
  8128. "iconUrl": "",
  8129. "description": "表单登记",
  8130. "moduleId": null,
  8131. "isOuterChain": 0,
  8132. "isPopup": 0,
  8133. "cache": 0,
  8134. "component": null,
  8135. "children": [
  8136. {
  8137. "id": 5359,
  8138. "menuCode": "",
  8139. "systemCode": null,
  8140. "menuName": "登记表登记纪录",
  8141. "url": "",
  8142. "rightType": 2,
  8143. "parentCode": 5358,
  8144. "displayOrder": 0,
  8145. "isApp": 0,
  8146. "enabled": 1,
  8147. "createdBy": 3040,
  8148. "createdAt": "2020-04-02 19:01:09",
  8149. "updatedBy": null,
  8150. "updatedAt": null,
  8151. "perms": "pc:form:registerForm",
  8152. "iconUrl": "",
  8153. "description": "登记表登记纪录",
  8154. "moduleId": null,
  8155. "isOuterChain": 0,
  8156. "isPopup": 0,
  8157. "cache": 0,
  8158. "component": null,
  8159. "children": null,
  8160. "default": true,
  8161. "leaf": false
  8162. },
  8163. {
  8164. "id": 5364,
  8165. "menuCode": "",
  8166. "systemCode": null,
  8167. "menuName": "登记表基础配置",
  8168. "url": "",
  8169. "rightType": 2,
  8170. "parentCode": 5358,
  8171. "displayOrder": 0,
  8172. "isApp": 0,
  8173. "enabled": 1,
  8174. "createdBy": 3040,
  8175. "createdAt": "2020-04-03 15:28:06",
  8176. "updatedBy": null,
  8177. "updatedAt": null,
  8178. "perms": "pc:form:baseConfig",
  8179. "iconUrl": "",
  8180. "description": "工作流转",
  8181. "moduleId": null,
  8182. "isOuterChain": 0,
  8183. "isPopup": 0,
  8184. "cache": 0,
  8185. "component": null,
  8186. "children": null,
  8187. "default": true,
  8188. "leaf": false
  8189. },
  8190. {
  8191. "id": 5365,
  8192. "menuCode": "",
  8193. "systemCode": null,
  8194. "menuName": "登记表字段配置",
  8195. "url": "0",
  8196. "rightType": 2,
  8197. "parentCode": 5358,
  8198. "displayOrder": 0,
  8199. "isApp": 0,
  8200. "enabled": 1,
  8201. "createdBy": 3040,
  8202. "createdAt": "2020-04-03 15:28:35",
  8203. "updatedBy": null,
  8204. "updatedAt": null,
  8205. "perms": "pc:form:fieldConfig",
  8206. "iconUrl": "",
  8207. "description": "工作流转",
  8208. "moduleId": null,
  8209. "isOuterChain": 0,
  8210. "isPopup": 0,
  8211. "cache": 0,
  8212. "component": null,
  8213. "children": null,
  8214. "default": true,
  8215. "leaf": true
  8216. },
  8217. {
  8218. "id": 5366,
  8219. "menuCode": "",
  8220. "systemCode": null,
  8221. "menuName": "岗位配置",
  8222. "url": "0",
  8223. "rightType": 2,
  8224. "parentCode": 5358,
  8225. "displayOrder": 0,
  8226. "isApp": 0,
  8227. "enabled": 1,
  8228. "createdBy": 3040,
  8229. "createdAt": "2020-04-03 15:29:30",
  8230. "updatedBy": null,
  8231. "updatedAt": null,
  8232. "perms": "pc:form:stationConfig",
  8233. "iconUrl": "",
  8234. "description": "工作流转",
  8235. "moduleId": null,
  8236. "isOuterChain": 0,
  8237. "isPopup": 0,
  8238. "cache": 0,
  8239. "component": null,
  8240. "children": null,
  8241. "default": true,
  8242. "leaf": true
  8243. }
  8244. ],
  8245. "default": true,
  8246. "leaf": false
  8247. },
  8248. {
  8249. "id": 5362,
  8250. "menuCode": "gzlz",
  8251. "systemCode": null,
  8252. "menuName": "个人工作台",
  8253. "url": "",
  8254. "rightType": 2,
  8255. "parentCode": 0,
  8256. "displayOrder": 0,
  8257. "isApp": 0,
  8258. "enabled": 1,
  8259. "createdBy": 3040,
  8260. "createdAt": "2020-04-02 19:45:38",
  8261. "updatedBy": 2977,
  8262. "updatedAt": "2020-06-12 15:17:21",
  8263. "perms": "pc.work",
  8264. "iconUrl": "",
  8265. "description": "工作流转",
  8266. "moduleId": null,
  8267. "isOuterChain": 0,
  8268. "isPopup": 0,
  8269. "cache": 0,
  8270. "component": null,
  8271. "children": [
  8272. {
  8273. "id": 5367,
  8274. "menuCode": "gzrwdjjl",
  8275. "systemCode": null,
  8276. "menuName": "工作情况登记表",
  8277. "url": "",
  8278. "rightType": 2,
  8279. "parentCode": 5362,
  8280. "displayOrder": 0,
  8281. "isApp": 0,
  8282. "enabled": 1,
  8283. "createdBy": 2,
  8284. "createdAt": "2020-04-03 15:49:04",
  8285. "updatedBy": 3200,
  8286. "updatedAt": "2020-04-15 10:53:55",
  8287. "perms": "pc:work:register",
  8288. "iconUrl": "",
  8289. "description": "工作流转",
  8290. "moduleId": null,
  8291. "isOuterChain": 0,
  8292. "isPopup": 0,
  8293. "cache": 0,
  8294. "component": null,
  8295. "children": null,
  8296. "default": true,
  8297. "leaf": false
  8298. },
  8299. {
  8300. "id": 5368,
  8301. "menuCode": "gzrwcx",
  8302. "systemCode": null,
  8303. "menuName": "工单查询(管理员)",
  8304. "url": "",
  8305. "rightType": 2,
  8306. "parentCode": 5362,
  8307. "displayOrder": 0,
  8308. "isApp": 0,
  8309. "enabled": 1,
  8310. "createdBy": 3040,
  8311. "createdAt": "2020-04-03 15:51:09",
  8312. "updatedBy": 3200,
  8313. "updatedAt": "2020-04-15 10:54:36",
  8314. "perms": "pc:work:inquiry",
  8315. "iconUrl": "",
  8316. "description": "",
  8317. "moduleId": null,
  8318. "isOuterChain": 0,
  8319. "isPopup": 0,
  8320. "cache": 0,
  8321. "component": null,
  8322. "children": null,
  8323. "default": true,
  8324. "leaf": false
  8325. },
  8326. {
  8327. "id": 5370,
  8328. "menuCode": "",
  8329. "systemCode": null,
  8330. "menuName": "基础配置",
  8331. "url": "0",
  8332. "rightType": 2,
  8333. "parentCode": 5362,
  8334. "displayOrder": 0,
  8335. "isApp": 0,
  8336. "enabled": 1,
  8337. "createdBy": 3040,
  8338. "createdAt": "2020-04-03 16:06:22",
  8339. "updatedBy": 3200,
  8340. "updatedAt": "2020-04-15 10:54:50",
  8341. "perms": "pc:work:baseConfig",
  8342. "iconUrl": "",
  8343. "description": "",
  8344. "moduleId": null,
  8345. "isOuterChain": 0,
  8346. "isPopup": 0,
  8347. "cache": 0,
  8348. "component": null,
  8349. "children": null,
  8350. "default": true,
  8351. "leaf": true
  8352. },
  8353. {
  8354. "id": 5371,
  8355. "menuCode": "",
  8356. "systemCode": null,
  8357. "menuName": "定时工单配置",
  8358. "url": "0",
  8359. "rightType": 2,
  8360. "parentCode": 5362,
  8361. "displayOrder": 0,
  8362. "isApp": 0,
  8363. "enabled": 1,
  8364. "createdBy": 3040,
  8365. "createdAt": "2020-04-03 16:06:53",
  8366. "updatedBy": 3200,
  8367. "updatedAt": "2020-04-15 10:55:07",
  8368. "perms": "pc:work:timingStart",
  8369. "iconUrl": "",
  8370. "description": "",
  8371. "moduleId": null,
  8372. "isOuterChain": 0,
  8373. "isPopup": 0,
  8374. "cache": 0,
  8375. "component": null,
  8376. "children": null,
  8377. "default": true,
  8378. "leaf": true
  8379. },
  8380. {
  8381. "id": 5380,
  8382. "menuCode": "",
  8383. "systemCode": null,
  8384. "menuName": "待办工单查询",
  8385. "url": "0",
  8386. "rightType": 2,
  8387. "parentCode": 5362,
  8388. "displayOrder": 0,
  8389. "isApp": 0,
  8390. "enabled": 1,
  8391. "createdBy": 3200,
  8392. "createdAt": "2020-04-15 10:55:36",
  8393. "updatedBy": null,
  8394. "updatedAt": null,
  8395. "perms": "pc:work:mytaskList",
  8396. "iconUrl": "",
  8397. "description": "",
  8398. "moduleId": null,
  8399. "isOuterChain": 0,
  8400. "isPopup": 0,
  8401. "cache": 0,
  8402. "component": null,
  8403. "children": null,
  8404. "default": true,
  8405. "leaf": true
  8406. }
  8407. ],
  8408. "default": true,
  8409. "leaf": false
  8410. },
  8411. {
  8412. "id": 5378,
  8413. "menuCode": "bmfw",
  8414. "systemCode": null,
  8415. "menuName": "便民服务",
  8416. "url": "",
  8417. "rightType": 1,
  8418. "parentCode": 0,
  8419. "displayOrder": 0,
  8420. "isApp": 0,
  8421. "enabled": 1,
  8422. "createdBy": 2,
  8423. "createdAt": "2020-04-09 16:27:00",
  8424. "updatedBy": null,
  8425. "updatedAt": null,
  8426. "perms": "",
  8427. "iconUrl": "",
  8428. "description": "",
  8429. "moduleId": null,
  8430. "isOuterChain": 0,
  8431. "isPopup": 0,
  8432. "cache": 0,
  8433. "component": null,
  8434. "children": [
  8435. {
  8436. "id": 5379,
  8437. "menuCode": "bmfwym",
  8438. "systemCode": null,
  8439. "menuName": "便民服务",
  8440. "url": "",
  8441. "rightType": 2,
  8442. "parentCode": 5378,
  8443. "displayOrder": 0,
  8444. "isApp": 0,
  8445. "enabled": 1,
  8446. "createdBy": 2,
  8447. "createdAt": "2020-04-09 16:27:58",
  8448. "updatedBy": null,
  8449. "updatedAt": null,
  8450. "perms": "pc.convenient.service",
  8451. "iconUrl": "",
  8452. "description": "",
  8453. "moduleId": null,
  8454. "isOuterChain": 0,
  8455. "isPopup": 0,
  8456. "cache": 0,
  8457. "component": null,
  8458. "children": null,
  8459. "default": true,
  8460. "leaf": false
  8461. }
  8462. ],
  8463. "default": true,
  8464. "leaf": false
  8465. },
  8466. {
  8467. "id": 5405,
  8468. "menuCode": "",
  8469. "systemCode": null,
  8470. "menuName": "APP版本管理",
  8471. "url": "",
  8472. "rightType": 1,
  8473. "parentCode": 0,
  8474. "displayOrder": 0,
  8475. "isApp": 0,
  8476. "enabled": 1,
  8477. "createdBy": 3071,
  8478. "createdAt": "2020-09-27 17:05:08",
  8479. "updatedBy": null,
  8480. "updatedAt": null,
  8481. "perms": "pc:app-version",
  8482. "iconUrl": "",
  8483. "description": "",
  8484. "moduleId": null,
  8485. "isOuterChain": 0,
  8486. "isPopup": 0,
  8487. "cache": 0,
  8488. "component": null,
  8489. "children": [],
  8490. "default": true,
  8491. "leaf": false
  8492. },
  8493. {
  8494. "id": 5406,
  8495. "menuCode": "",
  8496. "systemCode": null,
  8497. "menuName": "数据统计",
  8498. "url": "",
  8499. "rightType": 1,
  8500. "parentCode": 0,
  8501. "displayOrder": 0,
  8502. "isApp": 0,
  8503. "enabled": 1,
  8504. "createdBy": 2960,
  8505. "createdAt": "2020-09-28 20:01:15",
  8506. "updatedBy": 2960,
  8507. "updatedAt": "2020-10-15 18:04:47",
  8508. "perms": "flashstatiscal",
  8509. "iconUrl": "",
  8510. "description": "",
  8511. "moduleId": null,
  8512. "isOuterChain": 0,
  8513. "isPopup": 0,
  8514. "cache": 0,
  8515. "component": null,
  8516. "children": [
  8517. {
  8518. "id": 5407,
  8519. "menuCode": "",
  8520. "systemCode": null,
  8521. "menuName": "项目汇总",
  8522. "url": "",
  8523. "rightType": 2,
  8524. "parentCode": 5406,
  8525. "displayOrder": 0,
  8526. "isApp": 0,
  8527. "enabled": 1,
  8528. "createdBy": 2960,
  8529. "createdAt": "2020-09-28 20:02:07",
  8530. "updatedBy": null,
  8531. "updatedAt": null,
  8532. "perms": "flashstatiscal.projectSummary",
  8533. "iconUrl": "",
  8534. "description": "",
  8535. "moduleId": null,
  8536. "isOuterChain": 0,
  8537. "isPopup": 0,
  8538. "cache": 0,
  8539. "component": null,
  8540. "children": null,
  8541. "default": true,
  8542. "leaf": false
  8543. },
  8544. {
  8545. "id": 5408,
  8546. "menuCode": "",
  8547. "systemCode": null,
  8548. "menuName": "业务统计",
  8549. "url": "0",
  8550. "rightType": 2,
  8551. "parentCode": 5406,
  8552. "displayOrder": 0,
  8553. "isApp": 0,
  8554. "enabled": 1,
  8555. "createdBy": 2960,
  8556. "createdAt": "2020-09-28 20:02:41",
  8557. "updatedBy": null,
  8558. "updatedAt": null,
  8559. "perms": "flashstatiscal.flashStatistics",
  8560. "iconUrl": "",
  8561. "description": "",
  8562. "moduleId": null,
  8563. "isOuterChain": 0,
  8564. "isPopup": 0,
  8565. "cache": 0,
  8566. "component": null,
  8567. "children": null,
  8568. "default": true,
  8569. "leaf": true
  8570. },
  8571. {
  8572. "id": 5411,
  8573. "menuCode": "",
  8574. "systemCode": null,
  8575. "menuName": "目标完成",
  8576. "url": "",
  8577. "rightType": 2,
  8578. "parentCode": 5406,
  8579. "displayOrder": 0,
  8580. "isApp": 0,
  8581. "enabled": 1,
  8582. "createdBy": 2960,
  8583. "createdAt": "2020-10-15 18:05:12",
  8584. "updatedBy": null,
  8585. "updatedAt": null,
  8586. "perms": "flashstatiscal.goalCompletion",
  8587. "iconUrl": "",
  8588. "description": "",
  8589. "moduleId": null,
  8590. "isOuterChain": 0,
  8591. "isPopup": 0,
  8592. "cache": 0,
  8593. "component": null,
  8594. "children": null,
  8595. "default": true,
  8596. "leaf": false
  8597. },
  8598. {
  8599. "id": 5412,
  8600. "menuCode": "",
  8601. "systemCode": null,
  8602. "menuName": "业务分析",
  8603. "url": "0",
  8604. "rightType": 2,
  8605. "parentCode": 5406,
  8606. "displayOrder": 0,
  8607. "isApp": 0,
  8608. "enabled": 1,
  8609. "createdBy": 2960,
  8610. "createdAt": "2020-10-15 18:05:35",
  8611. "updatedBy": null,
  8612. "updatedAt": null,
  8613. "perms": "flashstatiscal.businessAnalysis",
  8614. "iconUrl": "",
  8615. "description": "",
  8616. "moduleId": null,
  8617. "isOuterChain": 0,
  8618. "isPopup": 0,
  8619. "cache": 0,
  8620. "component": null,
  8621. "children": null,
  8622. "default": true,
  8623. "leaf": true
  8624. }
  8625. ],
  8626. "default": true,
  8627. "leaf": false
  8628. },
  8629. {
  8630. "id": 5419,
  8631. "menuCode": "meetingRoom",
  8632. "systemCode": null,
  8633. "menuName": "会议室",
  8634. "url": "",
  8635. "rightType": 1,
  8636. "parentCode": 0,
  8637. "displayOrder": 0,
  8638. "isApp": 0,
  8639. "enabled": 1,
  8640. "createdBy": 3071,
  8641. "createdAt": "2020-11-17 11:03:57",
  8642. "updatedBy": 3071,
  8643. "updatedAt": "2020-11-17 11:15:20",
  8644. "perms": "meetingRoom",
  8645. "iconUrl": "",
  8646. "description": "新版会议室",
  8647. "moduleId": null,
  8648. "isOuterChain": 0,
  8649. "isPopup": 0,
  8650. "cache": 0,
  8651. "component": null,
  8652. "children": [
  8653. {
  8654. "id": 5420,
  8655. "menuCode": "roomManagement",
  8656. "systemCode": null,
  8657. "menuName": "会议室管理",
  8658. "url": "",
  8659. "rightType": 2,
  8660. "parentCode": 5419,
  8661. "displayOrder": 0,
  8662. "isApp": 0,
  8663. "enabled": 1,
  8664. "createdBy": 3071,
  8665. "createdAt": "2020-11-17 11:06:44",
  8666. "updatedBy": 3071,
  8667. "updatedAt": "2020-11-17 11:15:47",
  8668. "perms": "meetingRoom.roomManagement",
  8669. "iconUrl": "",
  8670. "description": "新版会议室",
  8671. "moduleId": null,
  8672. "isOuterChain": 0,
  8673. "isPopup": 0,
  8674. "cache": 0,
  8675. "component": null,
  8676. "children": null,
  8677. "default": true,
  8678. "leaf": false
  8679. },
  8680. {
  8681. "id": 5421,
  8682. "menuCode": "serviceManagement",
  8683. "systemCode": null,
  8684. "menuName": "服务管理",
  8685. "url": "",
  8686. "rightType": 2,
  8687. "parentCode": 5419,
  8688. "displayOrder": 0,
  8689. "isApp": 0,
  8690. "enabled": 1,
  8691. "createdBy": 3071,
  8692. "createdAt": "2020-11-17 11:21:14",
  8693. "updatedBy": 2960,
  8694. "updatedAt": "2021-05-14 20:29:21",
  8695. "perms": "meetingRoom.serviceManagement",
  8696. "iconUrl": "",
  8697. "description": "新版会议室",
  8698. "moduleId": null,
  8699. "isOuterChain": 0,
  8700. "isPopup": 0,
  8701. "cache": 0,
  8702. "component": null,
  8703. "children": null,
  8704. "default": true,
  8705. "leaf": false
  8706. },
  8707. {
  8708. "id": 5428,
  8709. "menuCode": "personalManagement",
  8710. "systemCode": null,
  8711. "menuName": "会服人员管理",
  8712. "url": "",
  8713. "rightType": 2,
  8714. "parentCode": 5419,
  8715. "displayOrder": 0,
  8716. "isApp": 0,
  8717. "enabled": 1,
  8718. "createdBy": 3071,
  8719. "createdAt": "2020-11-30 14:52:14",
  8720. "updatedBy": 3071,
  8721. "updatedAt": "2020-11-30 14:52:47",
  8722. "perms": "meetingRoom.personalManagement",
  8723. "iconUrl": "",
  8724. "description": "新版会议室",
  8725. "moduleId": null,
  8726. "isOuterChain": 0,
  8727. "isPopup": 0,
  8728. "cache": 0,
  8729. "component": null,
  8730. "children": null,
  8731. "default": true,
  8732. "leaf": false
  8733. },
  8734. {
  8735. "id": 5429,
  8736. "menuCode": "meetengStatistics",
  8737. "systemCode": null,
  8738. "menuName": "统计数据",
  8739. "url": "0",
  8740. "rightType": 2,
  8741. "parentCode": 5419,
  8742. "displayOrder": 0,
  8743. "isApp": 0,
  8744. "enabled": 1,
  8745. "createdBy": 3071,
  8746. "createdAt": "2020-11-30 14:53:29",
  8747. "updatedBy": null,
  8748. "updatedAt": null,
  8749. "perms": "meetingRoom.meetengStatistics",
  8750. "iconUrl": "",
  8751. "description": "新版会议室",
  8752. "moduleId": null,
  8753. "isOuterChain": 0,
  8754. "isPopup": 0,
  8755. "cache": 0,
  8756. "component": null,
  8757. "children": null,
  8758. "default": true,
  8759. "leaf": true
  8760. },
  8761. {
  8762. "id": 5430,
  8763. "menuCode": "orderManagement",
  8764. "systemCode": null,
  8765. "menuName": "订单管理",
  8766. "url": "",
  8767. "rightType": 2,
  8768. "parentCode": 5419,
  8769. "displayOrder": 0,
  8770. "isApp": 0,
  8771. "enabled": 1,
  8772. "createdBy": 3071,
  8773. "createdAt": "2020-12-01 09:41:11",
  8774. "updatedBy": null,
  8775. "updatedAt": null,
  8776. "perms": "meetingRoom.orderManagement",
  8777. "iconUrl": "",
  8778. "description": "新版会议室",
  8779. "moduleId": null,
  8780. "isOuterChain": 0,
  8781. "isPopup": 0,
  8782. "cache": 0,
  8783. "component": null,
  8784. "children": null,
  8785. "default": true,
  8786. "leaf": false
  8787. }
  8788. ],
  8789. "default": true,
  8790. "leaf": false
  8791. },
  8792. {
  8793. "id": 5446,
  8794. "menuCode": "",
  8795. "systemCode": null,
  8796. "menuName": "审核",
  8797. "url": "0",
  8798. "rightType": 2,
  8799. "parentCode": 0,
  8800. "displayOrder": 0,
  8801. "isApp": 0,
  8802. "enabled": 1,
  8803. "createdBy": 2960,
  8804. "createdAt": "2020-12-16 14:14:42",
  8805. "updatedBy": null,
  8806. "updatedAt": null,
  8807. "perms": "merchantGoods:apply:goods",
  8808. "iconUrl": "",
  8809. "description": "",
  8810. "moduleId": null,
  8811. "isOuterChain": 0,
  8812. "isPopup": 0,
  8813. "cache": 0,
  8814. "component": null,
  8815. "children": [],
  8816. "default": true,
  8817. "leaf": true
  8818. },
  8819. {
  8820. "id": 5509,
  8821. "menuCode": "",
  8822. "systemCode": null,
  8823. "menuName": "智能通行",
  8824. "url": "",
  8825. "rightType": 1,
  8826. "parentCode": 0,
  8827. "displayOrder": 0,
  8828. "isApp": 0,
  8829. "enabled": 1,
  8830. "createdBy": 3071,
  8831. "createdAt": "2021-06-09 20:36:50",
  8832. "updatedBy": null,
  8833. "updatedAt": null,
  8834. "perms": "pc:intelligentTraffic",
  8835. "iconUrl": "",
  8836. "description": "外链跳转功能",
  8837. "moduleId": null,
  8838. "isOuterChain": 0,
  8839. "isPopup": 0,
  8840. "cache": 0,
  8841. "component": null,
  8842. "children": [],
  8843. "default": true,
  8844. "leaf": false
  8845. },
  8846. {
  8847. "id": 5511,
  8848. "menuCode": "",
  8849. "systemCode": null,
  8850. "menuName": "活动预约",
  8851. "url": "",
  8852. "rightType": 1,
  8853. "parentCode": 0,
  8854. "displayOrder": 0,
  8855. "isApp": 0,
  8856. "enabled": 1,
  8857. "createdBy": 3071,
  8858. "createdAt": "2021-06-15 09:30:51",
  8859. "updatedBy": null,
  8860. "updatedAt": null,
  8861. "perms": "pc:activitiesAppointment",
  8862. "iconUrl": "",
  8863. "description": "",
  8864. "moduleId": null,
  8865. "isOuterChain": 0,
  8866. "isPopup": 0,
  8867. "cache": 0,
  8868. "component": null,
  8869. "children": [
  8870. {
  8871. "id": 5512,
  8872. "menuCode": "",
  8873. "systemCode": null,
  8874. "menuName": "活动信息管理",
  8875. "url": "",
  8876. "rightType": 2,
  8877. "parentCode": 5511,
  8878. "displayOrder": 0,
  8879. "isApp": 0,
  8880. "enabled": 1,
  8881. "createdBy": 3071,
  8882. "createdAt": "2021-06-15 09:31:37",
  8883. "updatedBy": null,
  8884. "updatedAt": null,
  8885. "perms": "pc:activitiesAppointment.activityManagement",
  8886. "iconUrl": "",
  8887. "description": "",
  8888. "moduleId": null,
  8889. "isOuterChain": 0,
  8890. "isPopup": 0,
  8891. "cache": 0,
  8892. "component": null,
  8893. "children": null,
  8894. "default": true,
  8895. "leaf": false
  8896. },
  8897. {
  8898. "id": 5513,
  8899. "menuCode": "",
  8900. "systemCode": null,
  8901. "menuName": "预约申请管理",
  8902. "url": "0",
  8903. "rightType": 2,
  8904. "parentCode": 5511,
  8905. "displayOrder": 0,
  8906. "isApp": 0,
  8907. "enabled": 1,
  8908. "createdBy": 3071,
  8909. "createdAt": "2021-06-15 09:32:06",
  8910. "updatedBy": null,
  8911. "updatedAt": null,
  8912. "perms": "pc:activitiesAppointment.bookingManagement",
  8913. "iconUrl": "",
  8914. "description": "",
  8915. "moduleId": null,
  8916. "isOuterChain": 0,
  8917. "isPopup": 0,
  8918. "cache": 0,
  8919. "component": null,
  8920. "children": null,
  8921. "default": true,
  8922. "leaf": true
  8923. }
  8924. ],
  8925. "default": true,
  8926. "leaf": false
  8927. },
  8928. {
  8929. "id": 5515,
  8930. "menuCode": "diyForm",
  8931. "systemCode": null,
  8932. "menuName": "表单管理",
  8933. "url": "",
  8934. "rightType": 1,
  8935. "parentCode": 0,
  8936. "displayOrder": 0,
  8937. "isApp": 0,
  8938. "enabled": 1,
  8939. "createdBy": 3620,
  8940. "createdAt": "2021-07-13 10:56:13",
  8941. "updatedBy": 3620,
  8942. "updatedAt": "2021-11-25 17:23:00",
  8943. "perms": "",
  8944. "iconUrl": "",
  8945. "description": "",
  8946. "moduleId": null,
  8947. "isOuterChain": 0,
  8948. "isPopup": 0,
  8949. "cache": 0,
  8950. "component": null,
  8951. "children": [
  8952. {
  8953. "id": 5516,
  8954. "menuCode": "diyForm.template",
  8955. "systemCode": null,
  8956. "menuName": "模板管理",
  8957. "url": "",
  8958. "rightType": 2,
  8959. "parentCode": 5515,
  8960. "displayOrder": 0,
  8961. "isApp": 0,
  8962. "enabled": 1,
  8963. "createdBy": 3620,
  8964. "createdAt": "2021-07-13 10:57:51",
  8965. "updatedBy": 3620,
  8966. "updatedAt": "2021-08-09 16:36:47",
  8967. "perms": "diyForm.template",
  8968. "iconUrl": "",
  8969. "description": "",
  8970. "moduleId": null,
  8971. "isOuterChain": 0,
  8972. "isPopup": 0,
  8973. "cache": 0,
  8974. "component": null,
  8975. "children": [
  8976. {
  8977. "id": 5522,
  8978. "menuCode": "diyForm.template.delete",
  8979. "systemCode": null,
  8980. "menuName": "删除",
  8981. "url": "",
  8982. "rightType": 3,
  8983. "parentCode": 5516,
  8984. "displayOrder": 0,
  8985. "isApp": 0,
  8986. "enabled": 1,
  8987. "createdBy": 3620,
  8988. "createdAt": "2021-07-16 17:37:38",
  8989. "updatedBy": 3620,
  8990. "updatedAt": "2021-08-09 16:35:43",
  8991. "perms": "diyForm.template.delete",
  8992. "iconUrl": "",
  8993. "description": "",
  8994. "moduleId": null,
  8995. "isOuterChain": 0,
  8996. "isPopup": 0,
  8997. "cache": 0,
  8998. "component": null,
  8999. "children": null,
  9000. "default": true,
  9001. "leaf": false
  9002. },
  9003. {
  9004. "id": 5530,
  9005. "menuCode": "diyForm.template.update",
  9006. "systemCode": null,
  9007. "menuName": "编辑表单",
  9008. "url": "",
  9009. "rightType": 3,
  9010. "parentCode": 5516,
  9011. "displayOrder": 0,
  9012. "isApp": 0,
  9013. "enabled": 1,
  9014. "createdBy": 3620,
  9015. "createdAt": "2021-08-09 10:22:39",
  9016. "updatedBy": 3620,
  9017. "updatedAt": "2021-08-09 10:23:50",
  9018. "perms": "diyForm.template.update",
  9019. "iconUrl": "",
  9020. "description": "",
  9021. "moduleId": null,
  9022. "isOuterChain": 0,
  9023. "isPopup": 0,
  9024. "cache": 0,
  9025. "component": null,
  9026. "children": null,
  9027. "default": true,
  9028. "leaf": false
  9029. },
  9030. {
  9031. "id": 5533,
  9032. "menuCode": "diyForm.template.bindProject",
  9033. "systemCode": null,
  9034. "menuName": "开通项目",
  9035. "url": "",
  9036. "rightType": 3,
  9037. "parentCode": 5516,
  9038. "displayOrder": 0,
  9039. "isApp": 0,
  9040. "enabled": 1,
  9041. "createdBy": 3620,
  9042. "createdAt": "2021-08-09 10:36:56",
  9043. "updatedBy": 3620,
  9044. "updatedAt": "2021-08-09 16:23:24",
  9045. "perms": "diyForm.template.bindProject",
  9046. "iconUrl": "",
  9047. "description": "",
  9048. "moduleId": null,
  9049. "isOuterChain": 0,
  9050. "isPopup": 0,
  9051. "cache": 0,
  9052. "component": null,
  9053. "children": null,
  9054. "default": true,
  9055. "leaf": false
  9056. },
  9057. {
  9058. "id": 5534,
  9059. "menuCode": "diyForm.template.tips",
  9060. "systemCode": null,
  9061. "menuName": "提示内容",
  9062. "url": "",
  9063. "rightType": 3,
  9064. "parentCode": 5516,
  9065. "displayOrder": 0,
  9066. "isApp": 0,
  9067. "enabled": 1,
  9068. "createdBy": 3620,
  9069. "createdAt": "2021-08-09 10:38:43",
  9070. "updatedBy": null,
  9071. "updatedAt": null,
  9072. "perms": "diyForm.template.tips",
  9073. "iconUrl": "",
  9074. "description": "",
  9075. "moduleId": null,
  9076. "isOuterChain": 0,
  9077. "isPopup": 0,
  9078. "cache": 0,
  9079. "component": null,
  9080. "children": null,
  9081. "default": true,
  9082. "leaf": false
  9083. },
  9084. {
  9085. "id": 5546,
  9086. "menuCode": "diyForm.template.create",
  9087. "systemCode": null,
  9088. "menuName": "新增表单",
  9089. "url": "",
  9090. "rightType": 3,
  9091. "parentCode": 5516,
  9092. "displayOrder": 0,
  9093. "isApp": 0,
  9094. "enabled": 1,
  9095. "createdBy": 3620,
  9096. "createdAt": "2021-08-09 16:27:39",
  9097. "updatedBy": 3620,
  9098. "updatedAt": "2021-08-09 16:38:45",
  9099. "perms": "diyForm.template.create",
  9100. "iconUrl": "",
  9101. "description": "",
  9102. "moduleId": null,
  9103. "isOuterChain": 0,
  9104. "isPopup": 0,
  9105. "cache": 0,
  9106. "component": null,
  9107. "children": null,
  9108. "default": true,
  9109. "leaf": false
  9110. }
  9111. ],
  9112. "default": true,
  9113. "leaf": false
  9114. },
  9115. {
  9116. "id": 5517,
  9117. "menuCode": "diyForm.processCenter",
  9118. "systemCode": null,
  9119. "menuName": "流程中心",
  9120. "url": "",
  9121. "rightType": 2,
  9122. "parentCode": 5515,
  9123. "displayOrder": 0,
  9124. "isApp": 0,
  9125. "enabled": 1,
  9126. "createdBy": 3620,
  9127. "createdAt": "2021-07-13 11:04:20",
  9128. "updatedBy": 3620,
  9129. "updatedAt": "2021-08-09 16:37:01",
  9130. "perms": "diyForm.processCenter",
  9131. "iconUrl": "",
  9132. "description": "",
  9133. "moduleId": null,
  9134. "isOuterChain": 0,
  9135. "isPopup": 0,
  9136. "cache": 0,
  9137. "component": null,
  9138. "children": [
  9139. {
  9140. "id": 5531,
  9141. "menuCode": "diyForm.processCenter.create",
  9142. "systemCode": null,
  9143. "menuName": "新增流程",
  9144. "url": "",
  9145. "rightType": 3,
  9146. "parentCode": 5517,
  9147. "displayOrder": 0,
  9148. "isApp": 0,
  9149. "enabled": 1,
  9150. "createdBy": 3620,
  9151. "createdAt": "2021-08-09 10:26:38",
  9152. "updatedBy": null,
  9153. "updatedAt": null,
  9154. "perms": "diyForm.processCenter.create",
  9155. "iconUrl": "",
  9156. "description": "",
  9157. "moduleId": null,
  9158. "isOuterChain": 0,
  9159. "isPopup": 0,
  9160. "cache": 0,
  9161. "component": null,
  9162. "children": null,
  9163. "default": true,
  9164. "leaf": false
  9165. },
  9166. {
  9167. "id": 5532,
  9168. "menuCode": "diyForm.processCenter.update",
  9169. "systemCode": null,
  9170. "menuName": "编辑",
  9171. "url": "",
  9172. "rightType": 3,
  9173. "parentCode": 5517,
  9174. "displayOrder": 0,
  9175. "isApp": 0,
  9176. "enabled": 1,
  9177. "createdBy": 3620,
  9178. "createdAt": "2021-08-09 10:28:25",
  9179. "updatedBy": null,
  9180. "updatedAt": null,
  9181. "perms": "diyForm.processCenter.update",
  9182. "iconUrl": "",
  9183. "description": "",
  9184. "moduleId": null,
  9185. "isOuterChain": 0,
  9186. "isPopup": 0,
  9187. "cache": 0,
  9188. "component": null,
  9189. "children": null,
  9190. "default": true,
  9191. "leaf": false
  9192. },
  9193. {
  9194. "id": 5535,
  9195. "menuCode": "diyForm.processCenter.copy",
  9196. "systemCode": null,
  9197. "menuName": "复制",
  9198. "url": "",
  9199. "rightType": 3,
  9200. "parentCode": 5517,
  9201. "displayOrder": 0,
  9202. "isApp": 0,
  9203. "enabled": 1,
  9204. "createdBy": 3620,
  9205. "createdAt": "2021-08-09 10:45:03",
  9206. "updatedBy": null,
  9207. "updatedAt": null,
  9208. "perms": "diyForm.processCenter.copy",
  9209. "iconUrl": "",
  9210. "description": "",
  9211. "moduleId": null,
  9212. "isOuterChain": 0,
  9213. "isPopup": 0,
  9214. "cache": 0,
  9215. "component": null,
  9216. "children": null,
  9217. "default": true,
  9218. "leaf": false
  9219. },
  9220. {
  9221. "id": 5536,
  9222. "menuCode": "diyForm.processCenter.delete",
  9223. "systemCode": null,
  9224. "menuName": "删除",
  9225. "url": "",
  9226. "rightType": 3,
  9227. "parentCode": 5517,
  9228. "displayOrder": 0,
  9229. "isApp": 0,
  9230. "enabled": 1,
  9231. "createdBy": 3620,
  9232. "createdAt": "2021-08-09 10:45:32",
  9233. "updatedBy": null,
  9234. "updatedAt": null,
  9235. "perms": "diyForm.processCenter.delete",
  9236. "iconUrl": "",
  9237. "description": "",
  9238. "moduleId": null,
  9239. "isOuterChain": 0,
  9240. "isPopup": 0,
  9241. "cache": 0,
  9242. "component": null,
  9243. "children": null,
  9244. "default": true,
  9245. "leaf": false
  9246. }
  9247. ],
  9248. "default": true,
  9249. "leaf": false
  9250. },
  9251. {
  9252. "id": 5518,
  9253. "menuCode": "diyForm.buildingReception",
  9254. "systemCode": null,
  9255. "menuName": "大厦接待",
  9256. "url": "0",
  9257. "rightType": 2,
  9258. "parentCode": 5515,
  9259. "displayOrder": 0,
  9260. "isApp": 0,
  9261. "enabled": 1,
  9262. "createdBy": 3620,
  9263. "createdAt": "2021-07-13 11:04:59",
  9264. "updatedBy": 3620,
  9265. "updatedAt": "2021-08-09 16:37:15",
  9266. "perms": "diyForm.buildingReception",
  9267. "iconUrl": "",
  9268. "description": "",
  9269. "moduleId": null,
  9270. "isOuterChain": 0,
  9271. "isPopup": 0,
  9272. "cache": 0,
  9273. "component": null,
  9274. "children": [
  9275. {
  9276. "id": 5537,
  9277. "menuCode": "diyForm.buildingReception.process",
  9278. "systemCode": null,
  9279. "menuName": "流程配置",
  9280. "url": "0",
  9281. "rightType": 3,
  9282. "parentCode": 5518,
  9283. "displayOrder": 0,
  9284. "isApp": 0,
  9285. "enabled": 1,
  9286. "createdBy": 3620,
  9287. "createdAt": "2021-08-09 10:47:07",
  9288. "updatedBy": null,
  9289. "updatedAt": null,
  9290. "perms": "diyForm.buildingReception.process",
  9291. "iconUrl": "",
  9292. "description": "",
  9293. "moduleId": null,
  9294. "isOuterChain": 0,
  9295. "isPopup": 0,
  9296. "cache": 0,
  9297. "component": null,
  9298. "children": null,
  9299. "default": true,
  9300. "leaf": true
  9301. },
  9302. {
  9303. "id": 5538,
  9304. "menuCode": "diyForm.buildingReception.update",
  9305. "systemCode": null,
  9306. "menuName": "修改",
  9307. "url": "0",
  9308. "rightType": 3,
  9309. "parentCode": 5518,
  9310. "displayOrder": 0,
  9311. "isApp": 0,
  9312. "enabled": 1,
  9313. "createdBy": 3620,
  9314. "createdAt": "2021-08-09 10:47:54",
  9315. "updatedBy": null,
  9316. "updatedAt": null,
  9317. "perms": "diyForm.buildingReception.update",
  9318. "iconUrl": "",
  9319. "description": "",
  9320. "moduleId": null,
  9321. "isOuterChain": 0,
  9322. "isPopup": 0,
  9323. "cache": 0,
  9324. "component": null,
  9325. "children": null,
  9326. "default": true,
  9327. "leaf": true
  9328. },
  9329. {
  9330. "id": 5539,
  9331. "menuCode": "diyForm.buildingReception.detail",
  9332. "systemCode": null,
  9333. "menuName": "详情",
  9334. "url": "0",
  9335. "rightType": 3,
  9336. "parentCode": 5518,
  9337. "displayOrder": 0,
  9338. "isApp": 0,
  9339. "enabled": 1,
  9340. "createdBy": 3620,
  9341. "createdAt": "2021-08-09 10:48:49",
  9342. "updatedBy": null,
  9343. "updatedAt": null,
  9344. "perms": "diyForm.buildingReception.detail",
  9345. "iconUrl": "",
  9346. "description": "",
  9347. "moduleId": null,
  9348. "isOuterChain": 0,
  9349. "isPopup": 0,
  9350. "cache": 0,
  9351. "component": null,
  9352. "children": null,
  9353. "default": true,
  9354. "leaf": true
  9355. },
  9356. {
  9357. "id": 5540,
  9358. "menuCode": "diyForm.buildingReception.export",
  9359. "systemCode": null,
  9360. "menuName": "导出",
  9361. "url": "0",
  9362. "rightType": 3,
  9363. "parentCode": 5518,
  9364. "displayOrder": 0,
  9365. "isApp": 0,
  9366. "enabled": 1,
  9367. "createdBy": 3620,
  9368. "createdAt": "2021-08-09 10:49:32",
  9369. "updatedBy": null,
  9370. "updatedAt": null,
  9371. "perms": "diyForm.buildingReception.export",
  9372. "iconUrl": "",
  9373. "description": "",
  9374. "moduleId": null,
  9375. "isOuterChain": 0,
  9376. "isPopup": 0,
  9377. "cache": 0,
  9378. "component": null,
  9379. "children": null,
  9380. "default": true,
  9381. "leaf": true
  9382. },
  9383. {
  9384. "id": 5588,
  9385. "menuCode": "diyForm.buildingReception.delete",
  9386. "systemCode": null,
  9387. "menuName": "删除",
  9388. "url": "0",
  9389. "rightType": 3,
  9390. "parentCode": 5518,
  9391. "displayOrder": 0,
  9392. "isApp": 0,
  9393. "enabled": 1,
  9394. "createdBy": 3620,
  9395. "createdAt": "2021-12-21 10:36:30",
  9396. "updatedBy": null,
  9397. "updatedAt": null,
  9398. "perms": "diyForm.buildingReception.delete",
  9399. "iconUrl": "",
  9400. "description": "",
  9401. "moduleId": null,
  9402. "isOuterChain": 0,
  9403. "isPopup": 0,
  9404. "cache": 0,
  9405. "component": null,
  9406. "children": null,
  9407. "default": true,
  9408. "leaf": true
  9409. }
  9410. ],
  9411. "default": true,
  9412. "leaf": true
  9413. },
  9414. {
  9415. "id": 5519,
  9416. "menuCode": "diyForm.entranceApply",
  9417. "systemCode": null,
  9418. "menuName": "门禁申请",
  9419. "url": "0",
  9420. "rightType": 2,
  9421. "parentCode": 5515,
  9422. "displayOrder": 0,
  9423. "isApp": 0,
  9424. "enabled": 1,
  9425. "createdBy": 3620,
  9426. "createdAt": "2021-07-13 11:07:42",
  9427. "updatedBy": 3620,
  9428. "updatedAt": "2021-08-09 16:39:25",
  9429. "perms": "diyForm.entranceApply",
  9430. "iconUrl": "",
  9431. "description": "",
  9432. "moduleId": null,
  9433. "isOuterChain": 0,
  9434. "isPopup": 0,
  9435. "cache": 0,
  9436. "component": null,
  9437. "children": [
  9438. {
  9439. "id": 5541,
  9440. "menuCode": "diyForm.entranceApply.process",
  9441. "systemCode": null,
  9442. "menuName": "流程配置",
  9443. "url": "",
  9444. "rightType": 3,
  9445. "parentCode": 5519,
  9446. "displayOrder": 0,
  9447. "isApp": 0,
  9448. "enabled": 1,
  9449. "createdBy": 3620,
  9450. "createdAt": "2021-08-09 11:43:07",
  9451. "updatedBy": null,
  9452. "updatedAt": null,
  9453. "perms": "diyForm.entranceApply.process",
  9454. "iconUrl": "",
  9455. "description": "",
  9456. "moduleId": null,
  9457. "isOuterChain": 0,
  9458. "isPopup": 0,
  9459. "cache": 0,
  9460. "component": null,
  9461. "children": null,
  9462. "default": true,
  9463. "leaf": false
  9464. },
  9465. {
  9466. "id": 5547,
  9467. "menuCode": "diyForm.entranceApply.update",
  9468. "systemCode": null,
  9469. "menuName": "修改",
  9470. "url": "0",
  9471. "rightType": 3,
  9472. "parentCode": 5519,
  9473. "displayOrder": 0,
  9474. "isApp": 0,
  9475. "enabled": 1,
  9476. "createdBy": 3620,
  9477. "createdAt": "2021-08-09 16:47:42",
  9478. "updatedBy": null,
  9479. "updatedAt": null,
  9480. "perms": "diyForm.entranceApply.update",
  9481. "iconUrl": "",
  9482. "description": "",
  9483. "moduleId": null,
  9484. "isOuterChain": 0,
  9485. "isPopup": 0,
  9486. "cache": 0,
  9487. "component": null,
  9488. "children": null,
  9489. "default": true,
  9490. "leaf": true
  9491. },
  9492. {
  9493. "id": 5548,
  9494. "menuCode": "diyForm.entranceApply.detail",
  9495. "systemCode": null,
  9496. "menuName": "详情",
  9497. "url": "0",
  9498. "rightType": 3,
  9499. "parentCode": 5519,
  9500. "displayOrder": 0,
  9501. "isApp": 0,
  9502. "enabled": 1,
  9503. "createdBy": 3620,
  9504. "createdAt": "2021-08-09 16:48:30",
  9505. "updatedBy": null,
  9506. "updatedAt": null,
  9507. "perms": "diyForm.entranceApply.detail",
  9508. "iconUrl": "",
  9509. "description": "",
  9510. "moduleId": null,
  9511. "isOuterChain": 0,
  9512. "isPopup": 0,
  9513. "cache": 0,
  9514. "component": null,
  9515. "children": null,
  9516. "default": true,
  9517. "leaf": true
  9518. },
  9519. {
  9520. "id": 5549,
  9521. "menuCode": "diyForm.entranceApply.export",
  9522. "systemCode": null,
  9523. "menuName": "导出",
  9524. "url": "0",
  9525. "rightType": 3,
  9526. "parentCode": 5519,
  9527. "displayOrder": 0,
  9528. "isApp": 0,
  9529. "enabled": 1,
  9530. "createdBy": 3620,
  9531. "createdAt": "2021-08-09 16:48:57",
  9532. "updatedBy": null,
  9533. "updatedAt": null,
  9534. "perms": "diyForm.entranceApply.export",
  9535. "iconUrl": "",
  9536. "description": "",
  9537. "moduleId": null,
  9538. "isOuterChain": 0,
  9539. "isPopup": 0,
  9540. "cache": 0,
  9541. "component": null,
  9542. "children": null,
  9543. "default": true,
  9544. "leaf": true
  9545. }
  9546. ],
  9547. "default": true,
  9548. "leaf": true
  9549. },
  9550. {
  9551. "id": 5523,
  9552. "menuCode": "diyForm.cardMake",
  9553. "systemCode": null,
  9554. "menuName": "名片制作",
  9555. "url": "0",
  9556. "rightType": 2,
  9557. "parentCode": 5515,
  9558. "displayOrder": 0,
  9559. "isApp": 0,
  9560. "enabled": 1,
  9561. "createdBy": 3620,
  9562. "createdAt": "2021-07-30 10:45:37",
  9563. "updatedBy": 3620,
  9564. "updatedAt": "2021-08-09 16:39:41",
  9565. "perms": "diyForm.cardMake",
  9566. "iconUrl": "",
  9567. "description": "",
  9568. "moduleId": null,
  9569. "isOuterChain": 0,
  9570. "isPopup": 0,
  9571. "cache": 0,
  9572. "component": null,
  9573. "children": [
  9574. {
  9575. "id": 5542,
  9576. "menuCode": "diyForm.cardMake.process",
  9577. "systemCode": null,
  9578. "menuName": "流程配置",
  9579. "url": "",
  9580. "rightType": 3,
  9581. "parentCode": 5523,
  9582. "displayOrder": 0,
  9583. "isApp": 0,
  9584. "enabled": 1,
  9585. "createdBy": 3620,
  9586. "createdAt": "2021-08-09 11:44:33",
  9587. "updatedBy": null,
  9588. "updatedAt": null,
  9589. "perms": "diyForm.cardMake.process",
  9590. "iconUrl": "",
  9591. "description": "",
  9592. "moduleId": null,
  9593. "isOuterChain": 0,
  9594. "isPopup": 0,
  9595. "cache": 0,
  9596. "component": null,
  9597. "children": null,
  9598. "default": true,
  9599. "leaf": false
  9600. },
  9601. {
  9602. "id": 5550,
  9603. "menuCode": "diyForm.cardMake.update",
  9604. "systemCode": null,
  9605. "menuName": "修改",
  9606. "url": "",
  9607. "rightType": 3,
  9608. "parentCode": 5523,
  9609. "displayOrder": 0,
  9610. "isApp": 0,
  9611. "enabled": 1,
  9612. "createdBy": 3620,
  9613. "createdAt": "2021-08-09 16:49:31",
  9614. "updatedBy": 3620,
  9615. "updatedAt": "2021-08-09 16:52:26",
  9616. "perms": "diyForm.cardMake.update",
  9617. "iconUrl": "",
  9618. "description": "",
  9619. "moduleId": null,
  9620. "isOuterChain": 0,
  9621. "isPopup": 0,
  9622. "cache": 0,
  9623. "component": null,
  9624. "children": null,
  9625. "default": true,
  9626. "leaf": false
  9627. },
  9628. {
  9629. "id": 5551,
  9630. "menuCode": "diyForm.cardMake.detail",
  9631. "systemCode": null,
  9632. "menuName": "详情",
  9633. "url": "",
  9634. "rightType": 3,
  9635. "parentCode": 5523,
  9636. "displayOrder": 0,
  9637. "isApp": 0,
  9638. "enabled": 1,
  9639. "createdBy": 3620,
  9640. "createdAt": "2021-08-09 16:49:57",
  9641. "updatedBy": null,
  9642. "updatedAt": null,
  9643. "perms": "diyForm.cardMake.detail",
  9644. "iconUrl": "",
  9645. "description": "",
  9646. "moduleId": null,
  9647. "isOuterChain": 0,
  9648. "isPopup": 0,
  9649. "cache": 0,
  9650. "component": null,
  9651. "children": null,
  9652. "default": true,
  9653. "leaf": false
  9654. },
  9655. {
  9656. "id": 5552,
  9657. "menuCode": "diyForm.cardMake.export",
  9658. "systemCode": null,
  9659. "menuName": "导出",
  9660. "url": "",
  9661. "rightType": 3,
  9662. "parentCode": 5523,
  9663. "displayOrder": 0,
  9664. "isApp": 0,
  9665. "enabled": 1,
  9666. "createdBy": 3620,
  9667. "createdAt": "2021-08-09 16:50:19",
  9668. "updatedBy": null,
  9669. "updatedAt": null,
  9670. "perms": "diyForm.cardMake.export",
  9671. "iconUrl": "",
  9672. "description": "",
  9673. "moduleId": null,
  9674. "isOuterChain": 0,
  9675. "isPopup": 0,
  9676. "cache": 0,
  9677. "component": null,
  9678. "children": null,
  9679. "default": true,
  9680. "leaf": false
  9681. }
  9682. ],
  9683. "default": true,
  9684. "leaf": true
  9685. },
  9686. {
  9687. "id": 5524,
  9688. "menuCode": "diyForm.workCardMake",
  9689. "systemCode": null,
  9690. "menuName": "工牌制作",
  9691. "url": "0",
  9692. "rightType": 2,
  9693. "parentCode": 5515,
  9694. "displayOrder": 0,
  9695. "isApp": 0,
  9696. "enabled": 1,
  9697. "createdBy": 3620,
  9698. "createdAt": "2021-07-30 10:46:01",
  9699. "updatedBy": 3620,
  9700. "updatedAt": "2021-08-09 16:39:58",
  9701. "perms": "diyForm.workCardMake",
  9702. "iconUrl": "",
  9703. "description": "",
  9704. "moduleId": null,
  9705. "isOuterChain": 0,
  9706. "isPopup": 0,
  9707. "cache": 0,
  9708. "component": null,
  9709. "children": [
  9710. {
  9711. "id": 5543,
  9712. "menuCode": "diyForm.workCardMake.process",
  9713. "systemCode": null,
  9714. "menuName": "流程配置",
  9715. "url": "",
  9716. "rightType": 3,
  9717. "parentCode": 5524,
  9718. "displayOrder": 0,
  9719. "isApp": 0,
  9720. "enabled": 1,
  9721. "createdBy": 3620,
  9722. "createdAt": "2021-08-09 11:44:57",
  9723. "updatedBy": 3620,
  9724. "updatedAt": "2021-08-09 16:53:09",
  9725. "perms": "diyForm.workCardMake.process",
  9726. "iconUrl": "",
  9727. "description": "",
  9728. "moduleId": null,
  9729. "isOuterChain": 0,
  9730. "isPopup": 0,
  9731. "cache": 0,
  9732. "component": null,
  9733. "children": null,
  9734. "default": true,
  9735. "leaf": false
  9736. },
  9737. {
  9738. "id": 5553,
  9739. "menuCode": "diyForm.workCardMake.update",
  9740. "systemCode": null,
  9741. "menuName": "修改",
  9742. "url": "",
  9743. "rightType": 3,
  9744. "parentCode": 5524,
  9745. "displayOrder": 0,
  9746. "isApp": 0,
  9747. "enabled": 1,
  9748. "createdBy": 3620,
  9749. "createdAt": "2021-08-09 16:51:05",
  9750. "updatedBy": null,
  9751. "updatedAt": null,
  9752. "perms": "diyForm.workCardMake.update",
  9753. "iconUrl": "",
  9754. "description": "",
  9755. "moduleId": null,
  9756. "isOuterChain": 0,
  9757. "isPopup": 0,
  9758. "cache": 0,
  9759. "component": null,
  9760. "children": null,
  9761. "default": true,
  9762. "leaf": false
  9763. },
  9764. {
  9765. "id": 5554,
  9766. "menuCode": "diyForm.workCardMake.detail",
  9767. "systemCode": null,
  9768. "menuName": "详情",
  9769. "url": "",
  9770. "rightType": 3,
  9771. "parentCode": 5524,
  9772. "displayOrder": 0,
  9773. "isApp": 0,
  9774. "enabled": 1,
  9775. "createdBy": 3620,
  9776. "createdAt": "2021-08-09 16:51:34",
  9777. "updatedBy": null,
  9778. "updatedAt": null,
  9779. "perms": "diyForm.workCardMake.detail",
  9780. "iconUrl": "",
  9781. "description": "",
  9782. "moduleId": null,
  9783. "isOuterChain": 0,
  9784. "isPopup": 0,
  9785. "cache": 0,
  9786. "component": null,
  9787. "children": null,
  9788. "default": true,
  9789. "leaf": false
  9790. },
  9791. {
  9792. "id": 5555,
  9793. "menuCode": "diyForm.workCardMake.export",
  9794. "systemCode": null,
  9795. "menuName": "导出",
  9796. "url": "",
  9797. "rightType": 3,
  9798. "parentCode": 5524,
  9799. "displayOrder": 0,
  9800. "isApp": 0,
  9801. "enabled": 1,
  9802. "createdBy": 3620,
  9803. "createdAt": "2021-08-09 16:52:03",
  9804. "updatedBy": null,
  9805. "updatedAt": null,
  9806. "perms": "diyForm.workCardMake.export",
  9807. "iconUrl": "",
  9808. "description": "",
  9809. "moduleId": null,
  9810. "isOuterChain": 0,
  9811. "isPopup": 0,
  9812. "cache": 0,
  9813. "component": null,
  9814. "children": null,
  9815. "default": true,
  9816. "leaf": false
  9817. }
  9818. ],
  9819. "default": true,
  9820. "leaf": true
  9821. },
  9822. {
  9823. "id": 5525,
  9824. "menuCode": "diyForm.nameplateMake",
  9825. "systemCode": null,
  9826. "menuName": "铭牌制作",
  9827. "url": "0",
  9828. "rightType": 2,
  9829. "parentCode": 5515,
  9830. "displayOrder": 0,
  9831. "isApp": 0,
  9832. "enabled": 1,
  9833. "createdBy": 3620,
  9834. "createdAt": "2021-07-30 10:46:35",
  9835. "updatedBy": 3620,
  9836. "updatedAt": "2021-08-09 16:40:11",
  9837. "perms": "diyForm.nameplateMake",
  9838. "iconUrl": "",
  9839. "description": "",
  9840. "moduleId": null,
  9841. "isOuterChain": 0,
  9842. "isPopup": 0,
  9843. "cache": 0,
  9844. "component": null,
  9845. "children": [
  9846. {
  9847. "id": 5544,
  9848. "menuCode": "diyForm.nameplateMake.process",
  9849. "systemCode": null,
  9850. "menuName": "流程配置",
  9851. "url": "",
  9852. "rightType": 3,
  9853. "parentCode": 5525,
  9854. "displayOrder": 0,
  9855. "isApp": 0,
  9856. "enabled": 1,
  9857. "createdBy": 3620,
  9858. "createdAt": "2021-08-09 11:46:03",
  9859. "updatedBy": null,
  9860. "updatedAt": null,
  9861. "perms": "diyForm.nameplateMake.process",
  9862. "iconUrl": "",
  9863. "description": "",
  9864. "moduleId": null,
  9865. "isOuterChain": 0,
  9866. "isPopup": 0,
  9867. "cache": 0,
  9868. "component": null,
  9869. "children": null,
  9870. "default": true,
  9871. "leaf": false
  9872. },
  9873. {
  9874. "id": 5556,
  9875. "menuCode": "diyForm.nameplateMake.update",
  9876. "systemCode": null,
  9877. "menuName": "修改",
  9878. "url": "0",
  9879. "rightType": 3,
  9880. "parentCode": 5525,
  9881. "displayOrder": 0,
  9882. "isApp": 0,
  9883. "enabled": 1,
  9884. "createdBy": 3620,
  9885. "createdAt": "2021-08-09 16:54:19",
  9886. "updatedBy": null,
  9887. "updatedAt": null,
  9888. "perms": "diyForm.nameplateMake.update",
  9889. "iconUrl": "",
  9890. "description": "",
  9891. "moduleId": null,
  9892. "isOuterChain": 0,
  9893. "isPopup": 0,
  9894. "cache": 0,
  9895. "component": null,
  9896. "children": null,
  9897. "default": true,
  9898. "leaf": true
  9899. },
  9900. {
  9901. "id": 5557,
  9902. "menuCode": "diyForm.nameplateMake.detail",
  9903. "systemCode": null,
  9904. "menuName": "详情",
  9905. "url": "0",
  9906. "rightType": 3,
  9907. "parentCode": 5525,
  9908. "displayOrder": 0,
  9909. "isApp": 0,
  9910. "enabled": 1,
  9911. "createdBy": 3620,
  9912. "createdAt": "2021-08-09 16:54:52",
  9913. "updatedBy": null,
  9914. "updatedAt": null,
  9915. "perms": "diyForm.nameplateMake.detail",
  9916. "iconUrl": "",
  9917. "description": "",
  9918. "moduleId": null,
  9919. "isOuterChain": 0,
  9920. "isPopup": 0,
  9921. "cache": 0,
  9922. "component": null,
  9923. "children": null,
  9924. "default": true,
  9925. "leaf": true
  9926. },
  9927. {
  9928. "id": 5558,
  9929. "menuCode": "diyForm.nameplateMake.export",
  9930. "systemCode": null,
  9931. "menuName": "导出",
  9932. "url": "0",
  9933. "rightType": 3,
  9934. "parentCode": 5525,
  9935. "displayOrder": 0,
  9936. "isApp": 0,
  9937. "enabled": 1,
  9938. "createdBy": 3620,
  9939. "createdAt": "2021-08-09 16:55:18",
  9940. "updatedBy": null,
  9941. "updatedAt": null,
  9942. "perms": "diyForm.nameplateMake.export",
  9943. "iconUrl": "",
  9944. "description": "",
  9945. "moduleId": null,
  9946. "isOuterChain": 0,
  9947. "isPopup": 0,
  9948. "cache": 0,
  9949. "component": null,
  9950. "children": null,
  9951. "default": true,
  9952. "leaf": true
  9953. }
  9954. ],
  9955. "default": true,
  9956. "leaf": true
  9957. },
  9958. {
  9959. "id": 5526,
  9960. "menuCode": "diyForm.workNumberCardMake",
  9961. "systemCode": null,
  9962. "menuName": "工号牌制作",
  9963. "url": "0",
  9964. "rightType": 2,
  9965. "parentCode": 5515,
  9966. "displayOrder": 0,
  9967. "isApp": 0,
  9968. "enabled": 1,
  9969. "createdBy": 3620,
  9970. "createdAt": "2021-07-30 10:46:55",
  9971. "updatedBy": 3620,
  9972. "updatedAt": "2021-08-09 16:36:32",
  9973. "perms": "diyForm.workNumberCardMake",
  9974. "iconUrl": "",
  9975. "description": "",
  9976. "moduleId": null,
  9977. "isOuterChain": 0,
  9978. "isPopup": 0,
  9979. "cache": 0,
  9980. "component": null,
  9981. "children": [
  9982. {
  9983. "id": 5545,
  9984. "menuCode": "diyForm.workNumberCardMake.process",
  9985. "systemCode": null,
  9986. "menuName": "流程配置",
  9987. "url": "",
  9988. "rightType": 3,
  9989. "parentCode": 5526,
  9990. "displayOrder": 0,
  9991. "isApp": 0,
  9992. "enabled": 1,
  9993. "createdBy": 3620,
  9994. "createdAt": "2021-08-09 11:48:22",
  9995. "updatedBy": null,
  9996. "updatedAt": null,
  9997. "perms": "diyForm.workNumberCardMake.process",
  9998. "iconUrl": "",
  9999. "description": "",
  10000. "moduleId": null,
  10001. "isOuterChain": 0,
  10002. "isPopup": 0,
  10003. "cache": 0,
  10004. "component": null,
  10005. "children": null,
  10006. "default": true,
  10007. "leaf": false
  10008. },
  10009. {
  10010. "id": 5559,
  10011. "menuCode": "diyForm.workNumberCardMake.update",
  10012. "systemCode": null,
  10013. "menuName": "修改",
  10014. "url": "0",
  10015. "rightType": 3,
  10016. "parentCode": 5526,
  10017. "displayOrder": 0,
  10018. "isApp": 0,
  10019. "enabled": 1,
  10020. "createdBy": 3620,
  10021. "createdAt": "2021-08-09 16:55:51",
  10022. "updatedBy": null,
  10023. "updatedAt": null,
  10024. "perms": "diyForm.workNumberCardMake.update",
  10025. "iconUrl": "",
  10026. "description": "",
  10027. "moduleId": null,
  10028. "isOuterChain": 0,
  10029. "isPopup": 0,
  10030. "cache": 0,
  10031. "component": null,
  10032. "children": null,
  10033. "default": true,
  10034. "leaf": true
  10035. },
  10036. {
  10037. "id": 5560,
  10038. "menuCode": "diyForm.workNumberCardMake.detail",
  10039. "systemCode": null,
  10040. "menuName": "详情",
  10041. "url": "0",
  10042. "rightType": 3,
  10043. "parentCode": 5526,
  10044. "displayOrder": 0,
  10045. "isApp": 0,
  10046. "enabled": 1,
  10047. "createdBy": 3620,
  10048. "createdAt": "2021-08-09 16:56:15",
  10049. "updatedBy": null,
  10050. "updatedAt": null,
  10051. "perms": "diyForm.workNumberCardMake.detail",
  10052. "iconUrl": "",
  10053. "description": "",
  10054. "moduleId": null,
  10055. "isOuterChain": 0,
  10056. "isPopup": 0,
  10057. "cache": 0,
  10058. "component": null,
  10059. "children": null,
  10060. "default": true,
  10061. "leaf": true
  10062. },
  10063. {
  10064. "id": 5561,
  10065. "menuCode": "diyForm.workNumberCardMake.export",
  10066. "systemCode": null,
  10067. "menuName": "导出",
  10068. "url": "0",
  10069. "rightType": 3,
  10070. "parentCode": 5526,
  10071. "displayOrder": 0,
  10072. "isApp": 0,
  10073. "enabled": 1,
  10074. "createdBy": 3620,
  10075. "createdAt": "2021-08-09 16:56:35",
  10076. "updatedBy": null,
  10077. "updatedAt": null,
  10078. "perms": "diyForm.workNumberCardMake.export",
  10079. "iconUrl": "",
  10080. "description": "",
  10081. "moduleId": null,
  10082. "isOuterChain": 0,
  10083. "isPopup": 0,
  10084. "cache": 0,
  10085. "component": null,
  10086. "children": null,
  10087. "default": true,
  10088. "leaf": true
  10089. }
  10090. ],
  10091. "default": true,
  10092. "leaf": true
  10093. },
  10094. {
  10095. "id": 5529,
  10096. "menuCode": "diyForm.project",
  10097. "systemCode": null,
  10098. "menuName": "项目表单",
  10099. "url": "",
  10100. "rightType": 2,
  10101. "parentCode": 5515,
  10102. "displayOrder": 0,
  10103. "isApp": 0,
  10104. "enabled": 1,
  10105. "createdBy": 3620,
  10106. "createdAt": "2021-08-03 11:25:54",
  10107. "updatedBy": null,
  10108. "updatedAt": null,
  10109. "perms": "diyForm.project",
  10110. "iconUrl": "",
  10111. "description": "",
  10112. "moduleId": null,
  10113. "isOuterChain": 0,
  10114. "isPopup": 0,
  10115. "cache": 0,
  10116. "component": null,
  10117. "children": null,
  10118. "default": true,
  10119. "leaf": false
  10120. },
  10121. {
  10122. "id": 5581,
  10123. "menuCode": "diyForm.expenseApply",
  10124. "systemCode": null,
  10125. "menuName": "报销单申请",
  10126. "url": "",
  10127. "rightType": 2,
  10128. "parentCode": 5515,
  10129. "displayOrder": 0,
  10130. "isApp": 0,
  10131. "enabled": 1,
  10132. "createdBy": 3620,
  10133. "createdAt": "2021-10-21 15:48:13",
  10134. "updatedBy": 3620,
  10135. "updatedAt": "2021-10-21 15:49:26",
  10136. "perms": "diyForm.expenseApply",
  10137. "iconUrl": "",
  10138. "description": "",
  10139. "moduleId": null,
  10140. "isOuterChain": 0,
  10141. "isPopup": 0,
  10142. "cache": 0,
  10143. "component": null,
  10144. "children": null,
  10145. "default": true,
  10146. "leaf": false
  10147. },
  10148. {
  10149. "id": 5584,
  10150. "menuCode": "diyForm.entranceAuth",
  10151. "systemCode": null,
  10152. "menuName": "门禁权限",
  10153. "url": "0",
  10154. "rightType": 2,
  10155. "parentCode": 5515,
  10156. "displayOrder": 0,
  10157. "isApp": 0,
  10158. "enabled": 1,
  10159. "createdBy": 3620,
  10160. "createdAt": "2021-11-26 17:19:53",
  10161. "updatedBy": null,
  10162. "updatedAt": null,
  10163. "perms": "diyForm.entranceAuth",
  10164. "iconUrl": "",
  10165. "description": "",
  10166. "moduleId": null,
  10167. "isOuterChain": 0,
  10168. "isPopup": 0,
  10169. "cache": 0,
  10170. "component": null,
  10171. "children": [
  10172. {
  10173. "id": 5585,
  10174. "menuCode": "diyForm.entranceAuth.process",
  10175. "systemCode": null,
  10176. "menuName": "流程配置",
  10177. "url": "",
  10178. "rightType": 3,
  10179. "parentCode": 5584,
  10180. "displayOrder": 0,
  10181. "isApp": 0,
  10182. "enabled": 1,
  10183. "createdBy": 3620,
  10184. "createdAt": "2021-11-26 17:35:54",
  10185. "updatedBy": null,
  10186. "updatedAt": null,
  10187. "perms": "diyForm.entranceAuth.process",
  10188. "iconUrl": "",
  10189. "description": "",
  10190. "moduleId": null,
  10191. "isOuterChain": 0,
  10192. "isPopup": 0,
  10193. "cache": 0,
  10194. "component": null,
  10195. "children": null,
  10196. "default": true,
  10197. "leaf": false
  10198. },
  10199. {
  10200. "id": 5586,
  10201. "menuCode": "diyForm.entranceAuth.update",
  10202. "systemCode": null,
  10203. "menuName": "修改",
  10204. "url": "0",
  10205. "rightType": 3,
  10206. "parentCode": 5584,
  10207. "displayOrder": 0,
  10208. "isApp": 0,
  10209. "enabled": 1,
  10210. "createdBy": 3620,
  10211. "createdAt": "2021-11-26 17:37:01",
  10212. "updatedBy": null,
  10213. "updatedAt": null,
  10214. "perms": "diyForm.entranceAuth.update",
  10215. "iconUrl": "",
  10216. "description": "",
  10217. "moduleId": null,
  10218. "isOuterChain": 0,
  10219. "isPopup": 0,
  10220. "cache": 0,
  10221. "component": null,
  10222. "children": null,
  10223. "default": true,
  10224. "leaf": true
  10225. },
  10226. {
  10227. "id": 5587,
  10228. "menuCode": "diyForm.entranceAuth.detail",
  10229. "systemCode": null,
  10230. "menuName": "详情",
  10231. "url": "0",
  10232. "rightType": 3,
  10233. "parentCode": 5584,
  10234. "displayOrder": 0,
  10235. "isApp": 0,
  10236. "enabled": 1,
  10237. "createdBy": 3620,
  10238. "createdAt": "2021-11-26 17:38:44",
  10239. "updatedBy": null,
  10240. "updatedAt": null,
  10241. "perms": "diyForm.entranceAuth.detail",
  10242. "iconUrl": "",
  10243. "description": "",
  10244. "moduleId": null,
  10245. "isOuterChain": 0,
  10246. "isPopup": 0,
  10247. "cache": 0,
  10248. "component": null,
  10249. "children": null,
  10250. "default": true,
  10251. "leaf": true
  10252. }
  10253. ],
  10254. "default": true,
  10255. "leaf": true
  10256. }
  10257. ],
  10258. "default": true,
  10259. "leaf": false
  10260. },
  10261. {
  10262. "id": 2,
  10263. "menuCode": "",
  10264. "systemCode": "",
  10265. "menuName": "系统管理",
  10266. "url": "",
  10267. "rightType": 1,
  10268. "parentCode": 0,
  10269. "displayOrder": 1,
  10270. "isApp": 0,
  10271. "enabled": 1,
  10272. "createdBy": 9999,
  10273. "createdAt": "2019-08-08 00:00:00",
  10274. "updatedBy": 529,
  10275. "updatedAt": "2020-02-18 08:45:56",
  10276. "perms": "pc:system",
  10277. "iconUrl": "",
  10278. "description": "旧服务之窗导入",
  10279. "moduleId": null,
  10280. "isOuterChain": 0,
  10281. "isPopup": 0,
  10282. "cache": 0,
  10283. "component": null,
  10284. "children": [
  10285. {
  10286. "id": 342,
  10287. "menuCode": "",
  10288. "systemCode": null,
  10289. "menuName": "日志统计",
  10290. "url": "admin/dinner/jumpOperationLog",
  10291. "rightType": 2,
  10292. "parentCode": 2,
  10293. "displayOrder": 0,
  10294. "isApp": 0,
  10295. "enabled": 1,
  10296. "createdBy": 9999,
  10297. "createdAt": "2019-08-08 00:00:00",
  10298. "updatedBy": 9999,
  10299. "updatedAt": "2019-08-08 00:00:00",
  10300. "perms": "pc:system:log",
  10301. "iconUrl": null,
  10302. "description": "旧服务之窗导入",
  10303. "moduleId": null,
  10304. "isOuterChain": 0,
  10305. "isPopup": 0,
  10306. "cache": 0,
  10307. "component": null,
  10308. "children": null,
  10309. "default": true,
  10310. "leaf": true
  10311. },
  10312. {
  10313. "id": 6,
  10314. "menuCode": "",
  10315. "systemCode": "",
  10316. "menuName": "用户管理",
  10317. "url": "admin/users/list?funcid=6",
  10318. "rightType": 2,
  10319. "parentCode": 2,
  10320. "displayOrder": 1,
  10321. "isApp": 0,
  10322. "enabled": 1,
  10323. "createdBy": 9999,
  10324. "createdAt": "2019-08-08 00:00:00",
  10325. "updatedBy": 9999,
  10326. "updatedAt": "2019-08-08 00:00:00",
  10327. "perms": "pc:system:user",
  10328. "iconUrl": null,
  10329. "description": "旧服务之窗导入",
  10330. "moduleId": null,
  10331. "isOuterChain": 0,
  10332. "isPopup": 0,
  10333. "cache": 0,
  10334. "component": null,
  10335. "children": [
  10336. {
  10337. "id": 314,
  10338. "menuCode": "",
  10339. "systemCode": null,
  10340. "menuName": "新增",
  10341. "url": "",
  10342. "rightType": 3,
  10343. "parentCode": 6,
  10344. "displayOrder": 0,
  10345. "isApp": 0,
  10346. "enabled": 1,
  10347. "createdBy": 9999,
  10348. "createdAt": "2019-08-08 00:00:00",
  10349. "updatedBy": 9999,
  10350. "updatedAt": "2019-08-08 00:00:00",
  10351. "perms": "pc:system:user:add",
  10352. "iconUrl": null,
  10353. "description": "旧服务之窗导入",
  10354. "moduleId": null,
  10355. "isOuterChain": 0,
  10356. "isPopup": 0,
  10357. "cache": 0,
  10358. "component": null,
  10359. "children": null,
  10360. "default": true,
  10361. "leaf": false
  10362. },
  10363. {
  10364. "id": 315,
  10365. "menuCode": "",
  10366. "systemCode": null,
  10367. "menuName": "修改",
  10368. "url": "",
  10369. "rightType": 3,
  10370. "parentCode": 6,
  10371. "displayOrder": 0,
  10372. "isApp": 0,
  10373. "enabled": 1,
  10374. "createdBy": 9999,
  10375. "createdAt": "2019-08-08 00:00:00",
  10376. "updatedBy": 9999,
  10377. "updatedAt": "2019-08-08 00:00:00",
  10378. "perms": "pc:system:user:edit",
  10379. "iconUrl": null,
  10380. "description": "旧服务之窗导入",
  10381. "moduleId": null,
  10382. "isOuterChain": 0,
  10383. "isPopup": 0,
  10384. "cache": 0,
  10385. "component": null,
  10386. "children": null,
  10387. "default": true,
  10388. "leaf": false
  10389. },
  10390. {
  10391. "id": 316,
  10392. "menuCode": "",
  10393. "systemCode": null,
  10394. "menuName": "删除",
  10395. "url": "",
  10396. "rightType": 3,
  10397. "parentCode": 6,
  10398. "displayOrder": 0,
  10399. "isApp": 0,
  10400. "enabled": 1,
  10401. "createdBy": 9999,
  10402. "createdAt": "2019-08-08 00:00:00",
  10403. "updatedBy": 9999,
  10404. "updatedAt": "2019-08-08 00:00:00",
  10405. "perms": "pc:system:user:delete",
  10406. "iconUrl": null,
  10407. "description": "旧服务之窗导入",
  10408. "moduleId": null,
  10409. "isOuterChain": 0,
  10410. "isPopup": 0,
  10411. "cache": 0,
  10412. "component": null,
  10413. "children": null,
  10414. "default": true,
  10415. "leaf": false
  10416. }
  10417. ],
  10418. "default": true,
  10419. "leaf": true
  10420. },
  10421. {
  10422. "id": 7,
  10423. "menuCode": "",
  10424. "systemCode": "",
  10425. "menuName": "角色管理",
  10426. "url": "admin/role/list?funcid=7",
  10427. "rightType": 2,
  10428. "parentCode": 2,
  10429. "displayOrder": 1,
  10430. "isApp": 0,
  10431. "enabled": 1,
  10432. "createdBy": 9999,
  10433. "createdAt": "2019-08-08 00:00:00",
  10434. "updatedBy": 9999,
  10435. "updatedAt": "2019-08-08 00:00:00",
  10436. "perms": "pc:system:role",
  10437. "iconUrl": null,
  10438. "description": "旧服务之窗导入",
  10439. "moduleId": null,
  10440. "isOuterChain": 0,
  10441. "isPopup": 0,
  10442. "cache": 0,
  10443. "component": null,
  10444. "children": [
  10445. {
  10446. "id": 254,
  10447. "menuCode": "",
  10448. "systemCode": null,
  10449. "menuName": "新增",
  10450. "url": null,
  10451. "rightType": 3,
  10452. "parentCode": 7,
  10453. "displayOrder": 1,
  10454. "isApp": 0,
  10455. "enabled": 1,
  10456. "createdBy": 9999,
  10457. "createdAt": "2019-08-08 00:00:00",
  10458. "updatedBy": 9999,
  10459. "updatedAt": "2019-08-08 00:00:00",
  10460. "perms": "pc:system:role:add",
  10461. "iconUrl": null,
  10462. "description": "旧服务之窗导入",
  10463. "moduleId": null,
  10464. "isOuterChain": 0,
  10465. "isPopup": 0,
  10466. "cache": 0,
  10467. "component": null,
  10468. "children": null,
  10469. "default": true,
  10470. "leaf": false
  10471. },
  10472. {
  10473. "id": 255,
  10474. "menuCode": "",
  10475. "systemCode": null,
  10476. "menuName": "修改",
  10477. "url": null,
  10478. "rightType": 3,
  10479. "parentCode": 7,
  10480. "displayOrder": 2,
  10481. "isApp": 0,
  10482. "enabled": 1,
  10483. "createdBy": 9999,
  10484. "createdAt": "2019-08-08 00:00:00",
  10485. "updatedBy": 9999,
  10486. "updatedAt": "2019-08-08 00:00:00",
  10487. "perms": "pc:system:role:edit",
  10488. "iconUrl": null,
  10489. "description": "旧服务之窗导入",
  10490. "moduleId": null,
  10491. "isOuterChain": 0,
  10492. "isPopup": 0,
  10493. "cache": 0,
  10494. "component": null,
  10495. "children": null,
  10496. "default": true,
  10497. "leaf": false
  10498. },
  10499. {
  10500. "id": 256,
  10501. "menuCode": "",
  10502. "systemCode": null,
  10503. "menuName": "删除",
  10504. "url": null,
  10505. "rightType": 3,
  10506. "parentCode": 7,
  10507. "displayOrder": 3,
  10508. "isApp": 0,
  10509. "enabled": 1,
  10510. "createdBy": 9999,
  10511. "createdAt": "2019-08-08 00:00:00",
  10512. "updatedBy": 9999,
  10513. "updatedAt": "2019-08-08 00:00:00",
  10514. "perms": "pc:system:role:delete",
  10515. "iconUrl": null,
  10516. "description": "旧服务之窗导入",
  10517. "moduleId": null,
  10518. "isOuterChain": 0,
  10519. "isPopup": 0,
  10520. "cache": 0,
  10521. "component": null,
  10522. "children": null,
  10523. "default": true,
  10524. "leaf": false
  10525. }
  10526. ],
  10527. "default": true,
  10528. "leaf": true
  10529. },
  10530. {
  10531. "id": 8,
  10532. "menuCode": "",
  10533. "systemCode": null,
  10534. "menuName": "菜单管理",
  10535. "url": "admin/menu/form?funcid=8",
  10536. "rightType": 2,
  10537. "parentCode": 2,
  10538. "displayOrder": 1,
  10539. "isApp": 0,
  10540. "enabled": 1,
  10541. "createdBy": 9999,
  10542. "createdAt": "2019-08-08 00:00:00",
  10543. "updatedBy": 9999,
  10544. "updatedAt": "2019-08-08 00:00:00",
  10545. "perms": "pc:system:menu",
  10546. "iconUrl": null,
  10547. "description": "旧服务之窗导入",
  10548. "moduleId": null,
  10549. "isOuterChain": 0,
  10550. "isPopup": 0,
  10551. "cache": 0,
  10552. "component": null,
  10553. "children": null,
  10554. "default": true,
  10555. "leaf": true
  10556. },
  10557. {
  10558. "id": 10,
  10559. "menuCode": "",
  10560. "systemCode": null,
  10561. "menuName": "功能管理",
  10562. "url": "admin/function/list?funcid=10",
  10563. "rightType": 2,
  10564. "parentCode": 2,
  10565. "displayOrder": 1,
  10566. "isApp": 0,
  10567. "enabled": 1,
  10568. "createdBy": 9999,
  10569. "createdAt": "2019-08-08 00:00:00",
  10570. "updatedBy": 9999,
  10571. "updatedAt": "2019-08-08 00:00:00",
  10572. "perms": "pc:system:function",
  10573. "iconUrl": null,
  10574. "description": "旧服务之窗导入",
  10575. "moduleId": null,
  10576. "isOuterChain": 0,
  10577. "isPopup": 0,
  10578. "cache": 0,
  10579. "component": null,
  10580. "children": null,
  10581. "default": true,
  10582. "leaf": true
  10583. }
  10584. ],
  10585. "default": true,
  10586. "leaf": false
  10587. },
  10588. {
  10589. "id": 139,
  10590. "menuCode": "",
  10591. "systemCode": null,
  10592. "menuName": "组织架构管理",
  10593. "url": null,
  10594. "rightType": 1,
  10595. "parentCode": 0,
  10596. "displayOrder": 1,
  10597. "isApp": 0,
  10598. "enabled": 1,
  10599. "createdBy": 9999,
  10600. "createdAt": "2019-08-08 00:00:00",
  10601. "updatedBy": 9999,
  10602. "updatedAt": "2019-08-08 00:00:00",
  10603. "perms": "pc:organization",
  10604. "iconUrl": null,
  10605. "description": "旧服务之窗导入",
  10606. "moduleId": null,
  10607. "isOuterChain": 0,
  10608. "isPopup": 0,
  10609. "cache": 0,
  10610. "component": null,
  10611. "children": [
  10612. {
  10613. "id": 146,
  10614. "menuCode": "",
  10615. "systemCode": null,
  10616. "menuName": "访客预约记录管理",
  10617. "url": "visitor/order/getVisitorOrderInfoList?funcid=146",
  10618. "rightType": 2,
  10619. "parentCode": 139,
  10620. "displayOrder": 0,
  10621. "isApp": 0,
  10622. "enabled": 1,
  10623. "createdBy": 9999,
  10624. "createdAt": "2019-08-08 00:00:00",
  10625. "updatedBy": 9999,
  10626. "updatedAt": "2019-08-08 00:00:00",
  10627. "perms": "pc:organization:visitor",
  10628. "iconUrl": null,
  10629. "description": "旧服务之窗导入",
  10630. "moduleId": null,
  10631. "isOuterChain": 0,
  10632. "isPopup": 0,
  10633. "cache": 0,
  10634. "component": null,
  10635. "children": null,
  10636. "default": true,
  10637. "leaf": true
  10638. },
  10639. {
  10640. "id": 351,
  10641. "menuCode": "",
  10642. "systemCode": null,
  10643. "menuName": "企业类型配置",
  10644. "url": "admin/virPerm/toVirPermTypePage",
  10645. "rightType": 2,
  10646. "parentCode": 139,
  10647. "displayOrder": 0,
  10648. "isApp": 0,
  10649. "enabled": 1,
  10650. "createdBy": 9999,
  10651. "createdAt": "2019-08-08 00:00:00",
  10652. "updatedBy": 9999,
  10653. "updatedAt": "2019-08-08 00:00:00",
  10654. "perms": "pc:organization:vir-perm",
  10655. "iconUrl": null,
  10656. "description": "旧服务之窗导入",
  10657. "moduleId": null,
  10658. "isOuterChain": 0,
  10659. "isPopup": 0,
  10660. "cache": 0,
  10661. "component": null,
  10662. "children": null,
  10663. "default": true,
  10664. "leaf": true
  10665. },
  10666. {
  10667. "id": 352,
  10668. "menuCode": "",
  10669. "systemCode": null,
  10670. "menuName": "身份类型配置",
  10671. "url": "admin/virPerm/toIdentityTypePage",
  10672. "rightType": 2,
  10673. "parentCode": 139,
  10674. "displayOrder": 0,
  10675. "isApp": 0,
  10676. "enabled": 1,
  10677. "createdBy": 9999,
  10678. "createdAt": "2019-08-08 00:00:00",
  10679. "updatedBy": 9999,
  10680. "updatedAt": "2019-08-08 00:00:00",
  10681. "perms": "pc:organization:identity",
  10682. "iconUrl": null,
  10683. "description": "旧服务之窗导入",
  10684. "moduleId": null,
  10685. "isOuterChain": 0,
  10686. "isPopup": 0,
  10687. "cache": 0,
  10688. "component": null,
  10689. "children": null,
  10690. "default": true,
  10691. "leaf": true
  10692. },
  10693. {
  10694. "id": 140,
  10695. "menuCode": "",
  10696. "systemCode": null,
  10697. "menuName": "项目组织信息管理",
  10698. "url": "busi/property/propertyList?funcid=140",
  10699. "rightType": 2,
  10700. "parentCode": 139,
  10701. "displayOrder": 140,
  10702. "isApp": 0,
  10703. "enabled": 1,
  10704. "createdBy": 9999,
  10705. "createdAt": "2019-08-08 00:00:00",
  10706. "updatedBy": 9999,
  10707. "updatedAt": "2019-08-08 00:00:00",
  10708. "perms": "pc:organization:project",
  10709. "iconUrl": null,
  10710. "description": "旧服务之窗导入",
  10711. "moduleId": null,
  10712. "isOuterChain": 0,
  10713. "isPopup": 0,
  10714. "cache": 0,
  10715. "component": null,
  10716. "children": [
  10717. {
  10718. "id": 344,
  10719. "menuCode": "",
  10720. "systemCode": null,
  10721. "menuName": "关于我们",
  10722. "url": null,
  10723. "rightType": 3,
  10724. "parentCode": 140,
  10725. "displayOrder": 0,
  10726. "isApp": 0,
  10727. "enabled": 1,
  10728. "createdBy": 9999,
  10729. "createdAt": "2019-08-08 00:00:00",
  10730. "updatedBy": 9999,
  10731. "updatedAt": "2019-08-08 00:00:00",
  10732. "perms": "pc:organization:project:aboutUs",
  10733. "iconUrl": null,
  10734. "description": "旧服务之窗导入",
  10735. "moduleId": null,
  10736. "isOuterChain": 0,
  10737. "isPopup": 0,
  10738. "cache": 0,
  10739. "component": null,
  10740. "children": null,
  10741. "default": true,
  10742. "leaf": false
  10743. },
  10744. {
  10745. "id": 257,
  10746. "menuCode": "",
  10747. "systemCode": null,
  10748. "menuName": "新增",
  10749. "url": null,
  10750. "rightType": 3,
  10751. "parentCode": 140,
  10752. "displayOrder": 1,
  10753. "isApp": 0,
  10754. "enabled": 1,
  10755. "createdBy": 9999,
  10756. "createdAt": "2019-08-08 00:00:00",
  10757. "updatedBy": 9999,
  10758. "updatedAt": "2019-08-08 00:00:00",
  10759. "perms": "pc:organization:project:add",
  10760. "iconUrl": null,
  10761. "description": "旧服务之窗导入",
  10762. "moduleId": null,
  10763. "isOuterChain": 0,
  10764. "isPopup": 0,
  10765. "cache": 0,
  10766. "component": null,
  10767. "children": null,
  10768. "default": true,
  10769. "leaf": false
  10770. },
  10771. {
  10772. "id": 258,
  10773. "menuCode": "",
  10774. "systemCode": null,
  10775. "menuName": "修改",
  10776. "url": null,
  10777. "rightType": 3,
  10778. "parentCode": 140,
  10779. "displayOrder": 2,
  10780. "isApp": 0,
  10781. "enabled": 1,
  10782. "createdBy": 9999,
  10783. "createdAt": "2019-08-08 00:00:00",
  10784. "updatedBy": 9999,
  10785. "updatedAt": "2019-08-08 00:00:00",
  10786. "perms": "pc:organization:project:edit",
  10787. "iconUrl": null,
  10788. "description": "旧服务之窗导入",
  10789. "moduleId": null,
  10790. "isOuterChain": 0,
  10791. "isPopup": 0,
  10792. "cache": 0,
  10793. "component": null,
  10794. "children": null,
  10795. "default": true,
  10796. "leaf": false
  10797. },
  10798. {
  10799. "id": 259,
  10800. "menuCode": "",
  10801. "systemCode": null,
  10802. "menuName": "删除",
  10803. "url": null,
  10804. "rightType": 3,
  10805. "parentCode": 140,
  10806. "displayOrder": 3,
  10807. "isApp": 0,
  10808. "enabled": 1,
  10809. "createdBy": 9999,
  10810. "createdAt": "2019-08-08 00:00:00",
  10811. "updatedBy": 9999,
  10812. "updatedAt": "2019-08-08 00:00:00",
  10813. "perms": "pc:organization:project:delete",
  10814. "iconUrl": null,
  10815. "description": "旧服务之窗导入",
  10816. "moduleId": null,
  10817. "isOuterChain": 0,
  10818. "isPopup": 0,
  10819. "cache": 0,
  10820. "component": null,
  10821. "children": null,
  10822. "default": true,
  10823. "leaf": false
  10824. },
  10825. {
  10826. "id": 260,
  10827. "menuCode": "",
  10828. "systemCode": null,
  10829. "menuName": "审核",
  10830. "url": null,
  10831. "rightType": 3,
  10832. "parentCode": 140,
  10833. "displayOrder": 4,
  10834. "isApp": 0,
  10835. "enabled": 1,
  10836. "createdBy": 9999,
  10837. "createdAt": "2019-08-08 00:00:00",
  10838. "updatedBy": 9999,
  10839. "updatedAt": "2019-08-08 00:00:00",
  10840. "perms": "pc:organization:project:approve",
  10841. "iconUrl": null,
  10842. "description": "旧服务之窗导入",
  10843. "moduleId": null,
  10844. "isOuterChain": 0,
  10845. "isPopup": 0,
  10846. "cache": 0,
  10847. "component": null,
  10848. "children": null,
  10849. "default": true,
  10850. "leaf": false
  10851. }
  10852. ],
  10853. "default": true,
  10854. "leaf": true
  10855. },
  10856. {
  10857. "id": 141,
  10858. "menuCode": "",
  10859. "systemCode": null,
  10860. "menuName": "楼宇楼栋信息管理",
  10861. "url": "busi/property/buildList?funcid=141",
  10862. "rightType": 2,
  10863. "parentCode": 139,
  10864. "displayOrder": 141,
  10865. "isApp": 0,
  10866. "enabled": 1,
  10867. "createdBy": 9999,
  10868. "createdAt": "2019-08-08 00:00:00",
  10869. "updatedBy": 9999,
  10870. "updatedAt": "2019-08-08 00:00:00",
  10871. "perms": "pc:organization:build",
  10872. "iconUrl": null,
  10873. "description": "旧服务之窗导入",
  10874. "moduleId": null,
  10875. "isOuterChain": 0,
  10876. "isPopup": 0,
  10877. "cache": 0,
  10878. "component": null,
  10879. "children": [
  10880. {
  10881. "id": 261,
  10882. "menuCode": "",
  10883. "systemCode": null,
  10884. "menuName": "新增",
  10885. "url": null,
  10886. "rightType": 3,
  10887. "parentCode": 141,
  10888. "displayOrder": 1,
  10889. "isApp": 0,
  10890. "enabled": 1,
  10891. "createdBy": 9999,
  10892. "createdAt": "2019-08-08 00:00:00",
  10893. "updatedBy": 9999,
  10894. "updatedAt": "2019-08-08 00:00:00",
  10895. "perms": "pc:organization:build:add",
  10896. "iconUrl": null,
  10897. "description": "旧服务之窗导入",
  10898. "moduleId": null,
  10899. "isOuterChain": 0,
  10900. "isPopup": 0,
  10901. "cache": 0,
  10902. "component": null,
  10903. "children": null,
  10904. "default": true,
  10905. "leaf": false
  10906. },
  10907. {
  10908. "id": 262,
  10909. "menuCode": "",
  10910. "systemCode": null,
  10911. "menuName": "修改",
  10912. "url": null,
  10913. "rightType": 3,
  10914. "parentCode": 141,
  10915. "displayOrder": 2,
  10916. "isApp": 0,
  10917. "enabled": 1,
  10918. "createdBy": 9999,
  10919. "createdAt": "2019-08-08 00:00:00",
  10920. "updatedBy": 9999,
  10921. "updatedAt": "2019-08-08 00:00:00",
  10922. "perms": "pc:organization:build:edit",
  10923. "iconUrl": null,
  10924. "description": "旧服务之窗导入",
  10925. "moduleId": null,
  10926. "isOuterChain": 0,
  10927. "isPopup": 0,
  10928. "cache": 0,
  10929. "component": null,
  10930. "children": null,
  10931. "default": true,
  10932. "leaf": false
  10933. },
  10934. {
  10935. "id": 263,
  10936. "menuCode": "",
  10937. "systemCode": null,
  10938. "menuName": "删除",
  10939. "url": null,
  10940. "rightType": 3,
  10941. "parentCode": 141,
  10942. "displayOrder": 3,
  10943. "isApp": 0,
  10944. "enabled": 1,
  10945. "createdBy": 9999,
  10946. "createdAt": "2019-08-08 00:00:00",
  10947. "updatedBy": 9999,
  10948. "updatedAt": "2019-08-08 00:00:00",
  10949. "perms": "pc:organization:build:delete",
  10950. "iconUrl": null,
  10951. "description": "旧服务之窗导入",
  10952. "moduleId": null,
  10953. "isOuterChain": 0,
  10954. "isPopup": 0,
  10955. "cache": 0,
  10956. "component": null,
  10957. "children": null,
  10958. "default": true,
  10959. "leaf": false
  10960. },
  10961. {
  10962. "id": 264,
  10963. "menuCode": "",
  10964. "systemCode": null,
  10965. "menuName": "审核",
  10966. "url": null,
  10967. "rightType": 3,
  10968. "parentCode": 141,
  10969. "displayOrder": 4,
  10970. "isApp": 0,
  10971. "enabled": 1,
  10972. "createdBy": 9999,
  10973. "createdAt": "2019-08-08 00:00:00",
  10974. "updatedBy": 9999,
  10975. "updatedAt": "2019-08-08 00:00:00",
  10976. "perms": "pc:organization:build:approve",
  10977. "iconUrl": null,
  10978. "description": "旧服务之窗导入",
  10979. "moduleId": null,
  10980. "isOuterChain": 0,
  10981. "isPopup": 0,
  10982. "cache": 0,
  10983. "component": null,
  10984. "children": null,
  10985. "default": true,
  10986. "leaf": false
  10987. }
  10988. ],
  10989. "default": true,
  10990. "leaf": true
  10991. },
  10992. {
  10993. "id": 143,
  10994. "menuCode": "",
  10995. "systemCode": null,
  10996. "menuName": "运营中心信息管理",
  10997. "url": "admin/organization/companylist?funcid=143",
  10998. "rightType": 2,
  10999. "parentCode": 139,
  11000. "displayOrder": 143,
  11001. "isApp": 0,
  11002. "enabled": 1,
  11003. "createdBy": 9999,
  11004. "createdAt": "2019-08-08 00:00:00",
  11005. "updatedBy": 9999,
  11006. "updatedAt": "2019-08-08 00:00:00",
  11007. "perms": "pc:organization:company",
  11008. "iconUrl": null,
  11009. "description": "旧服务之窗导入",
  11010. "moduleId": null,
  11011. "isOuterChain": 0,
  11012. "isPopup": 0,
  11013. "cache": 0,
  11014. "component": null,
  11015. "children": [
  11016. {
  11017. "id": 265,
  11018. "menuCode": "",
  11019. "systemCode": null,
  11020. "menuName": "新增",
  11021. "url": null,
  11022. "rightType": 3,
  11023. "parentCode": 143,
  11024. "displayOrder": 1,
  11025. "isApp": 0,
  11026. "enabled": 1,
  11027. "createdBy": 9999,
  11028. "createdAt": "2019-08-08 00:00:00",
  11029. "updatedBy": 9999,
  11030. "updatedAt": "2019-08-08 00:00:00",
  11031. "perms": "pc:organization:company:add",
  11032. "iconUrl": null,
  11033. "description": "旧服务之窗导入",
  11034. "moduleId": null,
  11035. "isOuterChain": 0,
  11036. "isPopup": 0,
  11037. "cache": 0,
  11038. "component": null,
  11039. "children": null,
  11040. "default": true,
  11041. "leaf": false
  11042. },
  11043. {
  11044. "id": 266,
  11045. "menuCode": "",
  11046. "systemCode": null,
  11047. "menuName": "修改",
  11048. "url": null,
  11049. "rightType": 3,
  11050. "parentCode": 143,
  11051. "displayOrder": 2,
  11052. "isApp": 0,
  11053. "enabled": 1,
  11054. "createdBy": 9999,
  11055. "createdAt": "2019-08-08 00:00:00",
  11056. "updatedBy": 9999,
  11057. "updatedAt": "2019-08-08 00:00:00",
  11058. "perms": "pc:organization:company:edit",
  11059. "iconUrl": null,
  11060. "description": "旧服务之窗导入",
  11061. "moduleId": null,
  11062. "isOuterChain": 0,
  11063. "isPopup": 0,
  11064. "cache": 0,
  11065. "component": null,
  11066. "children": null,
  11067. "default": true,
  11068. "leaf": false
  11069. },
  11070. {
  11071. "id": 267,
  11072. "menuCode": "",
  11073. "systemCode": null,
  11074. "menuName": "删除",
  11075. "url": null,
  11076. "rightType": 3,
  11077. "parentCode": 143,
  11078. "displayOrder": 3,
  11079. "isApp": 0,
  11080. "enabled": 1,
  11081. "createdBy": 9999,
  11082. "createdAt": "2019-08-08 00:00:00",
  11083. "updatedBy": 9999,
  11084. "updatedAt": "2019-08-08 00:00:00",
  11085. "perms": "pc:organization:company:delete",
  11086. "iconUrl": null,
  11087. "description": "旧服务之窗导入",
  11088. "moduleId": null,
  11089. "isOuterChain": 0,
  11090. "isPopup": 0,
  11091. "cache": 0,
  11092. "component": null,
  11093. "children": null,
  11094. "default": true,
  11095. "leaf": false
  11096. }
  11097. ],
  11098. "default": true,
  11099. "leaf": true
  11100. },
  11101. {
  11102. "id": 144,
  11103. "menuCode": "",
  11104. "systemCode": null,
  11105. "menuName": "部门信息管理",
  11106. "url": "admin/organization/deptlist?funcid=144",
  11107. "rightType": 2,
  11108. "parentCode": 139,
  11109. "displayOrder": 144,
  11110. "isApp": 0,
  11111. "enabled": 1,
  11112. "createdBy": 9999,
  11113. "createdAt": "2019-08-08 00:00:00",
  11114. "updatedBy": 9999,
  11115. "updatedAt": "2019-08-08 00:00:00",
  11116. "perms": "pc:organization:dept",
  11117. "iconUrl": null,
  11118. "description": "旧服务之窗导入",
  11119. "moduleId": null,
  11120. "isOuterChain": 0,
  11121. "isPopup": 0,
  11122. "cache": 0,
  11123. "component": null,
  11124. "children": [
  11125. {
  11126. "id": 268,
  11127. "menuCode": "",
  11128. "systemCode": null,
  11129. "menuName": "新增",
  11130. "url": null,
  11131. "rightType": 3,
  11132. "parentCode": 144,
  11133. "displayOrder": 1,
  11134. "isApp": 0,
  11135. "enabled": 1,
  11136. "createdBy": 9999,
  11137. "createdAt": "2019-08-08 00:00:00",
  11138. "updatedBy": 9999,
  11139. "updatedAt": "2019-08-08 00:00:00",
  11140. "perms": "pc:organization:dept:add",
  11141. "iconUrl": null,
  11142. "description": "旧服务之窗导入",
  11143. "moduleId": null,
  11144. "isOuterChain": 0,
  11145. "isPopup": 0,
  11146. "cache": 0,
  11147. "component": null,
  11148. "children": null,
  11149. "default": true,
  11150. "leaf": false
  11151. },
  11152. {
  11153. "id": 269,
  11154. "menuCode": "",
  11155. "systemCode": null,
  11156. "menuName": "修改",
  11157. "url": null,
  11158. "rightType": 3,
  11159. "parentCode": 144,
  11160. "displayOrder": 2,
  11161. "isApp": 0,
  11162. "enabled": 1,
  11163. "createdBy": 9999,
  11164. "createdAt": "2019-08-08 00:00:00",
  11165. "updatedBy": 9999,
  11166. "updatedAt": "2019-08-08 00:00:00",
  11167. "perms": "pc:organization:dept:edit",
  11168. "iconUrl": null,
  11169. "description": "旧服务之窗导入",
  11170. "moduleId": null,
  11171. "isOuterChain": 0,
  11172. "isPopup": 0,
  11173. "cache": 0,
  11174. "component": null,
  11175. "children": null,
  11176. "default": true,
  11177. "leaf": false
  11178. },
  11179. {
  11180. "id": 270,
  11181. "menuCode": "",
  11182. "systemCode": null,
  11183. "menuName": "删除",
  11184. "url": null,
  11185. "rightType": 3,
  11186. "parentCode": 144,
  11187. "displayOrder": 3,
  11188. "isApp": 0,
  11189. "enabled": 1,
  11190. "createdBy": 9999,
  11191. "createdAt": "2019-08-08 00:00:00",
  11192. "updatedBy": 9999,
  11193. "updatedAt": "2019-08-08 00:00:00",
  11194. "perms": "pc:organization:dept:delete",
  11195. "iconUrl": null,
  11196. "description": "旧服务之窗导入",
  11197. "moduleId": null,
  11198. "isOuterChain": 0,
  11199. "isPopup": 0,
  11200. "cache": 0,
  11201. "component": null,
  11202. "children": null,
  11203. "default": true,
  11204. "leaf": false
  11205. }
  11206. ],
  11207. "default": true,
  11208. "leaf": true
  11209. },
  11210. {
  11211. "id": 160,
  11212. "menuCode": "",
  11213. "systemCode": null,
  11214. "menuName": "企业资料信息管理",
  11215. "url": "admin/virtualArch/list?funcid=160",
  11216. "rightType": 2,
  11217. "parentCode": 139,
  11218. "displayOrder": 160,
  11219. "isApp": 0,
  11220. "enabled": 1,
  11221. "createdBy": 9999,
  11222. "createdAt": "2019-08-08 00:00:00",
  11223. "updatedBy": 9999,
  11224. "updatedAt": "2019-08-08 00:00:00",
  11225. "perms": "pc:organization:enterprise-data",
  11226. "iconUrl": null,
  11227. "description": "旧服务之窗导入",
  11228. "moduleId": null,
  11229. "isOuterChain": 0,
  11230. "isPopup": 0,
  11231. "cache": 0,
  11232. "component": null,
  11233. "children": [
  11234. {
  11235. "id": 271,
  11236. "menuCode": "",
  11237. "systemCode": null,
  11238. "menuName": "新增",
  11239. "url": null,
  11240. "rightType": 3,
  11241. "parentCode": 160,
  11242. "displayOrder": 1,
  11243. "isApp": 0,
  11244. "enabled": 1,
  11245. "createdBy": 9999,
  11246. "createdAt": "2019-08-08 00:00:00",
  11247. "updatedBy": 9999,
  11248. "updatedAt": "2019-08-08 00:00:00",
  11249. "perms": "pc:organization:enterprise-data:add",
  11250. "iconUrl": null,
  11251. "description": "旧服务之窗导入",
  11252. "moduleId": null,
  11253. "isOuterChain": 0,
  11254. "isPopup": 0,
  11255. "cache": 0,
  11256. "component": null,
  11257. "children": null,
  11258. "default": true,
  11259. "leaf": false
  11260. },
  11261. {
  11262. "id": 272,
  11263. "menuCode": "",
  11264. "systemCode": null,
  11265. "menuName": "修改",
  11266. "url": null,
  11267. "rightType": 3,
  11268. "parentCode": 160,
  11269. "displayOrder": 2,
  11270. "isApp": 0,
  11271. "enabled": 1,
  11272. "createdBy": 9999,
  11273. "createdAt": "2019-08-08 00:00:00",
  11274. "updatedBy": 9999,
  11275. "updatedAt": "2019-08-08 00:00:00",
  11276. "perms": "pc:organization:enterprise-data:edit",
  11277. "iconUrl": null,
  11278. "description": "旧服务之窗导入",
  11279. "moduleId": null,
  11280. "isOuterChain": 0,
  11281. "isPopup": 0,
  11282. "cache": 0,
  11283. "component": null,
  11284. "children": null,
  11285. "default": true,
  11286. "leaf": false
  11287. },
  11288. {
  11289. "id": 273,
  11290. "menuCode": "",
  11291. "systemCode": null,
  11292. "menuName": "删除",
  11293. "url": null,
  11294. "rightType": 3,
  11295. "parentCode": 160,
  11296. "displayOrder": 3,
  11297. "isApp": 0,
  11298. "enabled": 1,
  11299. "createdBy": 9999,
  11300. "createdAt": "2019-08-08 00:00:00",
  11301. "updatedBy": 9999,
  11302. "updatedAt": "2019-08-08 00:00:00",
  11303. "perms": "pc:organization:enterprise-data:delete",
  11304. "iconUrl": null,
  11305. "description": "旧服务之窗导入",
  11306. "moduleId": null,
  11307. "isOuterChain": 0,
  11308. "isPopup": 0,
  11309. "cache": 0,
  11310. "component": null,
  11311. "children": null,
  11312. "default": true,
  11313. "leaf": false
  11314. }
  11315. ],
  11316. "default": true,
  11317. "leaf": true
  11318. },
  11319. {
  11320. "id": 165,
  11321. "menuCode": "",
  11322. "systemCode": null,
  11323. "menuName": "楼层房间号配置",
  11324. "url": "admin/floor/jumpFloorAndRoomList?funcid=165",
  11325. "rightType": 2,
  11326. "parentCode": 139,
  11327. "displayOrder": 165,
  11328. "isApp": 0,
  11329. "enabled": 1,
  11330. "createdBy": 9999,
  11331. "createdAt": "2019-08-08 00:00:00",
  11332. "updatedBy": 9999,
  11333. "updatedAt": "2019-08-08 00:00:00",
  11334. "perms": "pc:organization:floor",
  11335. "iconUrl": null,
  11336. "description": "旧服务之窗导入",
  11337. "moduleId": null,
  11338. "isOuterChain": 0,
  11339. "isPopup": 0,
  11340. "cache": 0,
  11341. "component": null,
  11342. "children": [
  11343. {
  11344. "id": 274,
  11345. "menuCode": "",
  11346. "systemCode": null,
  11347. "menuName": "新增",
  11348. "url": null,
  11349. "rightType": 3,
  11350. "parentCode": 165,
  11351. "displayOrder": 1,
  11352. "isApp": 0,
  11353. "enabled": 1,
  11354. "createdBy": 9999,
  11355. "createdAt": "2019-08-08 00:00:00",
  11356. "updatedBy": 9999,
  11357. "updatedAt": "2019-08-08 00:00:00",
  11358. "perms": "pc:organization:floor:add",
  11359. "iconUrl": null,
  11360. "description": "旧服务之窗导入",
  11361. "moduleId": null,
  11362. "isOuterChain": 0,
  11363. "isPopup": 0,
  11364. "cache": 0,
  11365. "component": null,
  11366. "children": null,
  11367. "default": true,
  11368. "leaf": false
  11369. },
  11370. {
  11371. "id": 275,
  11372. "menuCode": "",
  11373. "systemCode": null,
  11374. "menuName": "修改",
  11375. "url": null,
  11376. "rightType": 3,
  11377. "parentCode": 165,
  11378. "displayOrder": 2,
  11379. "isApp": 0,
  11380. "enabled": 1,
  11381. "createdBy": 9999,
  11382. "createdAt": "2019-08-08 00:00:00",
  11383. "updatedBy": 9999,
  11384. "updatedAt": "2019-08-08 00:00:00",
  11385. "perms": "pc:organization:floor:edit",
  11386. "iconUrl": null,
  11387. "description": "旧服务之窗导入",
  11388. "moduleId": null,
  11389. "isOuterChain": 0,
  11390. "isPopup": 0,
  11391. "cache": 0,
  11392. "component": null,
  11393. "children": null,
  11394. "default": true,
  11395. "leaf": false
  11396. },
  11397. {
  11398. "id": 276,
  11399. "menuCode": "",
  11400. "systemCode": null,
  11401. "menuName": "删除",
  11402. "url": null,
  11403. "rightType": 3,
  11404. "parentCode": 165,
  11405. "displayOrder": 3,
  11406. "isApp": 0,
  11407. "enabled": 1,
  11408. "createdBy": 9999,
  11409. "createdAt": "2019-08-08 00:00:00",
  11410. "updatedBy": 9999,
  11411. "updatedAt": "2019-08-08 00:00:00",
  11412. "perms": "pc:organization:floor:delete",
  11413. "iconUrl": null,
  11414. "description": "旧服务之窗导入",
  11415. "moduleId": null,
  11416. "isOuterChain": 0,
  11417. "isPopup": 0,
  11418. "cache": 0,
  11419. "component": null,
  11420. "children": null,
  11421. "default": true,
  11422. "leaf": false
  11423. }
  11424. ],
  11425. "default": true,
  11426. "leaf": true
  11427. },
  11428. {
  11429. "id": 241,
  11430. "menuCode": "",
  11431. "systemCode": null,
  11432. "menuName": "企业账号配置管理",
  11433. "url": "admin/virtual/jumpVirProList?funcid=241",
  11434. "rightType": 2,
  11435. "parentCode": 139,
  11436. "displayOrder": 241,
  11437. "isApp": 0,
  11438. "enabled": 1,
  11439. "createdBy": 9999,
  11440. "createdAt": "2019-08-08 00:00:00",
  11441. "updatedBy": 9999,
  11442. "updatedAt": "2019-08-08 00:00:00",
  11443. "perms": "pc:organization:enterprise-account",
  11444. "iconUrl": null,
  11445. "description": "旧服务之窗导入",
  11446. "moduleId": null,
  11447. "isOuterChain": 0,
  11448. "isPopup": 0,
  11449. "cache": 0,
  11450. "component": null,
  11451. "children": [
  11452. {
  11453. "id": 280,
  11454. "menuCode": "",
  11455. "systemCode": null,
  11456. "menuName": "修改",
  11457. "url": null,
  11458. "rightType": 3,
  11459. "parentCode": 241,
  11460. "displayOrder": 2,
  11461. "isApp": 0,
  11462. "enabled": 1,
  11463. "createdBy": 9999,
  11464. "createdAt": "2019-08-08 00:00:00",
  11465. "updatedBy": 9999,
  11466. "updatedAt": "2019-08-08 00:00:00",
  11467. "perms": "pc:organization:enterprise-account:edit",
  11468. "iconUrl": null,
  11469. "description": "旧服务之窗导入",
  11470. "moduleId": null,
  11471. "isOuterChain": 0,
  11472. "isPopup": 0,
  11473. "cache": 0,
  11474. "component": null,
  11475. "children": null,
  11476. "default": true,
  11477. "leaf": false
  11478. }
  11479. ],
  11480. "default": true,
  11481. "leaf": true
  11482. },
  11483. {
  11484. "id": 313,
  11485. "menuCode": "",
  11486. "systemCode": null,
  11487. "menuName": "企业人员信息管理",
  11488. "url": "admin/dinner/jumpConsumerList?funcid=313",
  11489. "rightType": 2,
  11490. "parentCode": 139,
  11491. "displayOrder": 313,
  11492. "isApp": 0,
  11493. "enabled": 1,
  11494. "createdBy": 9999,
  11495. "createdAt": "2019-08-08 00:00:00",
  11496. "updatedBy": 9999,
  11497. "updatedAt": "2019-08-08 00:00:00",
  11498. "perms": "pc:dinner:account",
  11499. "iconUrl": null,
  11500. "description": "旧服务之窗导入",
  11501. "moduleId": null,
  11502. "isOuterChain": 0,
  11503. "isPopup": 0,
  11504. "cache": 0,
  11505. "component": null,
  11506. "children": null,
  11507. "default": true,
  11508. "leaf": true
  11509. }
  11510. ],
  11511. "default": true,
  11512. "leaf": false
  11513. },
  11514. {
  11515. "id": 5480,
  11516. "menuCode": "functionalService",
  11517. "systemCode": null,
  11518. "menuName": "功能服务管理",
  11519. "url": "",
  11520. "rightType": 1,
  11521. "parentCode": 0,
  11522. "displayOrder": 1,
  11523. "isApp": 0,
  11524. "enabled": 1,
  11525. "createdBy": 3617,
  11526. "createdAt": "2021-04-06 10:55:58",
  11527. "updatedBy": 3071,
  11528. "updatedAt": "2021-04-15 14:24:47",
  11529. "perms": "pc:setting",
  11530. "iconUrl": "",
  11531. "description": "",
  11532. "moduleId": null,
  11533. "isOuterChain": 0,
  11534. "isPopup": 0,
  11535. "cache": 0,
  11536. "component": null,
  11537. "children": [
  11538. {
  11539. "id": 5481,
  11540. "menuCode": "serviceCenter",
  11541. "systemCode": null,
  11542. "menuName": "功能服务中心",
  11543. "url": "",
  11544. "rightType": 2,
  11545. "parentCode": 5480,
  11546. "displayOrder": 0,
  11547. "isApp": 0,
  11548. "enabled": 1,
  11549. "createdBy": 3071,
  11550. "createdAt": "2021-04-06 11:06:32",
  11551. "updatedBy": null,
  11552. "updatedAt": null,
  11553. "perms": "functionalService.serviceCenter",
  11554. "iconUrl": "",
  11555. "description": "",
  11556. "moduleId": null,
  11557. "isOuterChain": 0,
  11558. "isPopup": 0,
  11559. "cache": 0,
  11560. "component": null,
  11561. "children": null,
  11562. "default": true,
  11563. "leaf": false
  11564. },
  11565. {
  11566. "id": 5482,
  11567. "menuCode": "myServiceCenter",
  11568. "systemCode": null,
  11569. "menuName": "我的功能服务",
  11570. "url": "",
  11571. "rightType": 2,
  11572. "parentCode": 5480,
  11573. "displayOrder": 0,
  11574. "isApp": 0,
  11575. "enabled": 1,
  11576. "createdBy": 3071,
  11577. "createdAt": "2021-04-06 11:30:57",
  11578. "updatedBy": 3071,
  11579. "updatedAt": "2021-04-06 11:31:31",
  11580. "perms": "functionalService.myServiceCenter",
  11581. "iconUrl": "",
  11582. "description": "",
  11583. "moduleId": null,
  11584. "isOuterChain": 0,
  11585. "isPopup": 0,
  11586. "cache": 0,
  11587. "component": null,
  11588. "children": null,
  11589. "default": true,
  11590. "leaf": false
  11591. }
  11592. ],
  11593. "default": true,
  11594. "leaf": false
  11595. },
  11596. {
  11597. "id": 335,
  11598. "menuCode": "",
  11599. "systemCode": null,
  11600. "menuName": "通行管理",
  11601. "url": null,
  11602. "rightType": 1,
  11603. "parentCode": 0,
  11604. "displayOrder": 3,
  11605. "isApp": 0,
  11606. "enabled": 1,
  11607. "createdBy": 9999,
  11608. "createdAt": "2019-08-08 00:00:00",
  11609. "updatedBy": 9999,
  11610. "updatedAt": "2019-08-08 00:00:00",
  11611. "perms": "pc:pass",
  11612. "iconUrl": null,
  11613. "description": "旧服务之窗导入",
  11614. "moduleId": null,
  11615. "isOuterChain": 0,
  11616. "isPopup": 0,
  11617. "cache": 0,
  11618. "component": null,
  11619. "children": [
  11620. {
  11621. "id": 336,
  11622. "menuCode": "",
  11623. "systemCode": null,
  11624. "menuName": "设备管理",
  11625. "url": "lingling/page/toDeviceListPage?funcid=336",
  11626. "rightType": 2,
  11627. "parentCode": 335,
  11628. "displayOrder": 0,
  11629. "isApp": 0,
  11630. "enabled": 1,
  11631. "createdBy": 9999,
  11632. "createdAt": "2019-08-08 00:00:00",
  11633. "updatedBy": 9999,
  11634. "updatedAt": "2019-08-08 00:00:00",
  11635. "perms": "pc:pass:device",
  11636. "iconUrl": null,
  11637. "description": "旧服务之窗导入",
  11638. "moduleId": null,
  11639. "isOuterChain": 0,
  11640. "isPopup": 0,
  11641. "cache": 0,
  11642. "component": null,
  11643. "children": null,
  11644. "default": true,
  11645. "leaf": true
  11646. },
  11647. {
  11648. "id": 337,
  11649. "menuCode": "",
  11650. "systemCode": null,
  11651. "menuName": "通行记录",
  11652. "url": "lingling/page/toPassHistoryPage?funcid=337",
  11653. "rightType": 2,
  11654. "parentCode": 335,
  11655. "displayOrder": 0,
  11656. "isApp": 0,
  11657. "enabled": 1,
  11658. "createdBy": 9999,
  11659. "createdAt": "2019-08-08 00:00:00",
  11660. "updatedBy": 9999,
  11661. "updatedAt": "2019-08-08 00:00:00",
  11662. "perms": "pc:pass:history",
  11663. "iconUrl": null,
  11664. "description": "旧服务之窗导入",
  11665. "moduleId": null,
  11666. "isOuterChain": 0,
  11667. "isPopup": 0,
  11668. "cache": 0,
  11669. "component": null,
  11670. "children": null,
  11671. "default": true,
  11672. "leaf": true
  11673. },
  11674. {
  11675. "id": 338,
  11676. "menuCode": "",
  11677. "systemCode": null,
  11678. "menuName": "通行权限",
  11679. "url": "lingling/page/toPassPermPage?funcid=338",
  11680. "rightType": 2,
  11681. "parentCode": 335,
  11682. "displayOrder": 0,
  11683. "isApp": 0,
  11684. "enabled": 1,
  11685. "createdBy": 9999,
  11686. "createdAt": "2019-08-08 00:00:00",
  11687. "updatedBy": 9999,
  11688. "updatedAt": "2019-08-08 00:00:00",
  11689. "perms": "pc:pass:perm",
  11690. "iconUrl": null,
  11691. "description": "旧服务之窗导入",
  11692. "moduleId": null,
  11693. "isOuterChain": 0,
  11694. "isPopup": 0,
  11695. "cache": 0,
  11696. "component": null,
  11697. "children": null,
  11698. "default": true,
  11699. "leaf": true
  11700. },
  11701. {
  11702. "id": 340,
  11703. "menuCode": "",
  11704. "systemCode": null,
  11705. "menuName": "员工通行",
  11706. "url": "lingling/page/toEmployeePass",
  11707. "rightType": 2,
  11708. "parentCode": 335,
  11709. "displayOrder": 0,
  11710. "isApp": 0,
  11711. "enabled": 1,
  11712. "createdBy": 9999,
  11713. "createdAt": "2019-08-08 00:00:00",
  11714. "updatedBy": 9999,
  11715. "updatedAt": "2019-08-08 00:00:00",
  11716. "perms": "pc:pass:employee",
  11717. "iconUrl": null,
  11718. "description": "旧服务之窗导入",
  11719. "moduleId": null,
  11720. "isOuterChain": 0,
  11721. "isPopup": 0,
  11722. "cache": 0,
  11723. "component": null,
  11724. "children": null,
  11725. "default": true,
  11726. "leaf": true
  11727. },
  11728. {
  11729. "id": 5308,
  11730. "menuCode": "",
  11731. "systemCode": null,
  11732. "menuName": "访客预约记录",
  11733. "url": "0",
  11734. "rightType": 2,
  11735. "parentCode": 335,
  11736. "displayOrder": 0,
  11737. "isApp": 0,
  11738. "enabled": 1,
  11739. "createdBy": 529,
  11740. "createdAt": "2019-11-07 19:35:35",
  11741. "updatedBy": 529,
  11742. "updatedAt": "2019-11-07 19:36:12",
  11743. "perms": "pc:pass:infoList",
  11744. "iconUrl": "",
  11745. "description": "访客预约记录",
  11746. "moduleId": null,
  11747. "isOuterChain": 0,
  11748. "isPopup": 0,
  11749. "cache": 0,
  11750. "component": null,
  11751. "children": null,
  11752. "default": true,
  11753. "leaf": true
  11754. },
  11755. {
  11756. "id": 5507,
  11757. "menuCode": "",
  11758. "systemCode": null,
  11759. "menuName": "通行数据分析",
  11760. "url": "",
  11761. "rightType": 2,
  11762. "parentCode": 335,
  11763. "displayOrder": 0,
  11764. "isApp": 0,
  11765. "enabled": 1,
  11766. "createdBy": 3071,
  11767. "createdAt": "2021-06-07 15:42:19",
  11768. "updatedBy": null,
  11769. "updatedAt": null,
  11770. "perms": "trafficManger.traffiStatistics",
  11771. "iconUrl": "",
  11772. "description": "新框架添加",
  11773. "moduleId": null,
  11774. "isOuterChain": 0,
  11775. "isPopup": 0,
  11776. "cache": 0,
  11777. "component": null,
  11778. "children": null,
  11779. "default": true,
  11780. "leaf": false
  11781. }
  11782. ],
  11783. "default": true,
  11784. "leaf": false
  11785. },
  11786. {
  11787. "id": 360,
  11788. "menuCode": "",
  11789. "systemCode": null,
  11790. "menuName": "企业管理",
  11791. "url": "",
  11792. "rightType": 1,
  11793. "parentCode": 0,
  11794. "displayOrder": 3,
  11795. "isApp": 0,
  11796. "enabled": 1,
  11797. "createdBy": 9999,
  11798. "createdAt": "2019-08-08 00:00:00",
  11799. "updatedBy": 9999,
  11800. "updatedAt": "2019-08-08 00:00:00",
  11801. "perms": "pc:company",
  11802. "iconUrl": null,
  11803. "description": "旧服务之窗导入",
  11804. "moduleId": null,
  11805. "isOuterChain": 0,
  11806. "isPopup": 0,
  11807. "cache": 0,
  11808. "component": null,
  11809. "children": [],
  11810. "default": true,
  11811. "leaf": false
  11812. },
  11813. {
  11814. "id": 5382,
  11815. "menuCode": "123",
  11816. "systemCode": null,
  11817. "menuName": "测试菜单",
  11818. "url": "http://www.baidu.com",
  11819. "rightType": 2,
  11820. "parentCode": 0,
  11821. "displayOrder": 5,
  11822. "isApp": 0,
  11823. "enabled": 1,
  11824. "createdBy": 3224,
  11825. "createdAt": "2020-04-16 10:32:47",
  11826. "updatedBy": null,
  11827. "updatedAt": null,
  11828. "perms": "pc:perm",
  11829. "iconUrl": "0",
  11830. "description": "ceshishihs",
  11831. "moduleId": null,
  11832. "isOuterChain": 0,
  11833. "isPopup": 0,
  11834. "cache": 0,
  11835. "component": null,
  11836. "children": [],
  11837. "default": true,
  11838. "leaf": true
  11839. },
  11840. {
  11841. "id": 5051,
  11842. "menuCode": "GGZX",
  11843. "systemCode": null,
  11844. "menuName": "公告资讯",
  11845. "url": "",
  11846. "rightType": 1,
  11847. "parentCode": 0,
  11848. "displayOrder": 6,
  11849. "isApp": 0,
  11850. "enabled": 1,
  11851. "createdBy": 2,
  11852. "createdAt": "2019-05-24 09:46:29",
  11853. "updatedBy": 2,
  11854. "updatedAt": "2019-05-24 09:47:51",
  11855. "perms": "notice",
  11856. "iconUrl": "",
  11857. "description": "公告资讯",
  11858. "moduleId": null,
  11859. "isOuterChain": 0,
  11860. "isPopup": 0,
  11861. "cache": 0,
  11862. "component": null,
  11863. "children": [
  11864. {
  11865. "id": 5052,
  11866. "menuCode": "",
  11867. "systemCode": null,
  11868. "menuName": "发布公告消息",
  11869. "url": "",
  11870. "rightType": 2,
  11871. "parentCode": 5051,
  11872. "displayOrder": 0,
  11873. "isApp": 0,
  11874. "enabled": 1,
  11875. "createdBy": 2,
  11876. "createdAt": "2019-05-24 09:54:04",
  11877. "updatedBy": null,
  11878. "updatedAt": null,
  11879. "perms": "notice.publish",
  11880. "iconUrl": "",
  11881. "description": "",
  11882. "moduleId": null,
  11883. "isOuterChain": 0,
  11884. "isPopup": 0,
  11885. "cache": 0,
  11886. "component": null,
  11887. "children": null,
  11888. "default": true,
  11889. "leaf": false
  11890. },
  11891. {
  11892. "id": 5053,
  11893. "menuCode": "",
  11894. "systemCode": null,
  11895. "menuName": "公告消息管理",
  11896. "url": "0",
  11897. "rightType": 2,
  11898. "parentCode": 5051,
  11899. "displayOrder": 1,
  11900. "isApp": 0,
  11901. "enabled": 1,
  11902. "createdBy": 2,
  11903. "createdAt": "2019-05-24 09:55:38",
  11904. "updatedBy": null,
  11905. "updatedAt": null,
  11906. "perms": "notice.manager",
  11907. "iconUrl": "",
  11908. "description": "",
  11909. "moduleId": null,
  11910. "isOuterChain": 0,
  11911. "isPopup": 0,
  11912. "cache": 0,
  11913. "component": null,
  11914. "children": [
  11915. {
  11916. "id": 5201,
  11917. "menuCode": "operate",
  11918. "systemCode": null,
  11919. "menuName": "新增/修改/删除",
  11920. "url": "",
  11921. "rightType": 3,
  11922. "parentCode": 5053,
  11923. "displayOrder": 0,
  11924. "isApp": 0,
  11925. "enabled": 1,
  11926. "createdBy": 1,
  11927. "createdAt": "2019-05-27 11:57:06",
  11928. "updatedBy": 2,
  11929. "updatedAt": "2019-07-19 09:25:48",
  11930. "perms": "notice.manager.operate",
  11931. "iconUrl": "",
  11932. "description": "新增/修改/删除",
  11933. "moduleId": null,
  11934. "isOuterChain": 0,
  11935. "isPopup": 0,
  11936. "cache": 0,
  11937. "component": null,
  11938. "children": null,
  11939. "default": true,
  11940. "leaf": false
  11941. },
  11942. {
  11943. "id": 5505,
  11944. "menuCode": "",
  11945. "systemCode": null,
  11946. "menuName": "多级审核",
  11947. "url": "",
  11948. "rightType": 3,
  11949. "parentCode": 5053,
  11950. "displayOrder": 0,
  11951. "isApp": 0,
  11952. "enabled": 1,
  11953. "createdBy": 2960,
  11954. "createdAt": "2021-06-02 18:00:52",
  11955. "updatedBy": null,
  11956. "updatedAt": null,
  11957. "perms": "pc:notice:roleMore:approve",
  11958. "iconUrl": "",
  11959. "description": "",
  11960. "moduleId": null,
  11961. "isOuterChain": 0,
  11962. "isPopup": 0,
  11963. "cache": 0,
  11964. "component": null,
  11965. "children": null,
  11966. "default": true,
  11967. "leaf": false
  11968. }
  11969. ],
  11970. "default": true,
  11971. "leaf": true
  11972. }
  11973. ],
  11974. "default": true,
  11975. "leaf": false
  11976. },
  11977. {
  11978. "id": 369,
  11979. "menuCode": "",
  11980. "systemCode": null,
  11981. "menuName": "报修管理",
  11982. "url": "",
  11983. "rightType": 1,
  11984. "parentCode": 0,
  11985. "displayOrder": 8,
  11986. "isApp": 0,
  11987. "enabled": 1,
  11988. "createdBy": 9999,
  11989. "createdAt": "2019-08-08 00:00:00",
  11990. "updatedBy": 9999,
  11991. "updatedAt": "2019-08-08 00:00:00",
  11992. "perms": "pc:repairService",
  11993. "iconUrl": null,
  11994. "description": "旧服务之窗导入",
  11995. "moduleId": null,
  11996. "isOuterChain": 0,
  11997. "isPopup": 0,
  11998. "cache": 0,
  11999. "component": null,
  12000. "children": [
  12001. {
  12002. "id": 370,
  12003. "menuCode": "",
  12004. "systemCode": null,
  12005. "menuName": "报修订单详情",
  12006. "url": "repairService/repairDetail?funcid=100",
  12007. "rightType": 2,
  12008. "parentCode": 369,
  12009. "displayOrder": 1,
  12010. "isApp": 0,
  12011. "enabled": 1,
  12012. "createdBy": 9999,
  12013. "createdAt": "2019-08-08 00:00:00",
  12014. "updatedBy": 9999,
  12015. "updatedAt": "2019-08-08 00:00:00",
  12016. "perms": "pc:repairService:detail",
  12017. "iconUrl": null,
  12018. "description": "旧服务之窗导入",
  12019. "moduleId": null,
  12020. "isOuterChain": 0,
  12021. "isPopup": 0,
  12022. "cache": 0,
  12023. "component": null,
  12024. "children": [
  12025. {
  12026. "id": 371,
  12027. "menuCode": "",
  12028. "systemCode": "20001",
  12029. "menuName": "报修审核",
  12030. "url": null,
  12031. "rightType": 3,
  12032. "parentCode": 370,
  12033. "displayOrder": 0,
  12034. "isApp": 0,
  12035. "enabled": 1,
  12036. "createdBy": 9999,
  12037. "createdAt": "2019-08-08 00:00:00",
  12038. "updatedBy": 9999,
  12039. "updatedAt": "2019-08-08 00:00:00",
  12040. "perms": "pc:repairService:detail:audit",
  12041. "iconUrl": null,
  12042. "description": "旧服务之窗导入",
  12043. "moduleId": null,
  12044. "isOuterChain": 0,
  12045. "isPopup": 0,
  12046. "cache": 0,
  12047. "component": null,
  12048. "children": null,
  12049. "default": true,
  12050. "leaf": false
  12051. }
  12052. ],
  12053. "default": true,
  12054. "leaf": true
  12055. }
  12056. ],
  12057. "default": true,
  12058. "leaf": false
  12059. },
  12060. {
  12061. "id": 5403,
  12062. "menuCode": "xunj",
  12063. "systemCode": null,
  12064. "menuName": "巡检",
  12065. "url": "",
  12066. "rightType": 1,
  12067. "parentCode": 0,
  12068. "displayOrder": 10,
  12069. "isApp": 0,
  12070. "enabled": 1,
  12071. "createdBy": 41,
  12072. "createdAt": "2020-09-23 18:20:11",
  12073. "updatedBy": 3071,
  12074. "updatedAt": "2020-09-24 15:18:21",
  12075. "perms": "pc:inspection",
  12076. "iconUrl": "",
  12077. "description": "简讯巡检",
  12078. "moduleId": null,
  12079. "isOuterChain": 0,
  12080. "isPopup": 0,
  12081. "cache": 0,
  12082. "component": null,
  12083. "children": [],
  12084. "default": true,
  12085. "leaf": false
  12086. },
  12087. {
  12088. "id": 5341,
  12089. "menuCode": "",
  12090. "systemCode": null,
  12091. "menuName": "外链测试目录2",
  12092. "url": "",
  12093. "rightType": 1,
  12094. "parentCode": 0,
  12095. "displayOrder": 98,
  12096. "isApp": 0,
  12097. "enabled": 1,
  12098. "createdBy": 2790,
  12099. "createdAt": "2020-02-20 13:06:20",
  12100. "updatedBy": null,
  12101. "updatedAt": null,
  12102. "perms": "wailian",
  12103. "iconUrl": "",
  12104. "description": "",
  12105. "moduleId": null,
  12106. "isOuterChain": 1,
  12107. "isPopup": 0,
  12108. "cache": 0,
  12109. "component": null,
  12110. "children": [
  12111. {
  12112. "id": 5343,
  12113. "menuCode": "",
  12114. "systemCode": null,
  12115. "menuName": "外链测试1",
  12116. "url": "www.xixi.com",
  12117. "rightType": 2,
  12118. "parentCode": 5341,
  12119. "displayOrder": 1,
  12120. "isApp": 0,
  12121. "enabled": 1,
  12122. "createdBy": 2790,
  12123. "createdAt": "2020-02-20 13:08:17",
  12124. "updatedBy": null,
  12125. "updatedAt": null,
  12126. "perms": "wailian:xixi",
  12127. "iconUrl": "",
  12128. "description": "",
  12129. "moduleId": null,
  12130. "isOuterChain": 1,
  12131. "isPopup": 0,
  12132. "cache": 0,
  12133. "component": null,
  12134. "children": null,
  12135. "default": true,
  12136. "leaf": true
  12137. },
  12138. {
  12139. "id": 5344,
  12140. "menuCode": "",
  12141. "systemCode": null,
  12142. "menuName": "外链测试2",
  12143. "url": "www.lili.com",
  12144. "rightType": 2,
  12145. "parentCode": 5341,
  12146. "displayOrder": 2,
  12147. "isApp": 0,
  12148. "enabled": 1,
  12149. "createdBy": 2790,
  12150. "createdAt": "2020-02-20 13:08:59",
  12151. "updatedBy": null,
  12152. "updatedAt": null,
  12153. "perms": "wailian:lili",
  12154. "iconUrl": "",
  12155. "description": "",
  12156. "moduleId": null,
  12157. "isOuterChain": 1,
  12158. "isPopup": 0,
  12159. "cache": 0,
  12160. "component": null,
  12161. "children": null,
  12162. "default": true,
  12163. "leaf": true
  12164. }
  12165. ],
  12166. "default": true,
  12167. "leaf": false
  12168. },
  12169. {
  12170. "id": 376,
  12171. "menuCode": "",
  12172. "systemCode": null,
  12173. "menuName": "企业饭卡",
  12174. "url": null,
  12175. "rightType": 1,
  12176. "parentCode": 0,
  12177. "displayOrder": 99,
  12178. "isApp": 0,
  12179. "enabled": 1,
  12180. "createdBy": 9999,
  12181. "createdAt": "2019-08-08 00:00:00",
  12182. "updatedBy": 9999,
  12183. "updatedAt": "2019-08-08 00:00:00",
  12184. "perms": "pc:virfood",
  12185. "iconUrl": null,
  12186. "description": "旧服务之窗导入",
  12187. "moduleId": null,
  12188. "isOuterChain": 0,
  12189. "isPopup": 0,
  12190. "cache": 0,
  12191. "component": null,
  12192. "children": [
  12193. {
  12194. "id": 377,
  12195. "menuCode": "",
  12196. "systemCode": null,
  12197. "menuName": "饭卡管理",
  12198. "url": "virtfood/foodmanager",
  12199. "rightType": 2,
  12200. "parentCode": 376,
  12201. "displayOrder": 1,
  12202. "isApp": 0,
  12203. "enabled": 1,
  12204. "createdBy": 9999,
  12205. "createdAt": "2019-08-08 00:00:00",
  12206. "updatedBy": 9999,
  12207. "updatedAt": "2019-08-08 00:00:00",
  12208. "perms": "pc:virfood:foodmanager",
  12209. "iconUrl": null,
  12210. "description": "旧服务之窗导入",
  12211. "moduleId": null,
  12212. "isOuterChain": 0,
  12213. "isPopup": 0,
  12214. "cache": 0,
  12215. "component": null,
  12216. "children": null,
  12217. "default": true,
  12218. "leaf": true
  12219. },
  12220. {
  12221. "id": 378,
  12222. "menuCode": "",
  12223. "systemCode": null,
  12224. "menuName": "饭卡配置",
  12225. "url": "virtfood/foodconfig",
  12226. "rightType": 2,
  12227. "parentCode": 376,
  12228. "displayOrder": 2,
  12229. "isApp": 0,
  12230. "enabled": 1,
  12231. "createdBy": 9999,
  12232. "createdAt": "2019-08-08 00:00:00",
  12233. "updatedBy": 9999,
  12234. "updatedAt": "2019-08-08 00:00:00",
  12235. "perms": "pc:virfood:foodconfig",
  12236. "iconUrl": null,
  12237. "description": "旧服务之窗导入",
  12238. "moduleId": null,
  12239. "isOuterChain": 0,
  12240. "isPopup": 0,
  12241. "cache": 0,
  12242. "component": null,
  12243. "children": null,
  12244. "default": true,
  12245. "leaf": true
  12246. }
  12247. ],
  12248. "default": true,
  12249. "leaf": false
  12250. },
  12251. {
  12252. "id": 5339,
  12253. "menuCode": "",
  12254. "systemCode": null,
  12255. "menuName": "外链测试目录1",
  12256. "url": "",
  12257. "rightType": 1,
  12258. "parentCode": 0,
  12259. "displayOrder": 99,
  12260. "isApp": 0,
  12261. "enabled": 1,
  12262. "createdBy": 2790,
  12263. "createdAt": "2020-02-20 12:56:42",
  12264. "updatedBy": 2790,
  12265. "updatedAt": "2020-02-20 13:05:59",
  12266. "perms": "wailian",
  12267. "iconUrl": "",
  12268. "description": "",
  12269. "moduleId": null,
  12270. "isOuterChain": 1,
  12271. "isPopup": 0,
  12272. "cache": 0,
  12273. "component": null,
  12274. "children": [
  12275. {
  12276. "id": 5342,
  12277. "menuCode": "",
  12278. "systemCode": null,
  12279. "menuName": "外链2",
  12280. "url": "www.imooc.com",
  12281. "rightType": 2,
  12282. "parentCode": 5339,
  12283. "displayOrder": 0,
  12284. "isApp": 0,
  12285. "enabled": 1,
  12286. "createdBy": 2790,
  12287. "createdAt": "2020-02-20 13:07:02",
  12288. "updatedBy": 2790,
  12289. "updatedAt": "2020-02-20 13:07:25",
  12290. "perms": "wailian:imooc",
  12291. "iconUrl": "",
  12292. "description": "",
  12293. "moduleId": null,
  12294. "isOuterChain": 1,
  12295. "isPopup": 0,
  12296. "cache": 0,
  12297. "component": null,
  12298. "children": null,
  12299. "default": true,
  12300. "leaf": true
  12301. },
  12302. {
  12303. "id": 5340,
  12304. "menuCode": "",
  12305. "systemCode": null,
  12306. "menuName": "外链1",
  12307. "url": "www.baidu.com",
  12308. "rightType": 2,
  12309. "parentCode": 5339,
  12310. "displayOrder": 1,
  12311. "isApp": 0,
  12312. "enabled": 1,
  12313. "createdBy": 2790,
  12314. "createdAt": "2020-02-20 12:57:32",
  12315. "updatedBy": null,
  12316. "updatedAt": null,
  12317. "perms": "wailian:baidu",
  12318. "iconUrl": "",
  12319. "description": "",
  12320. "moduleId": null,
  12321. "isOuterChain": 1,
  12322. "isPopup": 1,
  12323. "cache": 0,
  12324. "component": null,
  12325. "children": null,
  12326. "default": true,
  12327. "leaf": true
  12328. }
  12329. ],
  12330. "default": true,
  12331. "leaf": false
  12332. },
  12333. {
  12334. "id": 161,
  12335. "menuCode": "",
  12336. "systemCode": null,
  12337. "menuName": "基础信息",
  12338. "url": "",
  12339. "rightType": 1,
  12340. "parentCode": 0,
  12341. "displayOrder": 161,
  12342. "isApp": 0,
  12343. "enabled": 1,
  12344. "createdBy": 9999,
  12345. "createdAt": "2019-08-08 00:00:00",
  12346. "updatedBy": 9999,
  12347. "updatedAt": "2019-08-08 00:00:00",
  12348. "perms": "pc:basics",
  12349. "iconUrl": null,
  12350. "description": "旧服务之窗导入",
  12351. "moduleId": null,
  12352. "isOuterChain": 0,
  12353. "isPopup": 0,
  12354. "cache": 0,
  12355. "component": null,
  12356. "children": [
  12357. {
  12358. "id": 19,
  12359. "menuCode": "",
  12360. "systemCode": null,
  12361. "menuName": "数据字典",
  12362. "url": "system/elementgroup?funcid=19",
  12363. "rightType": 2,
  12364. "parentCode": 161,
  12365. "displayOrder": 0,
  12366. "isApp": 0,
  12367. "enabled": 1,
  12368. "createdBy": 9999,
  12369. "createdAt": "2019-08-08 00:00:00",
  12370. "updatedBy": 9999,
  12371. "updatedAt": "2019-08-08 00:00:00",
  12372. "perms": "pc:basics:dictionary",
  12373. "iconUrl": null,
  12374. "description": "旧服务之窗导入",
  12375. "moduleId": null,
  12376. "isOuterChain": 0,
  12377. "isPopup": 0,
  12378. "cache": 0,
  12379. "component": null,
  12380. "children": [
  12381. {
  12382. "id": 290,
  12383. "menuCode": "",
  12384. "systemCode": null,
  12385. "menuName": "新增",
  12386. "url": null,
  12387. "rightType": 3,
  12388. "parentCode": 19,
  12389. "displayOrder": 1,
  12390. "isApp": 0,
  12391. "enabled": 1,
  12392. "createdBy": 9999,
  12393. "createdAt": "2019-08-08 00:00:00",
  12394. "updatedBy": 9999,
  12395. "updatedAt": "2019-08-08 00:00:00",
  12396. "perms": "pc:basics:dictionary:add",
  12397. "iconUrl": null,
  12398. "description": "旧服务之窗导入",
  12399. "moduleId": null,
  12400. "isOuterChain": 0,
  12401. "isPopup": 0,
  12402. "cache": 0,
  12403. "component": null,
  12404. "children": null,
  12405. "default": true,
  12406. "leaf": false
  12407. },
  12408. {
  12409. "id": 291,
  12410. "menuCode": "",
  12411. "systemCode": null,
  12412. "menuName": "修改",
  12413. "url": null,
  12414. "rightType": 3,
  12415. "parentCode": 19,
  12416. "displayOrder": 2,
  12417. "isApp": 0,
  12418. "enabled": 1,
  12419. "createdBy": 9999,
  12420. "createdAt": "2019-08-08 00:00:00",
  12421. "updatedBy": 9999,
  12422. "updatedAt": "2019-08-08 00:00:00",
  12423. "perms": "pc:basics:dictionary:edit",
  12424. "iconUrl": null,
  12425. "description": "旧服务之窗导入",
  12426. "moduleId": null,
  12427. "isOuterChain": 0,
  12428. "isPopup": 0,
  12429. "cache": 0,
  12430. "component": null,
  12431. "children": null,
  12432. "default": true,
  12433. "leaf": false
  12434. },
  12435. {
  12436. "id": 292,
  12437. "menuCode": "",
  12438. "systemCode": null,
  12439. "menuName": "删除",
  12440. "url": null,
  12441. "rightType": 3,
  12442. "parentCode": 19,
  12443. "displayOrder": 3,
  12444. "isApp": 0,
  12445. "enabled": 1,
  12446. "createdBy": 9999,
  12447. "createdAt": "2019-08-08 00:00:00",
  12448. "updatedBy": 9999,
  12449. "updatedAt": "2019-08-08 00:00:00",
  12450. "perms": "pc:basics:dictionary:delete",
  12451. "iconUrl": null,
  12452. "description": "旧服务之窗导入",
  12453. "moduleId": null,
  12454. "isOuterChain": 0,
  12455. "isPopup": 0,
  12456. "cache": 0,
  12457. "component": null,
  12458. "children": null,
  12459. "default": true,
  12460. "leaf": false
  12461. }
  12462. ],
  12463. "default": true,
  12464. "leaf": true
  12465. },
  12466. {
  12467. "id": 317,
  12468. "menuCode": "",
  12469. "systemCode": null,
  12470. "menuName": "商圈banner管理",
  12471. "url": "notice/banner/discoverBannerPage",
  12472. "rightType": 2,
  12473. "parentCode": 161,
  12474. "displayOrder": 0,
  12475. "isApp": 0,
  12476. "enabled": 1,
  12477. "createdBy": 9999,
  12478. "createdAt": "2019-08-08 00:00:00",
  12479. "updatedBy": 9999,
  12480. "updatedAt": "2019-08-08 00:00:00",
  12481. "perms": "pc:basics:tradearea",
  12482. "iconUrl": null,
  12483. "description": "旧服务之窗导入",
  12484. "moduleId": null,
  12485. "isOuterChain": 0,
  12486. "isPopup": 0,
  12487. "cache": 0,
  12488. "component": null,
  12489. "children": [
  12490. {
  12491. "id": 318,
  12492. "menuCode": "",
  12493. "systemCode": null,
  12494. "menuName": "新增",
  12495. "url": null,
  12496. "rightType": 3,
  12497. "parentCode": 317,
  12498. "displayOrder": 0,
  12499. "isApp": 0,
  12500. "enabled": 1,
  12501. "createdBy": 9999,
  12502. "createdAt": "2019-08-08 00:00:00",
  12503. "updatedBy": 9999,
  12504. "updatedAt": "2019-08-08 00:00:00",
  12505. "perms": "pc:basics:tradearea:add",
  12506. "iconUrl": null,
  12507. "description": "旧服务之窗导入",
  12508. "moduleId": null,
  12509. "isOuterChain": 0,
  12510. "isPopup": 0,
  12511. "cache": 0,
  12512. "component": null,
  12513. "children": null,
  12514. "default": true,
  12515. "leaf": false
  12516. },
  12517. {
  12518. "id": 319,
  12519. "menuCode": "",
  12520. "systemCode": null,
  12521. "menuName": "修改",
  12522. "url": null,
  12523. "rightType": 3,
  12524. "parentCode": 317,
  12525. "displayOrder": 0,
  12526. "isApp": 0,
  12527. "enabled": 1,
  12528. "createdBy": 9999,
  12529. "createdAt": "2019-08-08 00:00:00",
  12530. "updatedBy": 9999,
  12531. "updatedAt": "2019-08-08 00:00:00",
  12532. "perms": "pc:basics:tradearea:edit",
  12533. "iconUrl": null,
  12534. "description": "旧服务之窗导入",
  12535. "moduleId": null,
  12536. "isOuterChain": 0,
  12537. "isPopup": 0,
  12538. "cache": 0,
  12539. "component": null,
  12540. "children": null,
  12541. "default": true,
  12542. "leaf": false
  12543. },
  12544. {
  12545. "id": 320,
  12546. "menuCode": "",
  12547. "systemCode": null,
  12548. "menuName": "删除",
  12549. "url": null,
  12550. "rightType": 3,
  12551. "parentCode": 317,
  12552. "displayOrder": 0,
  12553. "isApp": 0,
  12554. "enabled": 1,
  12555. "createdBy": 9999,
  12556. "createdAt": "2019-08-08 00:00:00",
  12557. "updatedBy": 9999,
  12558. "updatedAt": "2019-08-08 00:00:00",
  12559. "perms": "pc:basics:tradearea:delete",
  12560. "iconUrl": null,
  12561. "description": "旧服务之窗导入",
  12562. "moduleId": null,
  12563. "isOuterChain": 0,
  12564. "isPopup": 0,
  12565. "cache": 0,
  12566. "component": null,
  12567. "children": null,
  12568. "default": true,
  12569. "leaf": false
  12570. }
  12571. ],
  12572. "default": true,
  12573. "leaf": true
  12574. },
  12575. {
  12576. "id": 5395,
  12577. "menuCode": "",
  12578. "systemCode": null,
  12579. "menuName": "提示音频管理",
  12580. "url": "",
  12581. "rightType": 1,
  12582. "parentCode": 161,
  12583. "displayOrder": 0,
  12584. "isApp": 0,
  12585. "enabled": 1,
  12586. "createdBy": 2960,
  12587. "createdAt": "2020-06-23 09:40:33",
  12588. "updatedBy": null,
  12589. "updatedAt": null,
  12590. "perms": "",
  12591. "iconUrl": "",
  12592. "description": "",
  12593. "moduleId": null,
  12594. "isOuterChain": 0,
  12595. "isPopup": 0,
  12596. "cache": 0,
  12597. "component": null,
  12598. "children": null,
  12599. "default": true,
  12600. "leaf": false
  12601. },
  12602. {
  12603. "id": 353,
  12604. "menuCode": "",
  12605. "systemCode": null,
  12606. "menuName": "历史短信查询",
  12607. "url": "admin/sms/info/jumpSMSList?funcid=353",
  12608. "rightType": 2,
  12609. "parentCode": 161,
  12610. "displayOrder": 5,
  12611. "isApp": 0,
  12612. "enabled": 1,
  12613. "createdBy": 9999,
  12614. "createdAt": "2019-08-08 00:00:00",
  12615. "updatedBy": 9999,
  12616. "updatedAt": "2019-08-08 00:00:00",
  12617. "perms": "pc:system:smsInfo",
  12618. "iconUrl": null,
  12619. "description": "旧服务之窗导入",
  12620. "moduleId": null,
  12621. "isOuterChain": 0,
  12622. "isPopup": 0,
  12623. "cache": 0,
  12624. "component": null,
  12625. "children": null,
  12626. "default": true,
  12627. "leaf": true
  12628. },
  12629. {
  12630. "id": 186,
  12631. "menuCode": "",
  12632. "systemCode": null,
  12633. "menuName": "微信模板配置",
  12634. "url": "admin/templ/jumPwxTemplate?funcid=186",
  12635. "rightType": 2,
  12636. "parentCode": 161,
  12637. "displayOrder": 186,
  12638. "isApp": 0,
  12639. "enabled": 1,
  12640. "createdBy": 9999,
  12641. "createdAt": "2019-08-08 00:00:00",
  12642. "updatedBy": 9999,
  12643. "updatedAt": "2019-08-08 00:00:00",
  12644. "perms": "pc:basics:wxtemplate",
  12645. "iconUrl": null,
  12646. "description": "旧服务之窗导入",
  12647. "moduleId": null,
  12648. "isOuterChain": 0,
  12649. "isPopup": 0,
  12650. "cache": 0,
  12651. "component": null,
  12652. "children": [
  12653. {
  12654. "id": 293,
  12655. "menuCode": "",
  12656. "systemCode": null,
  12657. "menuName": "新增",
  12658. "url": null,
  12659. "rightType": 3,
  12660. "parentCode": 186,
  12661. "displayOrder": 1,
  12662. "isApp": 0,
  12663. "enabled": 1,
  12664. "createdBy": 9999,
  12665. "createdAt": "2019-08-08 00:00:00",
  12666. "updatedBy": 9999,
  12667. "updatedAt": "2019-08-08 00:00:00",
  12668. "perms": "pc:basics:wxtemplate:add",
  12669. "iconUrl": null,
  12670. "description": "旧服务之窗导入",
  12671. "moduleId": null,
  12672. "isOuterChain": 0,
  12673. "isPopup": 0,
  12674. "cache": 0,
  12675. "component": null,
  12676. "children": null,
  12677. "default": true,
  12678. "leaf": false
  12679. },
  12680. {
  12681. "id": 294,
  12682. "menuCode": "",
  12683. "systemCode": null,
  12684. "menuName": "修改",
  12685. "url": null,
  12686. "rightType": 3,
  12687. "parentCode": 186,
  12688. "displayOrder": 2,
  12689. "isApp": 0,
  12690. "enabled": 1,
  12691. "createdBy": 9999,
  12692. "createdAt": "2019-08-08 00:00:00",
  12693. "updatedBy": 9999,
  12694. "updatedAt": "2019-08-08 00:00:00",
  12695. "perms": "pc:basics:wxtemplate:edit",
  12696. "iconUrl": null,
  12697. "description": "旧服务之窗导入",
  12698. "moduleId": null,
  12699. "isOuterChain": 0,
  12700. "isPopup": 0,
  12701. "cache": 0,
  12702. "component": null,
  12703. "children": null,
  12704. "default": true,
  12705. "leaf": false
  12706. },
  12707. {
  12708. "id": 295,
  12709. "menuCode": "",
  12710. "systemCode": null,
  12711. "menuName": "删除",
  12712. "url": null,
  12713. "rightType": 3,
  12714. "parentCode": 186,
  12715. "displayOrder": 3,
  12716. "isApp": 0,
  12717. "enabled": 1,
  12718. "createdBy": 9999,
  12719. "createdAt": "2019-08-08 00:00:00",
  12720. "updatedBy": 9999,
  12721. "updatedAt": "2019-08-08 00:00:00",
  12722. "perms": "pc:basics:wxtemplate:delete",
  12723. "iconUrl": null,
  12724. "description": "旧服务之窗导入",
  12725. "moduleId": null,
  12726. "isOuterChain": 0,
  12727. "isPopup": 0,
  12728. "cache": 0,
  12729. "component": null,
  12730. "children": null,
  12731. "default": true,
  12732. "leaf": false
  12733. }
  12734. ],
  12735. "default": true,
  12736. "leaf": true
  12737. },
  12738. {
  12739. "id": 187,
  12740. "menuCode": "",
  12741. "systemCode": null,
  12742. "menuName": "邮箱配置",
  12743. "url": "admin/templ/jumpEmailSetting?funcid=187",
  12744. "rightType": 2,
  12745. "parentCode": 161,
  12746. "displayOrder": 187,
  12747. "isApp": 0,
  12748. "enabled": 1,
  12749. "createdBy": 9999,
  12750. "createdAt": "2019-08-08 00:00:00",
  12751. "updatedBy": 9999,
  12752. "updatedAt": "2019-08-08 00:00:00",
  12753. "perms": "pc:basics:email",
  12754. "iconUrl": null,
  12755. "description": "旧服务之窗导入",
  12756. "moduleId": null,
  12757. "isOuterChain": 0,
  12758. "isPopup": 0,
  12759. "cache": 0,
  12760. "component": null,
  12761. "children": [
  12762. {
  12763. "id": 296,
  12764. "menuCode": "",
  12765. "systemCode": null,
  12766. "menuName": "新增",
  12767. "url": null,
  12768. "rightType": 3,
  12769. "parentCode": 187,
  12770. "displayOrder": 1,
  12771. "isApp": 0,
  12772. "enabled": 1,
  12773. "createdBy": 9999,
  12774. "createdAt": "2019-08-08 00:00:00",
  12775. "updatedBy": 9999,
  12776. "updatedAt": "2019-08-08 00:00:00",
  12777. "perms": "pc:basics:email:add",
  12778. "iconUrl": null,
  12779. "description": "旧服务之窗导入",
  12780. "moduleId": null,
  12781. "isOuterChain": 0,
  12782. "isPopup": 0,
  12783. "cache": 0,
  12784. "component": null,
  12785. "children": null,
  12786. "default": true,
  12787. "leaf": false
  12788. },
  12789. {
  12790. "id": 297,
  12791. "menuCode": "",
  12792. "systemCode": null,
  12793. "menuName": "修改",
  12794. "url": null,
  12795. "rightType": 3,
  12796. "parentCode": 187,
  12797. "displayOrder": 2,
  12798. "isApp": 0,
  12799. "enabled": 1,
  12800. "createdBy": 9999,
  12801. "createdAt": "2019-08-08 00:00:00",
  12802. "updatedBy": 9999,
  12803. "updatedAt": "2019-08-08 00:00:00",
  12804. "perms": "pc:basics:email:edit",
  12805. "iconUrl": null,
  12806. "description": "旧服务之窗导入",
  12807. "moduleId": null,
  12808. "isOuterChain": 0,
  12809. "isPopup": 0,
  12810. "cache": 0,
  12811. "component": null,
  12812. "children": null,
  12813. "default": true,
  12814. "leaf": false
  12815. },
  12816. {
  12817. "id": 298,
  12818. "menuCode": "",
  12819. "systemCode": null,
  12820. "menuName": "删除",
  12821. "url": null,
  12822. "rightType": 3,
  12823. "parentCode": 187,
  12824. "displayOrder": 3,
  12825. "isApp": 0,
  12826. "enabled": 1,
  12827. "createdBy": 9999,
  12828. "createdAt": "2019-08-08 00:00:00",
  12829. "updatedBy": 9999,
  12830. "updatedAt": "2019-08-08 00:00:00",
  12831. "perms": "pc:basics:email:delete",
  12832. "iconUrl": null,
  12833. "description": "旧服务之窗导入",
  12834. "moduleId": null,
  12835. "isOuterChain": 0,
  12836. "isPopup": 0,
  12837. "cache": 0,
  12838. "component": null,
  12839. "children": null,
  12840. "default": true,
  12841. "leaf": false
  12842. }
  12843. ],
  12844. "default": true,
  12845. "leaf": true
  12846. },
  12847. {
  12848. "id": 245,
  12849. "menuCode": "",
  12850. "systemCode": null,
  12851. "menuName": "短信账号配置",
  12852. "url": "admin/templ/jumpMessageAccount?funcid=245",
  12853. "rightType": 2,
  12854. "parentCode": 161,
  12855. "displayOrder": 245,
  12856. "isApp": 0,
  12857. "enabled": 1,
  12858. "createdBy": 9999,
  12859. "createdAt": "2019-08-08 00:00:00",
  12860. "updatedBy": 9999,
  12861. "updatedAt": "2019-08-08 00:00:00",
  12862. "perms": "pc:basics:sms",
  12863. "iconUrl": null,
  12864. "description": "旧服务之窗导入",
  12865. "moduleId": null,
  12866. "isOuterChain": 0,
  12867. "isPopup": 0,
  12868. "cache": 0,
  12869. "component": null,
  12870. "children": [
  12871. {
  12872. "id": 299,
  12873. "menuCode": "",
  12874. "systemCode": null,
  12875. "menuName": "新增",
  12876. "url": null,
  12877. "rightType": 3,
  12878. "parentCode": 245,
  12879. "displayOrder": 1,
  12880. "isApp": 0,
  12881. "enabled": 1,
  12882. "createdBy": 9999,
  12883. "createdAt": "2019-08-08 00:00:00",
  12884. "updatedBy": 9999,
  12885. "updatedAt": "2019-08-08 00:00:00",
  12886. "perms": "pc:basics:sms:add",
  12887. "iconUrl": null,
  12888. "description": "旧服务之窗导入",
  12889. "moduleId": null,
  12890. "isOuterChain": 0,
  12891. "isPopup": 0,
  12892. "cache": 0,
  12893. "component": null,
  12894. "children": null,
  12895. "default": true,
  12896. "leaf": false
  12897. },
  12898. {
  12899. "id": 300,
  12900. "menuCode": "",
  12901. "systemCode": null,
  12902. "menuName": "修改",
  12903. "url": null,
  12904. "rightType": 3,
  12905. "parentCode": 245,
  12906. "displayOrder": 2,
  12907. "isApp": 0,
  12908. "enabled": 1,
  12909. "createdBy": 9999,
  12910. "createdAt": "2019-08-08 00:00:00",
  12911. "updatedBy": 9999,
  12912. "updatedAt": "2019-08-08 00:00:00",
  12913. "perms": "pc:basics:sms:edit",
  12914. "iconUrl": null,
  12915. "description": "旧服务之窗导入",
  12916. "moduleId": null,
  12917. "isOuterChain": 0,
  12918. "isPopup": 0,
  12919. "cache": 0,
  12920. "component": null,
  12921. "children": null,
  12922. "default": true,
  12923. "leaf": false
  12924. },
  12925. {
  12926. "id": 301,
  12927. "menuCode": "",
  12928. "systemCode": null,
  12929. "menuName": "删除",
  12930. "url": null,
  12931. "rightType": 3,
  12932. "parentCode": 245,
  12933. "displayOrder": 3,
  12934. "isApp": 0,
  12935. "enabled": 1,
  12936. "createdBy": 9999,
  12937. "createdAt": "2019-08-08 00:00:00",
  12938. "updatedBy": 9999,
  12939. "updatedAt": "2019-08-08 00:00:00",
  12940. "perms": "pc:basics:sms:delete",
  12941. "iconUrl": null,
  12942. "description": "旧服务之窗导入",
  12943. "moduleId": null,
  12944. "isOuterChain": 0,
  12945. "isPopup": 0,
  12946. "cache": 0,
  12947. "component": null,
  12948. "children": null,
  12949. "default": true,
  12950. "leaf": false
  12951. }
  12952. ],
  12953. "default": true,
  12954. "leaf": true
  12955. }
  12956. ],
  12957. "default": true,
  12958. "leaf": false
  12959. },
  12960. {
  12961. "id": 173,
  12962. "menuCode": "",
  12963. "systemCode": null,
  12964. "menuName": "账单推送",
  12965. "url": "",
  12966. "rightType": 1,
  12967. "parentCode": 0,
  12968. "displayOrder": 173,
  12969. "isApp": 0,
  12970. "enabled": 1,
  12971. "createdBy": 9999,
  12972. "createdAt": "2019-08-08 00:00:00",
  12973. "updatedBy": 9999,
  12974. "updatedAt": "2019-08-08 00:00:00",
  12975. "perms": "pc:consume",
  12976. "iconUrl": null,
  12977. "description": "旧服务之窗导入",
  12978. "moduleId": null,
  12979. "isOuterChain": 0,
  12980. "isPopup": 0,
  12981. "cache": 0,
  12982. "component": null,
  12983. "children": [
  12984. {
  12985. "id": 168,
  12986. "menuCode": "",
  12987. "systemCode": null,
  12988. "menuName": "模板配置",
  12989. "url": "admin/pushModel/addPushModelMenu?funcid=168",
  12990. "rightType": 2,
  12991. "parentCode": 173,
  12992. "displayOrder": 168,
  12993. "isApp": 0,
  12994. "enabled": 1,
  12995. "createdBy": 9999,
  12996. "createdAt": "2019-08-08 00:00:00",
  12997. "updatedBy": 9999,
  12998. "updatedAt": "2019-08-08 00:00:00",
  12999. "perms": "pc:consume:template",
  13000. "iconUrl": null,
  13001. "description": "旧服务之窗导入",
  13002. "moduleId": null,
  13003. "isOuterChain": 0,
  13004. "isPopup": 0,
  13005. "cache": 0,
  13006. "component": null,
  13007. "children": null,
  13008. "default": true,
  13009. "leaf": true
  13010. },
  13011. {
  13012. "id": 169,
  13013. "menuCode": "",
  13014. "systemCode": null,
  13015. "menuName": "账单推送",
  13016. "url": "admin/push/pushBill?funcid=169",
  13017. "rightType": 2,
  13018. "parentCode": 173,
  13019. "displayOrder": 169,
  13020. "isApp": 0,
  13021. "enabled": 1,
  13022. "createdBy": 9999,
  13023. "createdAt": "2019-08-08 00:00:00",
  13024. "updatedBy": 9999,
  13025. "updatedAt": "2019-08-08 00:00:00",
  13026. "perms": "pc:consume:push",
  13027. "iconUrl": null,
  13028. "description": "旧服务之窗导入",
  13029. "moduleId": null,
  13030. "isOuterChain": 0,
  13031. "isPopup": 0,
  13032. "cache": 0,
  13033. "component": null,
  13034. "children": null,
  13035. "default": true,
  13036. "leaf": true
  13037. },
  13038. {
  13039. "id": 170,
  13040. "menuCode": "",
  13041. "systemCode": null,
  13042. "menuName": "推送历史",
  13043. "url": "admin/push/jumpPushBillList?funcid=170",
  13044. "rightType": 2,
  13045. "parentCode": 173,
  13046. "displayOrder": 170,
  13047. "isApp": 0,
  13048. "enabled": 1,
  13049. "createdBy": 9999,
  13050. "createdAt": "2019-08-08 00:00:00",
  13051. "updatedBy": 9999,
  13052. "updatedAt": "2019-08-08 00:00:00",
  13053. "perms": "pc:consume:history",
  13054. "iconUrl": null,
  13055. "description": "旧服务之窗导入",
  13056. "moduleId": null,
  13057. "isOuterChain": 0,
  13058. "isPopup": 0,
  13059. "cache": 0,
  13060. "component": null,
  13061. "children": null,
  13062. "default": true,
  13063. "leaf": true
  13064. }
  13065. ],
  13066. "default": true,
  13067. "leaf": false
  13068. },
  13069. {
  13070. "id": 195,
  13071. "menuCode": "",
  13072. "systemCode": null,
  13073. "menuName": "企业入驻",
  13074. "url": "",
  13075. "rightType": 1,
  13076. "parentCode": 0,
  13077. "displayOrder": 195,
  13078. "isApp": 0,
  13079. "enabled": 1,
  13080. "createdBy": 9999,
  13081. "createdAt": "2019-08-08 00:00:00",
  13082. "updatedBy": 9999,
  13083. "updatedAt": "2019-08-08 00:00:00",
  13084. "perms": "pc:enter",
  13085. "iconUrl": null,
  13086. "description": "旧服务之窗导入",
  13087. "moduleId": null,
  13088. "isOuterChain": 0,
  13089. "isPopup": 0,
  13090. "cache": 0,
  13091. "component": null,
  13092. "children": [
  13093. {
  13094. "id": 192,
  13095. "menuCode": "",
  13096. "systemCode": null,
  13097. "menuName": "企业入驻申请管理",
  13098. "url": "admin/enter/jumpEnterpriseList?funcid=192",
  13099. "rightType": 2,
  13100. "parentCode": 195,
  13101. "displayOrder": 192,
  13102. "isApp": 0,
  13103. "enabled": 1,
  13104. "createdBy": 9999,
  13105. "createdAt": "2019-08-08 00:00:00",
  13106. "updatedBy": 9999,
  13107. "updatedAt": "2019-08-08 00:00:00",
  13108. "perms": "pc:enter:list",
  13109. "iconUrl": null,
  13110. "description": "旧服务之窗导入",
  13111. "moduleId": null,
  13112. "isOuterChain": 0,
  13113. "isPopup": 0,
  13114. "cache": 0,
  13115. "component": null,
  13116. "children": [
  13117. {
  13118. "id": 242,
  13119. "menuCode": "",
  13120. "systemCode": "2004",
  13121. "menuName": "入驻审核权限",
  13122. "url": "",
  13123. "rightType": 3,
  13124. "parentCode": 192,
  13125. "displayOrder": 0,
  13126. "isApp": 0,
  13127. "enabled": 1,
  13128. "createdBy": 9999,
  13129. "createdAt": "2019-08-08 00:00:00",
  13130. "updatedBy": 9999,
  13131. "updatedAt": "2019-08-08 00:00:00",
  13132. "perms": "pc:enter:list:approve",
  13133. "iconUrl": null,
  13134. "description": "旧服务之窗导入",
  13135. "moduleId": null,
  13136. "isOuterChain": 0,
  13137. "isPopup": 0,
  13138. "cache": 0,
  13139. "component": null,
  13140. "children": null,
  13141. "default": true,
  13142. "leaf": false
  13143. }
  13144. ],
  13145. "default": true,
  13146. "leaf": true
  13147. },
  13148. {
  13149. "id": 193,
  13150. "menuCode": "",
  13151. "systemCode": null,
  13152. "menuName": "企业入驻配置",
  13153. "url": "admin/enter/jumpVirModel?funcid=193",
  13154. "rightType": 2,
  13155. "parentCode": 195,
  13156. "displayOrder": 193,
  13157. "isApp": 0,
  13158. "enabled": 1,
  13159. "createdBy": 9999,
  13160. "createdAt": "2019-08-08 00:00:00",
  13161. "updatedBy": 9999,
  13162. "updatedAt": "2019-08-08 00:00:00",
  13163. "perms": "pc:enter:config",
  13164. "iconUrl": null,
  13165. "description": "旧服务之窗导入",
  13166. "moduleId": null,
  13167. "isOuterChain": 0,
  13168. "isPopup": 0,
  13169. "cache": 0,
  13170. "component": null,
  13171. "children": null,
  13172. "default": true,
  13173. "leaf": true
  13174. }
  13175. ],
  13176. "default": true,
  13177. "leaf": false
  13178. },
  13179. {
  13180. "id": 219,
  13181. "menuCode": "",
  13182. "systemCode": null,
  13183. "menuName": "企业迁出",
  13184. "url": "",
  13185. "rightType": 1,
  13186. "parentCode": 0,
  13187. "displayOrder": 219,
  13188. "isApp": 0,
  13189. "enabled": 1,
  13190. "createdBy": 9999,
  13191. "createdAt": "2019-08-08 00:00:00",
  13192. "updatedBy": 9999,
  13193. "updatedAt": "2019-08-08 00:00:00",
  13194. "perms": "pc:emigration",
  13195. "iconUrl": null,
  13196. "description": "旧服务之窗导入",
  13197. "moduleId": null,
  13198. "isOuterChain": 0,
  13199. "isPopup": 0,
  13200. "cache": 0,
  13201. "component": null,
  13202. "children": [
  13203. {
  13204. "id": 221,
  13205. "menuCode": "",
  13206. "systemCode": null,
  13207. "menuName": "企业迁出申请管理",
  13208. "url": "admin/emig/jumpEnterList?funcid=221",
  13209. "rightType": 2,
  13210. "parentCode": 219,
  13211. "displayOrder": 221,
  13212. "isApp": 0,
  13213. "enabled": 1,
  13214. "createdBy": 9999,
  13215. "createdAt": "2019-08-08 00:00:00",
  13216. "updatedBy": 9999,
  13217. "updatedAt": "2019-08-08 00:00:00",
  13218. "perms": "pc:emigration:list",
  13219. "iconUrl": null,
  13220. "description": "旧服务之窗导入",
  13221. "moduleId": null,
  13222. "isOuterChain": 0,
  13223. "isPopup": 0,
  13224. "cache": 0,
  13225. "component": null,
  13226. "children": [
  13227. {
  13228. "id": 243,
  13229. "menuCode": "",
  13230. "systemCode": "2005",
  13231. "menuName": "迁出审核权限",
  13232. "url": "",
  13233. "rightType": 3,
  13234. "parentCode": 221,
  13235. "displayOrder": 0,
  13236. "isApp": 0,
  13237. "enabled": 1,
  13238. "createdBy": 9999,
  13239. "createdAt": "2019-08-08 00:00:00",
  13240. "updatedBy": 9999,
  13241. "updatedAt": "2019-08-08 00:00:00",
  13242. "perms": "pc:emigration:list:approve",
  13243. "iconUrl": null,
  13244. "description": "旧服务之窗导入",
  13245. "moduleId": null,
  13246. "isOuterChain": 0,
  13247. "isPopup": 0,
  13248. "cache": 0,
  13249. "component": null,
  13250. "children": null,
  13251. "default": true,
  13252. "leaf": false
  13253. }
  13254. ],
  13255. "default": true,
  13256. "leaf": true
  13257. },
  13258. {
  13259. "id": 222,
  13260. "menuCode": "",
  13261. "systemCode": null,
  13262. "menuName": "企业迁出模板配置",
  13263. "url": "admin/emig/jumpVirModel?funcid=222",
  13264. "rightType": 2,
  13265. "parentCode": 219,
  13266. "displayOrder": 222,
  13267. "isApp": 0,
  13268. "enabled": 1,
  13269. "createdBy": 9999,
  13270. "createdAt": "2019-08-08 00:00:00",
  13271. "updatedBy": 9999,
  13272. "updatedAt": "2019-08-08 00:00:00",
  13273. "perms": "pc:emigration:config",
  13274. "iconUrl": null,
  13275. "description": "旧服务之窗导入",
  13276. "moduleId": null,
  13277. "isOuterChain": 0,
  13278. "isPopup": 0,
  13279. "cache": 0,
  13280. "component": null,
  13281. "children": null,
  13282. "default": true,
  13283. "leaf": true
  13284. }
  13285. ],
  13286. "default": true,
  13287. "leaf": false
  13288. },
  13289. {
  13290. "id": 226,
  13291. "menuCode": "",
  13292. "systemCode": null,
  13293. "menuName": "小邮局",
  13294. "url": "http://47.106.156.76:8070/WebUI/login.html",
  13295. "rightType": 1,
  13296. "parentCode": 0,
  13297. "displayOrder": 226,
  13298. "isApp": 0,
  13299. "enabled": 1,
  13300. "createdBy": 9999,
  13301. "createdAt": "2019-08-08 00:00:00",
  13302. "updatedBy": 9999,
  13303. "updatedAt": "2019-08-08 00:00:00",
  13304. "perms": "pc:post-office",
  13305. "iconUrl": null,
  13306. "description": "旧服务之窗导入",
  13307. "moduleId": null,
  13308. "isOuterChain": 0,
  13309. "isPopup": 0,
  13310. "cache": 0,
  13311. "component": null,
  13312. "children": [],
  13313. "default": true,
  13314. "leaf": true
  13315. },
  13316. {
  13317. "id": 227,
  13318. "menuCode": "",
  13319. "systemCode": null,
  13320. "menuName": "会议室预约",
  13321. "url": "https://120.79.80.138:8080/WebUI/login.html",
  13322. "rightType": 1,
  13323. "parentCode": 0,
  13324. "displayOrder": 227,
  13325. "isApp": 0,
  13326. "enabled": 1,
  13327. "createdBy": 9999,
  13328. "createdAt": "2019-08-08 00:00:00",
  13329. "updatedBy": 9999,
  13330. "updatedAt": "2019-08-08 00:00:00",
  13331. "perms": "pc:conference-room",
  13332. "iconUrl": null,
  13333. "description": "旧服务之窗导入",
  13334. "moduleId": null,
  13335. "isOuterChain": 0,
  13336. "isPopup": 0,
  13337. "cache": 0,
  13338. "component": null,
  13339. "children": [],
  13340. "default": true,
  13341. "leaf": true
  13342. },
  13343. {
  13344. "id": 234,
  13345. "menuCode": "",
  13346. "systemCode": null,
  13347. "menuName": "洗车管理(PC父菜单)",
  13348. "url": "",
  13349. "rightType": 1,
  13350. "parentCode": 0,
  13351. "displayOrder": 234,
  13352. "isApp": 0,
  13353. "enabled": 1,
  13354. "createdBy": 9999,
  13355. "createdAt": "2019-08-08 00:00:00",
  13356. "updatedBy": 9999,
  13357. "updatedAt": "2019-08-08 00:00:00",
  13358. "perms": "pc:washcar",
  13359. "iconUrl": null,
  13360. "description": "旧服务之窗导入",
  13361. "moduleId": null,
  13362. "isOuterChain": 0,
  13363. "isPopup": 0,
  13364. "cache": 0,
  13365. "component": null,
  13366. "children": [
  13367. {
  13368. "id": 235,
  13369. "menuCode": "",
  13370. "systemCode": null,
  13371. "menuName": "洗车项目(PC子菜单)",
  13372. "url": "admin/washcar/jumpCustomer?funcid=235",
  13373. "rightType": 2,
  13374. "parentCode": 234,
  13375. "displayOrder": 235,
  13376. "isApp": 0,
  13377. "enabled": 1,
  13378. "createdBy": 9999,
  13379. "createdAt": "2019-08-08 00:00:00",
  13380. "updatedBy": 9999,
  13381. "updatedAt": "2019-08-08 00:00:00",
  13382. "perms": "pc:washcar:list",
  13383. "iconUrl": null,
  13384. "description": "旧服务之窗导入",
  13385. "moduleId": null,
  13386. "isOuterChain": 0,
  13387. "isPopup": 0,
  13388. "cache": 0,
  13389. "component": null,
  13390. "children": [
  13391. {
  13392. "id": 305,
  13393. "menuCode": "",
  13394. "systemCode": null,
  13395. "menuName": "新增",
  13396. "url": null,
  13397. "rightType": 3,
  13398. "parentCode": 235,
  13399. "displayOrder": 1,
  13400. "isApp": 0,
  13401. "enabled": 1,
  13402. "createdBy": 9999,
  13403. "createdAt": "2019-08-08 00:00:00",
  13404. "updatedBy": 9999,
  13405. "updatedAt": "2019-08-08 00:00:00",
  13406. "perms": "pc:washcar:list:add",
  13407. "iconUrl": null,
  13408. "description": "旧服务之窗导入",
  13409. "moduleId": null,
  13410. "isOuterChain": 0,
  13411. "isPopup": 0,
  13412. "cache": 0,
  13413. "component": null,
  13414. "children": null,
  13415. "default": true,
  13416. "leaf": false
  13417. },
  13418. {
  13419. "id": 306,
  13420. "menuCode": "",
  13421. "systemCode": null,
  13422. "menuName": "修改",
  13423. "url": null,
  13424. "rightType": 3,
  13425. "parentCode": 235,
  13426. "displayOrder": 2,
  13427. "isApp": 0,
  13428. "enabled": 1,
  13429. "createdBy": 9999,
  13430. "createdAt": "2019-08-08 00:00:00",
  13431. "updatedBy": 9999,
  13432. "updatedAt": "2019-08-08 00:00:00",
  13433. "perms": "pc:washcar:list:edit",
  13434. "iconUrl": null,
  13435. "description": "旧服务之窗导入",
  13436. "moduleId": null,
  13437. "isOuterChain": 0,
  13438. "isPopup": 0,
  13439. "cache": 0,
  13440. "component": null,
  13441. "children": null,
  13442. "default": true,
  13443. "leaf": false
  13444. },
  13445. {
  13446. "id": 307,
  13447. "menuCode": "",
  13448. "systemCode": null,
  13449. "menuName": "删除",
  13450. "url": null,
  13451. "rightType": 3,
  13452. "parentCode": 235,
  13453. "displayOrder": 3,
  13454. "isApp": 0,
  13455. "enabled": 1,
  13456. "createdBy": 9999,
  13457. "createdAt": "2019-08-08 00:00:00",
  13458. "updatedBy": 9999,
  13459. "updatedAt": "2019-08-08 00:00:00",
  13460. "perms": "pc:washcar:list:delete",
  13461. "iconUrl": null,
  13462. "description": "旧服务之窗导入",
  13463. "moduleId": null,
  13464. "isOuterChain": 0,
  13465. "isPopup": 0,
  13466. "cache": 0,
  13467. "component": null,
  13468. "children": null,
  13469. "default": true,
  13470. "leaf": false
  13471. }
  13472. ],
  13473. "default": true,
  13474. "leaf": true
  13475. }
  13476. ],
  13477. "default": true,
  13478. "leaf": false
  13479. },
  13480. {
  13481. "id": 250,
  13482. "menuCode": "",
  13483. "systemCode": null,
  13484. "menuName": "宿舍管理(PC)",
  13485. "url": "",
  13486. "rightType": 1,
  13487. "parentCode": 0,
  13488. "displayOrder": 254,
  13489. "isApp": 0,
  13490. "enabled": 1,
  13491. "createdBy": 9999,
  13492. "createdAt": "2019-08-08 00:00:00",
  13493. "updatedBy": 9999,
  13494. "updatedAt": "2019-08-08 00:00:00",
  13495. "perms": "pc:dormitory",
  13496. "iconUrl": null,
  13497. "description": "旧服务之窗导入",
  13498. "moduleId": null,
  13499. "isOuterChain": 0,
  13500. "isPopup": 0,
  13501. "cache": 0,
  13502. "component": null,
  13503. "children": [
  13504. {
  13505. "id": 247,
  13506. "menuCode": "",
  13507. "systemCode": null,
  13508. "menuName": "条约配置",
  13509. "url": "admin/dorm/jumpTreatyAllocation?funcid=251",
  13510. "rightType": 2,
  13511. "parentCode": 250,
  13512. "displayOrder": 251,
  13513. "isApp": 0,
  13514. "enabled": 1,
  13515. "createdBy": 9999,
  13516. "createdAt": "2019-08-08 00:00:00",
  13517. "updatedBy": 9999,
  13518. "updatedAt": "2019-08-08 00:00:00",
  13519. "perms": "pc:dormitory:config",
  13520. "iconUrl": null,
  13521. "description": "旧服务之窗导入",
  13522. "moduleId": null,
  13523. "isOuterChain": 0,
  13524. "isPopup": 0,
  13525. "cache": 0,
  13526. "component": null,
  13527. "children": null,
  13528. "default": true,
  13529. "leaf": true
  13530. },
  13531. {
  13532. "id": 248,
  13533. "menuCode": "",
  13534. "systemCode": null,
  13535. "menuName": "宿舍信息管理",
  13536. "url": "admin/dorm/jumpDormitoryInfor?funcid=252",
  13537. "rightType": 2,
  13538. "parentCode": 250,
  13539. "displayOrder": 252,
  13540. "isApp": 0,
  13541. "enabled": 1,
  13542. "createdBy": 9999,
  13543. "createdAt": "2019-08-08 00:00:00",
  13544. "updatedBy": 9999,
  13545. "updatedAt": "2019-08-08 00:00:00",
  13546. "perms": "pc:dormitory:dormlist",
  13547. "iconUrl": null,
  13548. "description": "旧服务之窗导入",
  13549. "moduleId": null,
  13550. "isOuterChain": 0,
  13551. "isPopup": 0,
  13552. "cache": 0,
  13553. "component": null,
  13554. "children": null,
  13555. "default": true,
  13556. "leaf": true
  13557. },
  13558. {
  13559. "id": 249,
  13560. "menuCode": "",
  13561. "systemCode": null,
  13562. "menuName": "退宿审核管理",
  13563. "url": "admin/dorm/jumpRetreatAudit?funcid=253",
  13564. "rightType": 2,
  13565. "parentCode": 250,
  13566. "displayOrder": 253,
  13567. "isApp": 0,
  13568. "enabled": 1,
  13569. "createdBy": 9999,
  13570. "createdAt": "2019-08-08 00:00:00",
  13571. "updatedBy": 9999,
  13572. "updatedAt": "2019-08-08 00:00:00",
  13573. "perms": "pc:dormitory:checkout",
  13574. "iconUrl": null,
  13575. "description": "旧服务之窗导入",
  13576. "moduleId": null,
  13577. "isOuterChain": 0,
  13578. "isPopup": 0,
  13579. "cache": 0,
  13580. "component": null,
  13581. "children": [
  13582. {
  13583. "id": 309,
  13584. "menuCode": "",
  13585. "systemCode": null,
  13586. "menuName": "审核",
  13587. "url": null,
  13588. "rightType": 3,
  13589. "parentCode": 249,
  13590. "displayOrder": 4,
  13591. "isApp": 0,
  13592. "enabled": 1,
  13593. "createdBy": 9999,
  13594. "createdAt": "2019-08-08 00:00:00",
  13595. "updatedBy": 9999,
  13596. "updatedAt": "2019-08-08 00:00:00",
  13597. "perms": "pc:dormitory:checkout:approve",
  13598. "iconUrl": null,
  13599. "description": "旧服务之窗导入",
  13600. "moduleId": null,
  13601. "isOuterChain": 0,
  13602. "isPopup": 0,
  13603. "cache": 0,
  13604. "component": null,
  13605. "children": null,
  13606. "default": true,
  13607. "leaf": false
  13608. }
  13609. ],
  13610. "default": true,
  13611. "leaf": true
  13612. }
  13613. ],
  13614. "default": true,
  13615. "leaf": false
  13616. },
  13617. {
  13618. "id": 321,
  13619. "menuCode": "",
  13620. "systemCode": null,
  13621. "menuName": "空调加时管理",
  13622. "url": "",
  13623. "rightType": 1,
  13624. "parentCode": 0,
  13625. "displayOrder": 260,
  13626. "isApp": 0,
  13627. "enabled": 1,
  13628. "createdBy": 9999,
  13629. "createdAt": "2019-08-08 00:00:00",
  13630. "updatedBy": 9999,
  13631. "updatedAt": "2019-08-08 00:00:00",
  13632. "perms": "pc:air-conditioner",
  13633. "iconUrl": null,
  13634. "description": "旧服务之窗导入",
  13635. "moduleId": null,
  13636. "isOuterChain": 0,
  13637. "isPopup": 0,
  13638. "cache": 0,
  13639. "component": null,
  13640. "children": [
  13641. {
  13642. "id": 5483,
  13643. "menuCode": "",
  13644. "systemCode": null,
  13645. "menuName": "空调空间数据",
  13646. "url": "0",
  13647. "rightType": 2,
  13648. "parentCode": 321,
  13649. "displayOrder": 0,
  13650. "isApp": 0,
  13651. "enabled": 1,
  13652. "createdBy": 3071,
  13653. "createdAt": "2021-04-28 14:37:54",
  13654. "updatedBy": 3071,
  13655. "updatedAt": "2021-04-28 14:38:33",
  13656. "perms": "pc:air-conditioner:room",
  13657. "iconUrl": "",
  13658. "description": "新环境添加",
  13659. "moduleId": null,
  13660. "isOuterChain": 0,
  13661. "isPopup": 0,
  13662. "cache": 0,
  13663. "component": null,
  13664. "children": null,
  13665. "default": true,
  13666. "leaf": true
  13667. },
  13668. {
  13669. "id": 322,
  13670. "menuCode": "",
  13671. "systemCode": null,
  13672. "menuName": "使用规则设置",
  13673. "url": "air/usingSetting?funcid=26001",
  13674. "rightType": 2,
  13675. "parentCode": 321,
  13676. "displayOrder": 26001,
  13677. "isApp": 0,
  13678. "enabled": 1,
  13679. "createdBy": 9999,
  13680. "createdAt": "2019-08-08 00:00:00",
  13681. "updatedBy": 9999,
  13682. "updatedAt": "2019-08-08 00:00:00",
  13683. "perms": "pc:air-conditioner:usage",
  13684. "iconUrl": null,
  13685. "description": "旧服务之窗导入",
  13686. "moduleId": null,
  13687. "isOuterChain": 0,
  13688. "isPopup": 0,
  13689. "cache": 0,
  13690. "component": null,
  13691. "children": null,
  13692. "default": true,
  13693. "leaf": true
  13694. },
  13695. {
  13696. "id": 323,
  13697. "menuCode": "",
  13698. "systemCode": null,
  13699. "menuName": "空调加时管理",
  13700. "url": "air/overtimeManage?funcid=26002",
  13701. "rightType": 2,
  13702. "parentCode": 321,
  13703. "displayOrder": 26002,
  13704. "isApp": 0,
  13705. "enabled": 1,
  13706. "createdBy": 9999,
  13707. "createdAt": "2019-08-08 00:00:00",
  13708. "updatedBy": 9999,
  13709. "updatedAt": "2019-08-08 00:00:00",
  13710. "perms": "pc:air-conditioner:manage",
  13711. "iconUrl": null,
  13712. "description": "旧服务之窗导入",
  13713. "moduleId": null,
  13714. "isOuterChain": 0,
  13715. "isPopup": 0,
  13716. "cache": 0,
  13717. "component": null,
  13718. "children": [
  13719. {
  13720. "id": 5576,
  13721. "menuCode": "",
  13722. "systemCode": null,
  13723. "menuName": "取消",
  13724. "url": "",
  13725. "rightType": 3,
  13726. "parentCode": 323,
  13727. "displayOrder": 0,
  13728. "isApp": 0,
  13729. "enabled": 1,
  13730. "createdBy": 3071,
  13731. "createdAt": "2021-09-06 18:14:15",
  13732. "updatedBy": null,
  13733. "updatedAt": null,
  13734. "perms": "pc:airOvertime:cancel",
  13735. "iconUrl": "",
  13736. "description": "",
  13737. "moduleId": null,
  13738. "isOuterChain": 0,
  13739. "isPopup": 0,
  13740. "cache": 0,
  13741. "component": null,
  13742. "children": null,
  13743. "default": true,
  13744. "leaf": false
  13745. },
  13746. {
  13747. "id": 5577,
  13748. "menuCode": "",
  13749. "systemCode": null,
  13750. "menuName": "功能页面",
  13751. "url": "",
  13752. "rightType": 3,
  13753. "parentCode": 323,
  13754. "displayOrder": 0,
  13755. "isApp": 0,
  13756. "enabled": 1,
  13757. "createdBy": 3071,
  13758. "createdAt": "2021-09-07 09:19:58",
  13759. "updatedBy": 3071,
  13760. "updatedAt": "2021-09-07 09:20:44",
  13761. "perms": "pc:airOvertime:view",
  13762. "iconUrl": "",
  13763. "description": "",
  13764. "moduleId": null,
  13765. "isOuterChain": 0,
  13766. "isPopup": 0,
  13767. "cache": 0,
  13768. "component": null,
  13769. "children": null,
  13770. "default": true,
  13771. "leaf": false
  13772. }
  13773. ],
  13774. "default": true,
  13775. "leaf": true
  13776. },
  13777. {
  13778. "id": 324,
  13779. "menuCode": "",
  13780. "systemCode": null,
  13781. "menuName": "空调加时报表",
  13782. "url": "air/overtimeReport?funcid=26003",
  13783. "rightType": 2,
  13784. "parentCode": 321,
  13785. "displayOrder": 26003,
  13786. "isApp": 0,
  13787. "enabled": 1,
  13788. "createdBy": 9999,
  13789. "createdAt": "2019-08-08 00:00:00",
  13790. "updatedBy": 9999,
  13791. "updatedAt": "2019-08-08 00:00:00",
  13792. "perms": "pc:air-conditioner:statement",
  13793. "iconUrl": null,
  13794. "description": "旧服务之窗导入",
  13795. "moduleId": null,
  13796. "isOuterChain": 0,
  13797. "isPopup": 0,
  13798. "cache": 0,
  13799. "component": null,
  13800. "children": null,
  13801. "default": true,
  13802. "leaf": true
  13803. }
  13804. ],
  13805. "default": true,
  13806. "leaf": false
  13807. }
  13808. ]
  13809. }