visual.log 2.2 MB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611
  1. 2017-10-17 08:45:03.620 |-INFO [http-nio-8089-exec-2] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  2. 2017-10-17 08:45:03.626 |-INFO [http-nio-8089-exec-2] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  3. 2017-10-17 08:45:03.705 |-INFO [http-nio-8089-exec-2] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 78 ms
  4. 2017-10-17 08:45:03.938 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5. 2017-10-17 08:45:03.938 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6. 2017-10-17 08:45:03.938 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7. 2017-10-17 08:45:03.938 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8. 2017-10-17 08:45:03.938 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9. 2017-10-17 08:45:04.466 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10. 2017-10-17 08:45:04.468 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11. 2017-10-17 08:45:04.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12. 2017-10-17 08:45:04.501 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  13. 2017-10-17 08:45:04.501 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14. 2017-10-17 08:45:04.531 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15. 2017-10-17 08:45:04.532 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  16. 2017-10-17 08:45:04.533 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  17. 2017-10-17 08:45:04.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  18. 2017-10-17 08:45:04.564 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  19. 2017-10-17 08:45:04.564 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  20. 2017-10-17 08:45:04.594 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  21. 2017-10-17 08:45:04.595 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  22. 2017-10-17 08:45:04.596 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  23. 2017-10-17 08:45:04.605 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  24. 2017-10-17 08:45:04.605 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  25. 2017-10-17 08:45:04.605 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  26. 2017-10-17 08:45:04.607 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  27. 2017-10-17 08:45:04.610 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  28. 2017-10-17 08:45:04.625 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  29. 2017-10-17 08:45:04.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  30. 2017-10-17 08:45:04.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  31. 2017-10-17 08:45:04.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  32. 2017-10-17 08:45:04.672 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  33. 2017-10-17 08:45:04.672 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  34. 2017-10-17 08:45:04.701 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  35. 2017-10-17 08:45:04.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  36. 2017-10-17 08:45:04.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  37. 2017-10-17 08:45:04.731 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  38. 2017-10-17 08:45:04.732 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  39. 2017-10-17 08:45:04.733 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  40. 2017-10-17 08:45:04.756 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  41. 2017-10-17 08:45:04.757 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  42. 2017-10-17 08:45:04.761 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  43. 2017-10-17 08:45:04.771 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  44. 2017-10-17 08:45:04.772 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  45. 2017-10-17 08:45:04.789 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  46. 2017-10-17 08:45:04.805 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  47. 2017-10-17 08:45:04.806 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  48. 2017-10-17 08:45:04.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  49. 2017-10-17 08:45:04.839 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  50. 2017-10-17 08:45:04.841 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  51. 2017-10-17 08:45:04.841 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  52. 2017-10-17 08:45:04.872 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  53. 2017-10-17 08:45:04.873 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  54. 2017-10-17 08:45:04.873 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  55. 2017-10-17 08:45:04.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  56. 2017-10-17 08:45:04.904 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  57. 2017-10-17 08:45:04.904 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  58. 2017-10-17 08:45:04.935 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  59. 2017-10-17 08:45:04.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  60. 2017-10-17 08:45:04.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  61. 2017-10-17 08:45:04.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  62. 2017-10-17 08:45:04.968 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  63. 2017-10-17 08:45:04.968 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  64. 2017-10-17 08:45:04.999 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  65. 2017-10-17 08:45:05.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  66. 2017-10-17 08:45:05.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  67. 2017-10-17 08:45:05.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  68. 2017-10-17 08:45:05.034 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  69. 2017-10-17 08:45:05.034 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  70. 2017-10-17 08:45:05.035 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  71. 2017-10-17 08:45:05.035 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  72. 2017-10-17 08:45:05.067 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  73. 2017-10-17 08:45:05.067 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  74. 2017-10-17 08:45:05.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  75. 2017-10-17 08:45:05.068 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  76. 2017-10-17 08:45:05.069 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  77. 2017-10-17 08:45:05.069 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  78. 2017-10-17 08:45:05.096 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  79. 2017-10-17 08:45:05.096 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  80. 2017-10-17 08:45:05.097 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  81. 2017-10-17 08:45:05.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  82. 2017-10-17 08:45:05.097 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  83. 2017-10-17 08:45:05.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  84. 2017-10-17 08:45:05.135 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  85. 2017-10-17 08:45:05.135 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  86. 2017-10-17 08:45:05.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  87. 2017-10-17 08:45:05.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  88. 2017-10-17 08:45:05.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  89. 2017-10-17 08:45:05.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  90. 2017-10-17 08:45:05.163 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  91. 2017-10-17 08:45:05.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  92. 2017-10-17 08:45:05.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  93. 2017-10-17 08:45:05.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  94. 2017-10-17 08:45:05.172 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  95. 2017-10-17 08:45:05.172 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  96. 2017-10-17 08:45:05.193 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  97. 2017-10-17 08:45:05.194 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  98. 2017-10-17 08:45:05.194 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  99. 2017-10-17 08:45:05.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  100. 2017-10-17 08:45:05.199 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  101. 2017-10-17 08:45:05.200 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  102. 2017-10-17 08:45:05.207 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  103. 2017-10-17 08:45:05.208 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  104. 2017-10-17 08:45:05.208 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  105. 2017-10-17 08:45:05.208 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  106. 2017-10-17 08:45:05.209 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  107. 2017-10-17 08:45:05.221 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  108. 2017-10-17 08:45:05.224 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  109. 2017-10-17 08:45:05.224 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  110. 2017-10-17 08:45:05.224 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  111. 2017-10-17 08:45:05.224 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  112. 2017-10-17 08:45:05.224 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  113. 2017-10-17 08:45:05.227 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  114. 2017-10-17 08:45:05.326 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  115. 2017-10-17 08:45:05.326 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  116. 2017-10-17 08:45:05.714 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  117. 2017-10-17 08:45:05.721 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  118. 2017-10-17 08:45:05.722 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  119. 2017-10-17 08:45:05.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  120. 2017-10-17 08:45:05.722 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  121. 2017-10-17 08:45:05.723 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  122. 2017-10-17 08:45:05.723 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  123. 2017-10-17 08:45:05.723 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  124. 2017-10-17 08:45:05.723 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  125. 2017-10-17 08:45:05.725 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  126. 2017-10-17 08:45:05.725 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  127. 2017-10-17 08:45:05.726 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  128. 2017-10-17 08:45:05.726 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  129. 2017-10-17 08:45:05.747 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  130. 2017-10-17 08:45:05.751 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  131. 2017-10-17 08:45:05.756 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  132. 2017-10-17 08:45:05.757 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 61
  133. 2017-10-17 08:45:05.757 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  134. 2017-10-17 08:45:05.757 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  135. 2017-10-17 08:45:05.758 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  136. 2017-10-17 08:45:05.763 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  137. 2017-10-17 08:45:05.763 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  138. 2017-10-17 08:45:05.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  139. 2017-10-17 08:45:05.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  140. 2017-10-17 08:45:05.790 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  141. 2017-10-17 08:45:05.792 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  142. 2017-10-17 08:45:05.796 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  143. 2017-10-17 08:45:05.807 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  144. 2017-10-17 08:45:05.808 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 61
  145. 2017-10-17 08:45:05.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  146. 2017-10-17 08:45:05.809 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  147. 2017-10-17 08:45:05.809 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  148. 2017-10-17 08:45:05.810 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  149. 2017-10-17 08:45:05.810 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  150. 2017-10-17 08:45:05.811 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  151. 2017-10-17 08:45:05.824 |-ERROR [http-nio-8089-exec-7] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
  152. org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe
  153. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  154. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  155. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  156. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  157. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  158. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  159. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  160. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  161. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  162. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  163. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  164. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  165. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  166. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  167. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  168. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  169. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  170. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  171. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  172. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  173. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  174. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
  175. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  176. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  177. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  178. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  179. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  180. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  181. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  182. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  183. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  184. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  185. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  186. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  187. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  188. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  189. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  190. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  191. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  192. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  193. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  194. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  195. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  196. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  197. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  198. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  199. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  200. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  201. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  202. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  203. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  204. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  205. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  206. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  207. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  208. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  209. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  210. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  211. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  212. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  213. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  214. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  215. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  216. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  217. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  218. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  219. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  220. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  221. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  222. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  223. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  224. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  225. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  226. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  227. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  228. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  229. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  230. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  231. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  232. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  233. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  234. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  235. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  236. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  237. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  238. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  239. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  240. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  241. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  242. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  243. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  244. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  245. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  246. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  247. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  248. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  249. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  250. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  251. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  252. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  253. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  254. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  255. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  256. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  257. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  258. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  259. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  260. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  261. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  262. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  263. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  264. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  265. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  266. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  267. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  268. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  269. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  270. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  271. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  272. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  273. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  274. at java.lang.Thread.run(Thread.java:745)
  275. Caused by: java.io.IOException: Broken pipe
  276. at sun.nio.ch.FileDispatcherImpl.write0(Native Method)
  277. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
  278. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  279. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  280. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  281. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  282. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  283. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  284. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  285. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  286. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  287. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  288. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  289. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  290. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  291. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  292. at org.apache.coyote.Response.action(Response.java:168)
  293. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  294. ... 121 common frames omitted
  295. 2017-10-17 08:45:05.826 |-WARN [http-nio-8089-exec-7] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [391] -| Failed to invoke @ExceptionHandler method: public java.lang.String com.xintong.visualinspection.controller.BaseController.exp(javax.servlet.http.HttpServletRequest,java.lang.Exception)
  296. org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe
  297. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  298. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  299. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  300. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  301. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  302. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  303. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  304. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  305. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  306. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  307. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  308. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  309. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  310. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  311. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:380)
  312. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  313. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  314. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:74)
  315. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1218)
  316. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1030)
  317. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
  318. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  319. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  320. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  321. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
  322. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  323. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  324. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  325. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  326. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  327. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  328. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  329. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  330. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  331. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  332. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  333. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  334. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  335. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  336. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  337. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  338. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  339. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  340. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  341. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  342. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  343. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  344. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  345. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  346. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  347. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  348. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  349. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  350. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  351. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  352. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  353. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  354. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  355. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  356. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  357. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  358. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  359. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  360. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  361. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  362. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  363. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  364. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  365. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  366. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  367. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  368. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  369. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  370. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  371. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  372. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  373. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  374. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  375. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  376. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  377. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  378. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  379. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  380. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  381. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  382. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  383. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  384. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  385. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  386. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  387. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  388. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  389. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  390. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  391. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  392. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  393. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  394. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  395. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  396. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  397. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  398. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  399. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  400. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  401. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  402. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  403. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  404. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  405. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  406. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  407. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  408. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  409. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  410. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  411. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  412. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  413. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  414. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  415. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  416. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  417. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  418. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  419. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  420. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  421. at java.lang.Thread.run(Thread.java:745)
  422. Caused by: java.io.IOException: Broken pipe
  423. at sun.nio.ch.FileDispatcherImpl.write0(Native Method)
  424. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
  425. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  426. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  427. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  428. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  429. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  430. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  431. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  432. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  433. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  434. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  435. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  436. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  437. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  438. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  439. at org.apache.coyote.Response.action(Response.java:168)
  440. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  441. ... 124 common frames omitted
  442. 2017-10-17 08:45:05.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  443. 2017-10-17 08:45:05.841 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  444. 2017-10-17 08:45:05.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  445. 2017-10-17 08:45:05.903 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  446. 2017-10-17 08:45:05.903 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  447. 2017-10-17 08:45:05.905 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  448. 2017-10-17 08:45:05.946 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  449. 2017-10-17 08:45:05.947 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  450. 2017-10-17 08:45:05.947 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  451. 2017-10-17 08:45:05.948 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  452. 2017-10-17 08:45:05.980 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  453. 2017-10-17 08:45:05.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  454. 2017-10-17 08:45:05.982 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  455. 2017-10-17 08:45:05.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  456. 2017-10-17 08:45:05.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  457. 2017-10-17 08:45:05.983 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  458. 2017-10-17 08:45:05.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  459. 2017-10-17 08:45:05.984 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  460. 2017-10-17 08:45:06.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  461. 2017-10-17 08:45:06.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  462. 2017-10-17 08:45:06.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  463. 2017-10-17 08:45:06.029 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  464. 2017-10-17 08:45:06.030 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  465. 2017-10-17 08:45:06.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  466. 2017-10-17 08:45:06.031 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  467. 2017-10-17 08:45:06.031 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  468. 2017-10-17 08:45:06.032 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  469. 2017-10-17 08:45:06.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  470. 2017-10-17 08:45:06.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  471. 2017-10-17 08:45:06.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  472. 2017-10-17 08:45:06.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  473. 2017-10-17 08:45:06.062 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  474. 2017-10-17 08:45:06.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  475. 2017-10-17 08:45:06.108 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  476. 2017-10-17 08:45:06.108 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  477. 2017-10-17 08:45:06.110 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  478. 2017-10-17 08:45:06.110 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  479. 2017-10-17 08:45:06.112 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  480. 2017-10-17 08:45:06.112 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  481. 2017-10-17 08:45:06.113 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  482. 2017-10-17 08:45:06.114 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  483. 2017-10-17 08:45:06.123 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  484. 2017-10-17 08:45:06.125 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  485. 2017-10-17 08:45:06.152 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  486. 2017-10-17 08:45:06.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  487. 2017-10-17 08:45:06.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  488. 2017-10-17 08:45:06.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  489. 2017-10-17 08:45:06.167 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  490. 2017-10-17 08:45:06.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  491. 2017-10-17 08:45:06.215 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  492. 2017-10-17 08:45:06.216 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  493. 2017-10-17 08:45:06.259 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  494. 2017-10-17 08:45:06.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  495. 2017-10-17 08:45:06.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  496. 2017-10-17 08:45:06.304 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  497. 2017-10-17 08:45:06.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  498. 2017-10-17 08:45:06.306 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  499. 2017-10-17 08:45:06.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  500. 2017-10-17 08:45:06.376 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  501. 2017-10-17 08:45:06.378 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  502. 2017-10-17 08:45:06.418 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  503. 2017-10-17 08:45:06.419 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  504. 2017-10-17 08:45:06.597 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  505. 2017-10-17 08:45:06.644 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  506. 2017-10-17 08:45:06.697 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  507. 2017-10-17 08:45:06.697 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  508. 2017-10-17 08:45:06.751 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  509. 2017-10-17 08:45:06.752 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  510. 2017-10-17 08:45:06.752 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  511. 2017-10-17 08:45:06.816 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  512. 2017-10-17 08:45:06.816 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  513. 2017-10-17 08:45:06.817 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  514. 2017-10-17 08:45:06.870 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  515. 2017-10-17 08:45:06.962 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  516. 2017-10-17 08:45:06.964 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  517. 2017-10-17 08:45:06.969 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  518. 2017-10-17 08:45:06.970 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  519. 2017-10-17 08:45:07.025 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  520. 2017-10-17 08:45:07.143 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  521. 2017-10-17 08:45:07.229 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  522. 2017-10-17 08:45:07.230 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  523. 2017-10-17 08:45:07.316 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  524. 2017-10-17 08:45:07.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  525. 2017-10-17 08:45:07.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  526. 2017-10-17 08:45:07.416 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  527. 2017-10-17 08:45:07.417 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  528. 2017-10-17 08:45:07.417 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  529. 2017-10-17 08:45:07.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  530. 2017-10-17 08:45:07.597 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  531. 2017-10-17 08:45:07.605 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  532. 2017-10-17 08:45:07.754 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  533. 2017-10-17 08:45:07.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  534. 2017-10-17 08:45:07.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  535. 2017-10-17 08:45:07.824 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  536. 2017-10-17 08:45:07.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  537. 2017-10-17 08:45:07.872 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  538. 2017-10-17 08:45:13.885 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  539. 2017-10-17 08:45:13.897 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  540. 2017-10-17 08:45:13.897 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  541. 2017-10-17 08:45:13.946 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  542. 2017-10-17 08:45:13.946 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  543. 2017-10-17 08:45:13.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  544. 2017-10-17 08:45:13.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  545. 2017-10-17 08:45:13.954 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  546. 2017-10-17 08:45:13.955 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  547. 2017-10-17 08:45:14.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  548. 2017-10-17 08:45:14.004 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  549. 2017-10-17 08:45:14.004 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  550. 2017-10-17 08:45:14.005 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  551. 2017-10-17 08:45:14.006 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  552. 2017-10-17 08:45:14.006 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  553. 2017-10-17 08:45:14.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  554. 2017-10-17 08:45:14.006 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  555. 2017-10-17 08:45:14.007 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  556. 2017-10-17 08:45:14.058 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  557. 2017-10-17 08:45:14.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  558. 2017-10-17 08:45:14.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  559. 2017-10-17 08:45:14.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  560. 2017-10-17 08:45:14.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  561. 2017-10-17 08:45:14.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  562. 2017-10-17 08:45:14.065 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  563. 2017-10-17 08:45:14.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  564. 2017-10-17 08:45:14.067 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  565. 2017-10-17 08:45:14.104 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  566. 2017-10-17 08:45:14.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  567. 2017-10-17 08:45:14.105 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  568. 2017-10-17 08:45:14.186 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  569. 2017-10-17 08:45:14.186 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  570. 2017-10-17 08:45:14.186 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  571. 2017-10-17 08:45:14.189 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  572. 2017-10-17 08:45:14.189 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  573. 2017-10-17 08:45:14.189 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  574. 2017-10-17 08:45:14.191 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  575. 2017-10-17 08:45:14.191 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  576. 2017-10-17 08:45:14.225 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  577. 2017-10-17 08:45:14.226 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  578. 2017-10-17 08:45:14.233 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  579. 2017-10-17 08:45:14.233 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  580. 2017-10-17 08:45:14.246 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  581. 2017-10-17 08:45:14.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  582. 2017-10-17 08:45:14.279 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  583. 2017-10-17 08:45:16.079 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  584. 2017-10-17 08:45:16.111 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  585. 2017-10-17 08:45:16.112 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  586. 2017-10-17 08:45:16.144 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  587. 2017-10-17 08:45:16.145 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  588. 2017-10-17 08:45:16.145 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  589. 2017-10-17 08:45:16.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  590. 2017-10-17 08:45:16.179 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  591. 2017-10-17 08:45:16.179 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  592. 2017-10-17 08:45:16.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  593. 2017-10-17 08:45:16.254 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  594. 2017-10-17 08:45:16.267 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  595. 2017-10-17 08:45:16.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  596. 2017-10-17 08:45:16.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 33(Integer)
  597. 2017-10-17 08:45:16.306 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  598. 2017-10-17 08:45:16.307 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  599. 2017-10-17 08:45:16.308 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  600. 2017-10-17 08:45:16.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  601. 2017-10-17 08:45:16.338 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  602. 2017-10-17 08:45:16.339 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  603. 2017-10-17 08:45:16.366 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  604. 2017-10-17 08:45:16.368 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  605. 2017-10-17 08:45:16.369 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2043(Integer)
  606. 2017-10-17 08:45:16.402 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  607. 2017-10-17 08:45:16.403 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  608. 2017-10-17 08:45:16.404 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2043(Integer)
  609. 2017-10-17 08:45:16.434 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  610. 2017-10-17 08:45:16.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  611. 2017-10-17 08:45:16.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2046(Integer)
  612. 2017-10-17 08:45:16.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  613. 2017-10-17 08:45:16.470 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  614. 2017-10-17 08:45:16.470 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2046(Integer)
  615. 2017-10-17 08:45:16.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  616. 2017-10-17 08:45:16.506 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  617. 2017-10-17 08:45:16.507 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2051(Integer)
  618. 2017-10-17 08:45:16.536 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  619. 2017-10-17 08:45:16.537 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  620. 2017-10-17 08:45:16.538 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2051(Integer)
  621. 2017-10-17 08:45:16.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  622. 2017-10-17 08:45:16.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  623. 2017-10-17 08:45:16.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2061(Integer)
  624. 2017-10-17 08:45:16.597 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  625. 2017-10-17 08:45:16.598 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  626. 2017-10-17 08:45:16.598 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2061(Integer)
  627. 2017-10-17 08:45:16.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  628. 2017-10-17 08:45:16.628 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  629. 2017-10-17 08:45:16.628 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2053(Integer)
  630. 2017-10-17 08:45:16.658 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  631. 2017-10-17 08:45:16.659 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  632. 2017-10-17 08:45:16.660 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2053(Integer)
  633. 2017-10-17 08:45:16.688 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  634. 2017-10-17 08:45:16.689 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  635. 2017-10-17 08:45:16.689 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2044(Integer)
  636. 2017-10-17 08:45:16.718 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  637. 2017-10-17 08:45:16.720 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  638. 2017-10-17 08:45:16.720 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2044(Integer)
  639. 2017-10-17 08:45:16.749 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  640. 2017-10-17 08:45:16.751 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  641. 2017-10-17 08:45:16.751 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2045(Integer)
  642. 2017-10-17 08:45:16.780 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  643. 2017-10-17 08:45:16.781 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  644. 2017-10-17 08:45:16.782 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2045(Integer)
  645. 2017-10-17 08:45:16.809 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  646. 2017-10-17 08:45:16.810 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  647. 2017-10-17 08:45:16.811 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2047(Integer)
  648. 2017-10-17 08:45:16.840 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  649. 2017-10-17 08:45:16.841 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  650. 2017-10-17 08:45:16.842 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2047(Integer)
  651. 2017-10-17 08:45:16.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  652. 2017-10-17 08:45:16.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  653. 2017-10-17 08:45:16.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2066(Integer)
  654. 2017-10-17 08:45:16.899 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  655. 2017-10-17 08:45:16.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  656. 2017-10-17 08:45:16.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2066(Integer)
  657. 2017-10-17 08:45:16.932 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  658. 2017-10-17 08:45:16.934 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  659. 2017-10-17 08:45:16.935 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2048(Integer)
  660. 2017-10-17 08:45:16.967 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  661. 2017-10-17 08:45:16.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  662. 2017-10-17 08:45:16.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2048(Integer)
  663. 2017-10-17 08:45:16.997 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  664. 2017-10-17 08:45:16.999 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  665. 2017-10-17 08:45:16.999 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2063(Integer)
  666. 2017-10-17 08:45:17.030 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  667. 2017-10-17 08:45:17.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  668. 2017-10-17 08:45:17.033 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2063(Integer)
  669. 2017-10-17 08:45:17.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  670. 2017-10-17 08:45:17.062 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  671. 2017-10-17 08:45:17.063 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2064(Integer)
  672. 2017-10-17 08:45:17.097 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  673. 2017-10-17 08:45:17.099 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  674. 2017-10-17 08:45:17.100 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2064(Integer)
  675. 2017-10-17 08:45:17.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  676. 2017-10-17 08:45:17.132 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  677. 2017-10-17 08:45:17.133 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2049(Integer)
  678. 2017-10-17 08:45:17.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  679. 2017-10-17 08:45:17.166 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  680. 2017-10-17 08:45:17.167 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2049(Integer)
  681. 2017-10-17 08:45:17.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  682. 2017-10-17 08:45:17.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  683. 2017-10-17 08:45:17.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2050(Integer)
  684. 2017-10-17 08:45:17.229 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  685. 2017-10-17 08:45:17.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  686. 2017-10-17 08:45:17.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2050(Integer)
  687. 2017-10-17 08:45:17.258 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  688. 2017-10-17 08:45:17.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  689. 2017-10-17 08:45:17.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2057(Integer)
  690. 2017-10-17 08:45:17.289 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  691. 2017-10-17 08:45:17.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  692. 2017-10-17 08:45:17.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2057(Integer)
  693. 2017-10-17 08:45:17.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  694. 2017-10-17 08:45:17.320 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  695. 2017-10-17 08:45:17.321 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2052(Integer)
  696. 2017-10-17 08:45:17.350 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  697. 2017-10-17 08:45:17.351 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  698. 2017-10-17 08:45:17.352 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2052(Integer)
  699. 2017-10-17 08:45:17.382 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  700. 2017-10-17 08:45:17.384 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  701. 2017-10-17 08:45:17.384 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2055(Integer)
  702. 2017-10-17 08:45:17.414 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  703. 2017-10-17 08:45:17.416 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  704. 2017-10-17 08:45:17.416 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2055(Integer)
  705. 2017-10-17 08:45:17.446 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  706. 2017-10-17 08:45:17.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  707. 2017-10-17 08:45:17.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2056(Integer)
  708. 2017-10-17 08:45:17.477 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  709. 2017-10-17 08:45:17.479 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  710. 2017-10-17 08:45:17.479 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2056(Integer)
  711. 2017-10-17 08:45:17.515 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  712. 2017-10-17 08:45:17.516 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  713. 2017-10-17 08:45:17.517 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2058(Integer)
  714. 2017-10-17 08:45:17.546 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  715. 2017-10-17 08:45:17.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  716. 2017-10-17 08:45:17.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2058(Integer)
  717. 2017-10-17 08:45:17.576 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  718. 2017-10-17 08:45:17.577 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  719. 2017-10-17 08:45:17.577 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2059(Integer)
  720. 2017-10-17 08:45:17.607 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  721. 2017-10-17 08:45:17.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  722. 2017-10-17 08:45:17.609 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2059(Integer)
  723. 2017-10-17 08:45:17.637 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  724. 2017-10-17 08:45:17.638 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  725. 2017-10-17 08:45:17.639 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2060(Integer)
  726. 2017-10-17 08:45:17.667 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  727. 2017-10-17 08:45:17.669 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  728. 2017-10-17 08:45:17.669 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2060(Integer)
  729. 2017-10-17 08:45:17.697 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  730. 2017-10-17 08:45:17.699 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  731. 2017-10-17 08:45:17.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2062(Integer)
  732. 2017-10-17 08:45:17.729 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  733. 2017-10-17 08:45:17.730 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  734. 2017-10-17 08:45:17.731 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2062(Integer)
  735. 2017-10-17 08:45:17.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  736. 2017-10-17 08:45:17.760 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  737. 2017-10-17 08:45:17.761 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2065(Integer)
  738. 2017-10-17 08:45:17.789 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  739. 2017-10-17 08:45:17.790 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  740. 2017-10-17 08:45:17.791 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2065(Integer)
  741. 2017-10-17 08:45:17.818 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  742. 2017-10-17 08:45:18.113 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  743. 2017-10-17 08:45:18.146 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  744. 2017-10-17 08:45:18.146 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  745. 2017-10-17 08:45:18.177 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  746. 2017-10-17 08:45:18.178 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  747. 2017-10-17 08:45:18.178 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  748. 2017-10-17 08:45:18.210 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  749. 2017-10-17 08:45:18.211 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  750. 2017-10-17 08:45:18.211 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  751. 2017-10-17 08:45:18.240 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  752. 2017-10-17 08:45:18.289 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  753. 2017-10-17 08:45:18.291 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  754. 2017-10-17 08:45:18.294 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  755. 2017-10-17 08:45:18.294 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 33(Integer)
  756. 2017-10-17 08:45:18.329 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  757. 2017-10-17 08:45:18.330 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  758. 2017-10-17 08:45:18.330 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  759. 2017-10-17 08:45:18.362 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  760. 2017-10-17 08:45:18.363 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  761. 2017-10-17 08:45:18.364 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  762. 2017-10-17 08:45:18.395 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  763. 2017-10-17 08:45:18.396 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  764. 2017-10-17 08:45:18.397 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2043(Integer)
  765. 2017-10-17 08:45:18.427 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  766. 2017-10-17 08:45:18.428 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  767. 2017-10-17 08:45:18.429 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2043(Integer)
  768. 2017-10-17 08:45:18.458 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  769. 2017-10-17 08:45:18.459 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  770. 2017-10-17 08:45:18.459 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2046(Integer)
  771. 2017-10-17 08:45:18.489 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  772. 2017-10-17 08:45:18.491 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  773. 2017-10-17 08:45:18.491 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2046(Integer)
  774. 2017-10-17 08:45:18.525 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  775. 2017-10-17 08:45:18.526 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  776. 2017-10-17 08:45:18.527 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2051(Integer)
  777. 2017-10-17 08:45:18.556 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  778. 2017-10-17 08:45:18.557 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  779. 2017-10-17 08:45:18.558 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2051(Integer)
  780. 2017-10-17 08:45:18.594 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  781. 2017-10-17 08:45:18.596 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  782. 2017-10-17 08:45:18.596 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2061(Integer)
  783. 2017-10-17 08:45:18.631 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  784. 2017-10-17 08:45:18.632 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  785. 2017-10-17 08:45:18.632 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2061(Integer)
  786. 2017-10-17 08:45:18.661 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  787. 2017-10-17 08:45:18.662 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  788. 2017-10-17 08:45:18.663 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2053(Integer)
  789. 2017-10-17 08:45:18.696 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  790. 2017-10-17 08:45:18.698 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  791. 2017-10-17 08:45:18.698 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2053(Integer)
  792. 2017-10-17 08:45:18.725 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  793. 2017-10-17 08:45:18.727 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  794. 2017-10-17 08:45:18.727 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2044(Integer)
  795. 2017-10-17 08:45:18.758 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  796. 2017-10-17 08:45:18.759 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  797. 2017-10-17 08:45:18.759 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2044(Integer)
  798. 2017-10-17 08:45:18.791 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  799. 2017-10-17 08:45:18.792 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  800. 2017-10-17 08:45:18.793 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2045(Integer)
  801. 2017-10-17 08:45:18.824 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  802. 2017-10-17 08:45:18.824 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  803. 2017-10-17 08:45:18.825 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2045(Integer)
  804. 2017-10-17 08:45:18.856 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  805. 2017-10-17 08:45:18.857 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  806. 2017-10-17 08:45:18.858 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2047(Integer)
  807. 2017-10-17 08:45:18.885 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  808. 2017-10-17 08:45:18.887 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  809. 2017-10-17 08:45:18.887 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2047(Integer)
  810. 2017-10-17 08:45:18.920 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  811. 2017-10-17 08:45:18.921 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  812. 2017-10-17 08:45:18.921 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2066(Integer)
  813. 2017-10-17 08:45:18.953 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  814. 2017-10-17 08:45:18.955 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  815. 2017-10-17 08:45:18.955 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2066(Integer)
  816. 2017-10-17 08:45:18.985 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  817. 2017-10-17 08:45:18.988 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  818. 2017-10-17 08:45:18.989 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2048(Integer)
  819. 2017-10-17 08:45:19.019 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  820. 2017-10-17 08:45:19.021 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  821. 2017-10-17 08:45:19.021 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2048(Integer)
  822. 2017-10-17 08:45:19.049 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  823. 2017-10-17 08:45:19.050 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  824. 2017-10-17 08:45:19.050 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2063(Integer)
  825. 2017-10-17 08:45:19.085 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  826. 2017-10-17 08:45:19.087 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  827. 2017-10-17 08:45:19.087 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2063(Integer)
  828. 2017-10-17 08:45:19.116 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  829. 2017-10-17 08:45:19.118 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  830. 2017-10-17 08:45:19.119 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2064(Integer)
  831. 2017-10-17 08:45:19.152 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  832. 2017-10-17 08:45:19.155 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  833. 2017-10-17 08:45:19.156 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2064(Integer)
  834. 2017-10-17 08:45:19.184 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  835. 2017-10-17 08:45:19.186 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  836. 2017-10-17 08:45:19.187 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2049(Integer)
  837. 2017-10-17 08:45:19.222 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  838. 2017-10-17 08:45:19.223 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  839. 2017-10-17 08:45:19.223 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2049(Integer)
  840. 2017-10-17 08:45:19.252 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  841. 2017-10-17 08:45:19.254 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  842. 2017-10-17 08:45:19.254 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2050(Integer)
  843. 2017-10-17 08:45:19.282 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  844. 2017-10-17 08:45:19.284 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  845. 2017-10-17 08:45:19.285 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2050(Integer)
  846. 2017-10-17 08:45:19.313 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  847. 2017-10-17 08:45:19.315 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  848. 2017-10-17 08:45:19.315 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2057(Integer)
  849. 2017-10-17 08:45:19.344 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  850. 2017-10-17 08:45:19.345 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  851. 2017-10-17 08:45:19.346 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2057(Integer)
  852. 2017-10-17 08:45:19.375 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  853. 2017-10-17 08:45:19.376 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  854. 2017-10-17 08:45:19.377 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2052(Integer)
  855. 2017-10-17 08:45:19.407 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  856. 2017-10-17 08:45:19.408 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  857. 2017-10-17 08:45:19.409 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2052(Integer)
  858. 2017-10-17 08:45:19.437 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  859. 2017-10-17 08:45:19.438 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  860. 2017-10-17 08:45:19.438 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2055(Integer)
  861. 2017-10-17 08:45:19.467 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  862. 2017-10-17 08:45:19.469 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  863. 2017-10-17 08:45:19.469 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2055(Integer)
  864. 2017-10-17 08:45:19.564 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  865. 2017-10-17 08:45:19.565 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  866. 2017-10-17 08:45:19.565 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2056(Integer)
  867. 2017-10-17 08:45:19.595 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  868. 2017-10-17 08:45:19.597 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  869. 2017-10-17 08:45:19.597 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2056(Integer)
  870. 2017-10-17 08:45:19.627 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  871. 2017-10-17 08:45:19.628 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  872. 2017-10-17 08:45:19.629 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2058(Integer)
  873. 2017-10-17 08:45:19.659 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  874. 2017-10-17 08:45:19.660 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  875. 2017-10-17 08:45:19.661 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2058(Integer)
  876. 2017-10-17 08:45:19.689 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  877. 2017-10-17 08:45:19.690 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  878. 2017-10-17 08:45:19.690 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2059(Integer)
  879. 2017-10-17 08:45:19.720 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  880. 2017-10-17 08:45:19.722 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  881. 2017-10-17 08:45:19.722 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2059(Integer)
  882. 2017-10-17 08:45:19.750 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  883. 2017-10-17 08:45:19.751 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  884. 2017-10-17 08:45:19.752 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2060(Integer)
  885. 2017-10-17 08:45:19.781 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  886. 2017-10-17 08:45:19.783 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  887. 2017-10-17 08:45:19.783 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2060(Integer)
  888. 2017-10-17 08:45:19.812 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  889. 2017-10-17 08:45:19.813 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  890. 2017-10-17 08:45:19.814 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2062(Integer)
  891. 2017-10-17 08:45:19.842 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  892. 2017-10-17 08:45:19.844 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  893. 2017-10-17 08:45:19.844 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2062(Integer)
  894. 2017-10-17 08:45:19.873 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  895. 2017-10-17 08:45:19.874 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  896. 2017-10-17 08:45:19.875 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2065(Integer)
  897. 2017-10-17 08:45:19.903 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  898. 2017-10-17 08:45:19.904 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  899. 2017-10-17 08:45:19.904 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2065(Integer)
  900. 2017-10-17 08:45:19.931 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  901. 2017-10-17 08:45:24.532 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  902. 2017-10-17 08:45:24.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  903. 2017-10-17 08:45:24.565 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  904. 2017-10-17 08:45:24.598 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  905. 2017-10-17 08:45:24.600 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  906. 2017-10-17 08:45:24.600 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  907. 2017-10-17 08:45:24.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  908. 2017-10-17 08:45:24.633 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  909. 2017-10-17 08:45:24.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  910. 2017-10-17 08:45:24.663 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  911. 2017-10-17 08:45:24.710 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  912. 2017-10-17 08:45:24.712 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  913. 2017-10-17 08:45:28.279 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  914. 2017-10-17 08:45:28.279 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  915. 2017-10-17 08:45:28.311 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  916. 2017-10-17 08:45:28.312 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  917. 2017-10-17 08:45:28.313 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  918. 2017-10-17 08:45:28.345 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  919. 2017-10-17 08:45:28.346 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  920. 2017-10-17 08:45:28.347 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  921. 2017-10-17 08:45:28.374 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  922. 2017-10-17 08:45:28.379 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  923. 2017-10-17 08:45:28.379 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  924. 2017-10-17 08:45:28.412 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  925. 2017-10-17 08:45:28.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  926. 2017-10-17 08:45:28.414 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  927. 2017-10-17 08:45:28.446 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  928. 2017-10-17 08:45:28.447 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  929. 2017-10-17 08:45:28.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  930. 2017-10-17 08:45:28.487 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  931. 2017-10-17 08:45:28.680 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  932. 2017-10-17 08:45:28.680 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  933. 2017-10-17 08:45:28.680 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  934. 2017-10-17 08:45:28.681 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  935. 2017-10-17 08:45:28.681 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  936. 2017-10-17 08:45:28.719 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  937. 2017-10-17 08:45:28.719 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  938. 2017-10-17 08:45:28.719 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  939. 2017-10-17 08:45:28.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  940. 2017-10-17 08:45:28.720 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  941. 2017-10-17 08:45:28.720 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  942. 2017-10-17 08:45:28.749 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  943. 2017-10-17 08:45:28.750 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  944. 2017-10-17 08:45:28.750 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  945. 2017-10-17 08:45:28.750 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  946. 2017-10-17 08:45:28.750 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  947. 2017-10-17 08:45:28.751 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  948. 2017-10-17 08:45:28.751 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  949. 2017-10-17 08:45:28.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  950. 2017-10-17 08:45:28.751 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  951. 2017-10-17 08:45:28.752 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  952. 2017-10-17 08:45:28.752 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  953. 2017-10-17 08:45:28.752 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  954. 2017-10-17 08:45:28.753 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  955. 2017-10-17 08:45:28.779 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  956. 2017-10-17 08:45:28.781 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  957. 2017-10-17 08:45:28.782 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  958. 2017-10-17 08:45:28.782 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  959. 2017-10-17 08:45:28.783 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  960. 2017-10-17 08:45:28.783 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  961. 2017-10-17 08:45:28.783 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  962. 2017-10-17 08:45:28.783 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  963. 2017-10-17 08:45:28.783 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  964. 2017-10-17 08:45:28.784 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  965. 2017-10-17 08:45:28.785 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  966. 2017-10-17 08:45:28.811 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  967. 2017-10-17 08:45:28.812 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  968. 2017-10-17 08:45:28.812 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  969. 2017-10-17 08:45:28.813 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  970. 2017-10-17 08:45:28.813 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  971. 2017-10-17 08:45:28.813 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  972. 2017-10-17 08:45:28.813 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  973. 2017-10-17 08:45:28.814 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  974. 2017-10-17 08:45:28.814 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  975. 2017-10-17 08:45:28.840 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  976. 2017-10-17 08:45:28.844 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  977. 2017-10-17 08:45:28.844 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  978. 2017-10-17 08:45:28.844 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  979. 2017-10-17 08:45:28.845 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  980. 2017-10-17 08:45:28.845 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  981. 2017-10-17 08:45:28.845 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  982. 2017-10-17 08:45:28.845 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  983. 2017-10-17 08:45:28.846 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  984. 2017-10-17 08:45:28.847 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  985. 2017-10-17 08:45:28.848 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  986. 2017-10-17 08:45:28.870 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  987. 2017-10-17 08:45:28.872 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  988. 2017-10-17 08:45:28.874 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  989. 2017-10-17 08:45:28.874 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  990. 2017-10-17 08:45:28.874 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  991. 2017-10-17 08:45:28.875 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  992. 2017-10-17 08:45:28.903 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  993. 2017-10-17 08:45:28.904 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  994. 2017-10-17 08:45:28.907 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  995. 2017-10-17 08:45:28.907 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  996. 2017-10-17 08:45:28.907 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  997. 2017-10-17 08:45:28.908 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  998. 2017-10-17 08:45:28.944 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 61
  999. 2017-10-17 08:45:28.945 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1000. 2017-10-17 08:45:28.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1001. 2017-10-17 08:45:28.948 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  1002. 2017-10-17 08:45:28.948 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  1003. 2017-10-17 08:45:28.949 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  1004. 2017-10-17 08:45:28.973 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1005. 2017-10-17 08:45:28.976 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  1006. 2017-10-17 08:45:28.978 |-ERROR [http-nio-8089-exec-11] com.xintong.visualinspection.controller.BaseController [195] -| 输入参数错误
  1007. com.xintong.system.err.BusinessException: null
  1008. at com.xintong.visualinspection.controller.RoleController.getAllRole(RoleController.java:102)
  1009. at com.xintong.visualinspection.controller.RoleController$$FastClassBySpringCGLIB$$7453e9b4.invoke(<generated>)
  1010. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  1011. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  1012. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  1013. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  1014. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  1015. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  1016. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  1017. at com.xintong.visualinspection.controller.RoleController$$EnhancerBySpringCGLIB$$4c8f9edf.getAllRole(<generated>)
  1018. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1019. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1020. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1021. at java.lang.reflect.Method.invoke(Method.java:497)
  1022. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  1023. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  1024. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  1025. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  1026. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  1027. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  1028. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  1029. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  1030. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1031. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1032. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
  1033. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1034. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  1035. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  1036. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1037. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  1038. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1039. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1040. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  1041. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1042. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1043. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1044. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  1045. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1046. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1047. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  1048. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1049. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1050. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  1051. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1052. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1053. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1054. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  1055. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1056. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1057. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  1058. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1059. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1060. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1061. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  1062. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  1063. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  1064. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1065. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  1066. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1067. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  1068. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1069. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  1070. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1071. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  1072. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1073. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  1074. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1075. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  1076. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1077. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1078. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  1079. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1080. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  1081. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1082. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1083. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  1084. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1085. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1086. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  1087. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1088. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  1089. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1090. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1091. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  1092. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  1093. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  1094. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  1095. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1096. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1097. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  1098. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1099. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1100. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1101. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  1102. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1103. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1104. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1105. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  1106. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1107. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1108. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1109. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  1110. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1111. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1112. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1113. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  1114. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1115. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1116. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1117. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  1118. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  1119. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  1120. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  1121. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  1122. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1123. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  1124. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  1125. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1126. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  1127. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  1128. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1129. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1130. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1131. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1132. at java.lang.Thread.run(Thread.java:745)
  1133. 2017-10-17 08:45:28.979 |-WARN [http-nio-8089-exec-11] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: BusinessException(errCode=ErrorCode(code=20001, desc=输入参数错误))
  1134. 2017-10-17 08:45:29.000 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1135. 2017-10-17 08:45:29.000 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1136. 2017-10-17 08:45:29.000 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1137. 2017-10-17 08:45:29.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1138. 2017-10-17 08:45:29.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1139. 2017-10-17 08:45:29.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1140. 2017-10-17 08:45:29.031 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1141. 2017-10-17 08:45:29.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1142. 2017-10-17 08:45:29.032 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1143. 2017-10-17 08:45:29.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1144. 2017-10-17 08:45:29.061 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1145. 2017-10-17 08:45:29.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1146. 2017-10-17 08:45:29.061 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1147. 2017-10-17 08:45:29.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1148. 2017-10-17 08:45:29.061 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1149. 2017-10-17 08:45:29.061 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1150. 2017-10-17 08:45:29.062 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1151. 2017-10-17 08:45:29.062 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1152. 2017-10-17 08:45:29.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1153. 2017-10-17 08:45:29.090 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1154. 2017-10-17 08:45:29.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1155. 2017-10-17 08:45:29.091 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1156. 2017-10-17 08:45:29.091 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1157. 2017-10-17 08:45:29.092 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1158. 2017-10-17 08:45:29.092 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1159. 2017-10-17 08:45:29.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1160. 2017-10-17 08:45:29.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1161. 2017-10-17 08:45:29.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1162. 2017-10-17 08:45:29.119 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1163. 2017-10-17 08:45:29.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1164. 2017-10-17 08:45:29.148 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1165. 2017-10-17 08:45:29.151 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1166. 2017-10-17 08:45:29.151 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1167. 2017-10-17 08:45:29.151 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1168. 2017-10-17 08:45:29.152 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1169. 2017-10-17 08:45:29.153 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1170. 2017-10-17 08:45:29.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1171. 2017-10-17 08:45:29.154 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  1172. 2017-10-17 08:45:29.154 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1173. 2017-10-17 08:45:29.155 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  1174. 2017-10-17 08:45:29.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  1175. 2017-10-17 08:45:29.156 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1176. 2017-10-17 08:45:29.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1177. 2017-10-17 08:45:29.186 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  1178. 2017-10-17 08:45:29.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1179. 2017-10-17 08:45:29.195 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1180. 2017-10-17 08:45:29.225 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1181. 2017-10-17 08:45:29.225 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1182. 2017-10-17 08:45:29.255 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1183. 2017-10-17 08:45:29.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1184. 2017-10-17 08:45:29.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1185. 2017-10-17 08:45:29.294 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1186. 2017-10-17 08:45:29.294 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1187. 2017-10-17 08:45:29.295 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1188. 2017-10-17 08:45:29.328 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1189. 2017-10-17 08:45:29.358 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1190. 2017-10-17 08:45:29.360 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1191. 2017-10-17 08:45:29.365 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1192. 2017-10-17 08:45:29.366 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1193. 2017-10-17 08:45:29.532 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  1194. 2017-10-17 08:45:29.558 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1195. 2017-10-17 08:45:29.590 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1196. 2017-10-17 08:45:29.590 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1197. 2017-10-17 08:45:29.619 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1198. 2017-10-17 08:45:29.620 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1199. 2017-10-17 08:45:29.620 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1200. 2017-10-17 08:45:29.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1201. 2017-10-17 08:45:29.657 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1202. 2017-10-17 08:45:29.657 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1203. 2017-10-17 08:45:29.752 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1204. 2017-10-17 08:45:29.783 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1205. 2017-10-17 08:45:29.785 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1206. 2017-10-17 08:45:29.789 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  1207. 2017-10-17 08:45:29.790 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1208. 2017-10-17 08:45:29.821 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  1209. 2017-10-17 08:45:29.913 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1210. 2017-10-17 08:45:29.951 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1211. 2017-10-17 08:45:29.951 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1212. 2017-10-17 08:45:29.982 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1213. 2017-10-17 08:45:29.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1214. 2017-10-17 08:45:29.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1215. 2017-10-17 08:45:30.015 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1216. 2017-10-17 08:45:30.016 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1217. 2017-10-17 08:45:30.016 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1218. 2017-10-17 08:45:30.044 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1219. 2017-10-17 08:45:30.074 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1220. 2017-10-17 08:45:30.075 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1221. 2017-10-17 08:45:30.115 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count
  1222. 2017-10-17 08:45:30.116 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
  1223. 2017-10-17 08:45:30.172 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  1224. 2017-10-17 08:45:30.173 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,?
  1225. 2017-10-17 08:45:30.174 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
  1226. 2017-10-17 08:45:30.239 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
  1227. 2017-10-17 08:45:33.056 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1228. 2017-10-17 08:45:33.056 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1229. 2017-10-17 08:45:33.086 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1230. 2017-10-17 08:45:33.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1231. 2017-10-17 08:45:33.088 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1232. 2017-10-17 08:45:33.088 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1233. 2017-10-17 08:45:33.118 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1234. 2017-10-17 08:45:33.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1235. 2017-10-17 08:45:33.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1236. 2017-10-17 08:45:33.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1237. 2017-10-17 08:45:33.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1238. 2017-10-17 08:45:33.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1239. 2017-10-17 08:45:33.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1240. 2017-10-17 08:45:33.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1241. 2017-10-17 08:45:33.161 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1242. 2017-10-17 08:45:33.161 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1243. 2017-10-17 08:45:33.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1244. 2017-10-17 08:45:33.162 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1245. 2017-10-17 08:45:33.210 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1246. 2017-10-17 08:45:33.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1247. 2017-10-17 08:45:33.279 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1248. 2017-10-17 08:45:33.279 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1249. 2017-10-17 08:45:33.281 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1250. 2017-10-17 08:45:33.281 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1251. 2017-10-17 08:45:33.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  1252. 2017-10-17 08:45:33.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 33(Long), 2017-10-01 00:00:00.0(Timestamp), 2017-10-31 00:00:00.0(Timestamp), 2(Integer)
  1253. 2017-10-17 08:45:33.301 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  1254. 2017-10-17 08:45:33.301 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 33(Long), 2(Long)
  1255. 2017-10-17 08:45:33.333 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
  1256. 2017-10-17 08:45:33.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 0
  1257. 2017-10-17 08:45:37.644 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1258. 2017-10-17 08:45:37.644 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1259. 2017-10-17 08:45:37.675 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1260. 2017-10-17 08:45:37.676 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1261. 2017-10-17 08:45:37.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1262. 2017-10-17 08:45:37.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1263. 2017-10-17 08:45:37.705 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1264. 2017-10-17 08:45:37.705 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1265. 2017-10-17 08:45:37.706 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1266. 2017-10-17 08:45:37.706 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1267. 2017-10-17 08:45:37.707 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1268. 2017-10-17 08:45:37.707 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1269. 2017-10-17 08:45:37.743 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1270. 2017-10-17 08:45:37.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1271. 2017-10-17 08:45:37.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1272. 2017-10-17 08:45:37.745 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1273. 2017-10-17 08:45:37.746 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1274. 2017-10-17 08:45:37.746 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1275. 2017-10-17 08:45:37.774 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1276. 2017-10-17 08:45:37.777 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1277. 2017-10-17 08:45:37.806 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1278. 2017-10-17 08:45:37.807 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1279. 2017-10-17 08:45:37.808 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1280. 2017-10-17 08:45:37.808 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1281. 2017-10-17 08:45:37.810 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  1282. 2017-10-17 08:45:37.811 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 33(Integer)
  1283. 2017-10-17 08:45:37.812 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  1284. 2017-10-17 08:45:37.813 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Parameters: 33(Long), 2(Long)
  1285. 2017-10-17 08:45:37.841 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| <== Total: 1
  1286. 2017-10-17 08:45:37.844 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  1287. 2017-10-17 08:45:37.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1288. 2017-10-17 08:45:37.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1289. 2017-10-17 08:45:37.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1290. 2017-10-17 08:45:37.876 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1291. 2017-10-17 08:45:37.876 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1292. 2017-10-17 08:45:37.904 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1293. 2017-10-17 08:45:37.905 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1294. 2017-10-17 08:45:37.906 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2043(Integer)
  1295. 2017-10-17 08:45:37.936 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  1296. 2017-10-17 08:45:37.937 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1297. 2017-10-17 08:45:37.938 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2043(Integer)
  1298. 2017-10-17 08:45:37.968 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1299. 2017-10-17 08:45:37.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1300. 2017-10-17 08:45:37.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2046(Integer)
  1301. 2017-10-17 08:45:37.999 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1302. 2017-10-17 08:45:38.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1303. 2017-10-17 08:45:38.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2046(Integer)
  1304. 2017-10-17 08:45:38.028 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1305. 2017-10-17 08:45:38.029 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1306. 2017-10-17 08:45:38.030 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2051(Integer)
  1307. 2017-10-17 08:45:38.058 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1308. 2017-10-17 08:45:38.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1309. 2017-10-17 08:45:38.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2051(Integer)
  1310. 2017-10-17 08:45:38.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1311. 2017-10-17 08:45:38.088 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1312. 2017-10-17 08:45:38.089 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2061(Integer)
  1313. 2017-10-17 08:45:38.118 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1314. 2017-10-17 08:45:38.120 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1315. 2017-10-17 08:45:38.121 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2061(Integer)
  1316. 2017-10-17 08:45:38.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1317. 2017-10-17 08:45:38.149 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1318. 2017-10-17 08:45:38.149 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2053(Integer)
  1319. 2017-10-17 08:45:38.177 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1320. 2017-10-17 08:45:38.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1321. 2017-10-17 08:45:38.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2053(Integer)
  1322. 2017-10-17 08:45:38.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1323. 2017-10-17 08:45:38.209 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1324. 2017-10-17 08:45:38.210 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2044(Integer)
  1325. 2017-10-17 08:45:38.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1326. 2017-10-17 08:45:38.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1327. 2017-10-17 08:45:38.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2044(Integer)
  1328. 2017-10-17 08:45:38.268 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1329. 2017-10-17 08:45:38.270 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1330. 2017-10-17 08:45:38.270 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2045(Integer)
  1331. 2017-10-17 08:45:38.299 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1332. 2017-10-17 08:45:38.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1333. 2017-10-17 08:45:38.301 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2045(Integer)
  1334. 2017-10-17 08:45:38.331 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1335. 2017-10-17 08:45:38.332 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1336. 2017-10-17 08:45:38.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2047(Integer)
  1337. 2017-10-17 08:45:38.418 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1338. 2017-10-17 08:45:38.420 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1339. 2017-10-17 08:45:38.420 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2047(Integer)
  1340. 2017-10-17 08:45:38.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1341. 2017-10-17 08:45:38.450 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1342. 2017-10-17 08:45:38.450 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2066(Integer)
  1343. 2017-10-17 08:45:38.478 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1344. 2017-10-17 08:45:38.479 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1345. 2017-10-17 08:45:38.479 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2066(Integer)
  1346. 2017-10-17 08:45:38.507 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1347. 2017-10-17 08:45:38.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1348. 2017-10-17 08:45:38.510 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2048(Integer)
  1349. 2017-10-17 08:45:38.539 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1350. 2017-10-17 08:45:38.540 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1351. 2017-10-17 08:45:38.540 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2048(Integer)
  1352. 2017-10-17 08:45:38.571 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1353. 2017-10-17 08:45:38.573 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1354. 2017-10-17 08:45:38.573 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2063(Integer)
  1355. 2017-10-17 08:45:38.602 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1356. 2017-10-17 08:45:38.604 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1357. 2017-10-17 08:45:38.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2063(Integer)
  1358. 2017-10-17 08:45:38.632 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1359. 2017-10-17 08:45:38.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1360. 2017-10-17 08:45:38.635 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2064(Integer)
  1361. 2017-10-17 08:45:38.663 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1362. 2017-10-17 08:45:38.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1363. 2017-10-17 08:45:38.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2064(Integer)
  1364. 2017-10-17 08:45:38.697 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1365. 2017-10-17 08:45:38.698 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1366. 2017-10-17 08:45:38.699 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2049(Integer)
  1367. 2017-10-17 08:45:38.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1368. 2017-10-17 08:45:38.738 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1369. 2017-10-17 08:45:38.739 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2049(Integer)
  1370. 2017-10-17 08:45:38.771 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1371. 2017-10-17 08:45:38.772 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1372. 2017-10-17 08:45:38.772 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2050(Integer)
  1373. 2017-10-17 08:45:38.803 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1374. 2017-10-17 08:45:38.805 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1375. 2017-10-17 08:45:38.806 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2050(Integer)
  1376. 2017-10-17 08:45:38.834 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1377. 2017-10-17 08:45:38.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1378. 2017-10-17 08:45:38.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2057(Integer)
  1379. 2017-10-17 08:45:38.864 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1380. 2017-10-17 08:45:38.866 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1381. 2017-10-17 08:45:38.866 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2057(Integer)
  1382. 2017-10-17 08:45:38.899 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1383. 2017-10-17 08:45:38.900 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1384. 2017-10-17 08:45:38.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2052(Integer)
  1385. 2017-10-17 08:45:38.928 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1386. 2017-10-17 08:45:38.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1387. 2017-10-17 08:45:38.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2052(Integer)
  1388. 2017-10-17 08:45:38.957 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1389. 2017-10-17 08:45:38.958 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1390. 2017-10-17 08:45:38.958 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2055(Integer)
  1391. 2017-10-17 08:45:38.986 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1392. 2017-10-17 08:45:38.987 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1393. 2017-10-17 08:45:38.988 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2055(Integer)
  1394. 2017-10-17 08:45:39.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1395. 2017-10-17 08:45:39.016 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1396. 2017-10-17 08:45:39.016 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2056(Integer)
  1397. 2017-10-17 08:45:39.045 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1398. 2017-10-17 08:45:39.046 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1399. 2017-10-17 08:45:39.046 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2056(Integer)
  1400. 2017-10-17 08:45:39.073 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1401. 2017-10-17 08:45:39.074 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1402. 2017-10-17 08:45:39.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2058(Integer)
  1403. 2017-10-17 08:45:39.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1404. 2017-10-17 08:45:39.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1405. 2017-10-17 08:45:39.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2058(Integer)
  1406. 2017-10-17 08:45:39.134 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1407. 2017-10-17 08:45:39.135 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1408. 2017-10-17 08:45:39.136 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2059(Integer)
  1409. 2017-10-17 08:45:39.188 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1410. 2017-10-17 08:45:39.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1411. 2017-10-17 08:45:39.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2059(Integer)
  1412. 2017-10-17 08:45:39.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1413. 2017-10-17 08:45:39.233 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1414. 2017-10-17 08:45:39.233 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2060(Integer)
  1415. 2017-10-17 08:45:39.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1416. 2017-10-17 08:45:39.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1417. 2017-10-17 08:45:39.264 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2060(Integer)
  1418. 2017-10-17 08:45:39.291 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1419. 2017-10-17 08:45:39.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1420. 2017-10-17 08:45:39.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2062(Integer)
  1421. 2017-10-17 08:45:39.321 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1422. 2017-10-17 08:45:39.323 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1423. 2017-10-17 08:45:39.323 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2062(Integer)
  1424. 2017-10-17 08:45:39.352 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1425. 2017-10-17 08:45:39.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1426. 2017-10-17 08:45:39.354 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2065(Integer)
  1427. 2017-10-17 08:45:39.382 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1428. 2017-10-17 08:45:39.383 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1429. 2017-10-17 08:45:39.384 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2065(Integer)
  1430. 2017-10-17 08:45:39.411 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1431. 2017-10-17 08:45:43.231 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1432. 2017-10-17 08:45:43.240 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1433. 2017-10-17 08:45:43.240 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1434. 2017-10-17 08:45:43.261 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1435. 2017-10-17 08:45:43.261 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1436. 2017-10-17 08:45:43.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1437. 2017-10-17 08:45:43.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1438. 2017-10-17 08:45:43.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1439. 2017-10-17 08:45:43.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1440. 2017-10-17 08:45:43.290 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1441. 2017-10-17 08:45:43.293 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1442. 2017-10-17 08:45:43.294 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1443. 2017-10-17 08:45:43.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1444. 2017-10-17 08:45:43.300 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1445. 2017-10-17 08:45:43.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1446. 2017-10-17 08:45:43.300 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1447. 2017-10-17 08:45:43.301 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1448. 2017-10-17 08:45:43.301 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1449. 2017-10-17 08:45:43.325 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1450. 2017-10-17 08:45:43.326 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1451. 2017-10-17 08:45:43.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1452. 2017-10-17 08:45:43.331 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1453. 2017-10-17 08:45:43.331 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1454. 2017-10-17 08:45:43.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1455. 2017-10-17 08:45:43.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1456. 2017-10-17 08:45:43.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1457. 2017-10-17 08:45:43.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1458. 2017-10-17 08:45:43.356 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1459. 2017-10-17 08:45:43.358 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1460. 2017-10-17 08:45:43.365 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1461. 2017-10-17 08:45:43.389 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1462. 2017-10-17 08:45:43.391 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1463. 2017-10-17 08:45:43.393 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1464. 2017-10-17 08:45:43.393 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1465. 2017-10-17 08:45:43.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  1466. 2017-10-17 08:45:43.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  1467. 2017-10-17 08:45:43.398 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1468. 2017-10-17 08:45:43.399 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1469. 2017-10-17 08:45:43.422 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  1470. 2017-10-17 08:45:43.426 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  1471. 2017-10-17 08:45:43.427 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  1472. 2017-10-17 08:45:43.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  1473. 2017-10-17 08:45:43.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  1474. 2017-10-17 08:45:43.457 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  1475. 2017-10-17 08:45:43.458 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  1476. 2017-10-17 08:45:43.459 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [195] -| 输入参数错误
  1477. com.xintong.system.err.BusinessException: null
  1478. at com.xintong.visualinspection.controller.RoleController.getAllRole(RoleController.java:102)
  1479. at com.xintong.visualinspection.controller.RoleController$$FastClassBySpringCGLIB$$7453e9b4.invoke(<generated>)
  1480. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  1481. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  1482. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  1483. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  1484. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  1485. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  1486. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  1487. at com.xintong.visualinspection.controller.RoleController$$EnhancerBySpringCGLIB$$4c8f9edf.getAllRole(<generated>)
  1488. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1489. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1490. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1491. at java.lang.reflect.Method.invoke(Method.java:497)
  1492. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  1493. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  1494. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  1495. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  1496. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  1497. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  1498. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  1499. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  1500. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1501. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1502. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
  1503. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1504. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  1505. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  1506. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1507. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  1508. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1509. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1510. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  1511. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1512. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1513. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1514. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  1515. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1516. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1517. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  1518. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1519. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1520. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  1521. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1522. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1523. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1524. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  1525. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1526. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1527. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  1528. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1529. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1530. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1531. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  1532. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  1533. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  1534. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1535. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  1536. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1537. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  1538. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1539. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  1540. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1541. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  1542. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1543. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  1544. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1545. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  1546. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1547. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1548. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  1549. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1550. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  1551. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1552. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1553. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  1554. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1555. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1556. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  1557. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1558. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  1559. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1560. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1561. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  1562. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  1563. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  1564. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  1565. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1566. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1567. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  1568. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1569. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1570. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1571. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  1572. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1573. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1574. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1575. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  1576. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1577. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1578. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1579. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  1580. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1581. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1582. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1583. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  1584. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1585. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1586. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1587. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  1588. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  1589. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  1590. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  1591. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  1592. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1593. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  1594. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  1595. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1596. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  1597. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  1598. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1599. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1600. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1601. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1602. at java.lang.Thread.run(Thread.java:745)
  1603. 2017-10-17 08:45:43.459 |-WARN [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: BusinessException(errCode=ErrorCode(code=20001, desc=输入参数错误))
  1604. 2017-10-17 08:45:44.625 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1605. 2017-10-17 08:45:44.655 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1606. 2017-10-17 08:45:44.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1607. 2017-10-17 08:45:44.686 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1608. 2017-10-17 08:45:44.687 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1609. 2017-10-17 08:45:44.688 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1610. 2017-10-17 08:45:44.717 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1611. 2017-10-17 08:45:44.718 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1612. 2017-10-17 08:45:44.718 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1613. 2017-10-17 08:45:44.744 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1614. 2017-10-17 08:45:44.775 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1615. 2017-10-17 08:45:44.776 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1616. 2017-10-17 08:45:44.779 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  1617. 2017-10-17 08:45:44.780 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 34(Integer)
  1618. 2017-10-17 08:45:44.821 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 28
  1619. 2017-10-17 08:45:44.823 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1620. 2017-10-17 08:45:44.824 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  1621. 2017-10-17 08:45:44.855 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  1622. 2017-10-17 08:45:44.858 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1623. 2017-10-17 08:45:44.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  1624. 2017-10-17 08:45:44.886 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1625. 2017-10-17 08:45:44.888 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1626. 2017-10-17 08:45:44.888 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
  1627. 2017-10-17 08:45:44.918 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  1628. 2017-10-17 08:45:44.919 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1629. 2017-10-17 08:45:44.919 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
  1630. 2017-10-17 08:45:44.945 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1631. 2017-10-17 08:45:44.946 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1632. 2017-10-17 08:45:44.946 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2285(Integer)
  1633. 2017-10-17 08:45:44.976 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  1634. 2017-10-17 08:45:44.977 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1635. 2017-10-17 08:45:44.978 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2285(Integer)
  1636. 2017-10-17 08:45:45.004 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1637. 2017-10-17 08:45:45.006 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1638. 2017-10-17 08:45:45.007 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2286(Integer)
  1639. 2017-10-17 08:45:45.036 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  1640. 2017-10-17 08:45:45.037 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1641. 2017-10-17 08:45:45.037 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2286(Integer)
  1642. 2017-10-17 08:45:45.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1643. 2017-10-17 08:45:45.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1644. 2017-10-17 08:45:45.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2287(Integer)
  1645. 2017-10-17 08:45:45.093 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1646. 2017-10-17 08:45:45.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1647. 2017-10-17 08:45:45.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2287(Integer)
  1648. 2017-10-17 08:45:45.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1649. 2017-10-17 08:45:45.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1650. 2017-10-17 08:45:45.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2288(Integer)
  1651. 2017-10-17 08:45:45.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1652. 2017-10-17 08:45:45.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1653. 2017-10-17 08:45:45.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2288(Integer)
  1654. 2017-10-17 08:45:45.178 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1655. 2017-10-17 08:45:45.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1656. 2017-10-17 08:45:45.180 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2289(Integer)
  1657. 2017-10-17 08:45:45.212 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1658. 2017-10-17 08:45:45.213 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1659. 2017-10-17 08:45:45.213 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2289(Integer)
  1660. 2017-10-17 08:45:45.241 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1661. 2017-10-17 08:45:45.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1662. 2017-10-17 08:45:45.243 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2290(Integer)
  1663. 2017-10-17 08:45:45.271 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1664. 2017-10-17 08:45:45.272 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1665. 2017-10-17 08:45:45.273 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2290(Integer)
  1666. 2017-10-17 08:45:45.300 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1667. 2017-10-17 08:45:45.302 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1668. 2017-10-17 08:45:45.302 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2291(Integer)
  1669. 2017-10-17 08:45:45.329 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1670. 2017-10-17 08:45:45.330 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1671. 2017-10-17 08:45:45.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2291(Integer)
  1672. 2017-10-17 08:45:45.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1673. 2017-10-17 08:45:45.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1674. 2017-10-17 08:45:45.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2292(Integer)
  1675. 2017-10-17 08:45:45.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1676. 2017-10-17 08:45:45.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1677. 2017-10-17 08:45:45.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2292(Integer)
  1678. 2017-10-17 08:45:45.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1679. 2017-10-17 08:45:45.416 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1680. 2017-10-17 08:45:45.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2293(Integer)
  1681. 2017-10-17 08:45:45.444 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1682. 2017-10-17 08:45:45.446 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1683. 2017-10-17 08:45:45.446 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2293(Integer)
  1684. 2017-10-17 08:45:45.472 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1685. 2017-10-17 08:45:45.474 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1686. 2017-10-17 08:45:45.474 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2294(Integer)
  1687. 2017-10-17 08:45:45.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1688. 2017-10-17 08:45:45.503 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1689. 2017-10-17 08:45:45.504 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2294(Integer)
  1690. 2017-10-17 08:45:45.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1691. 2017-10-17 08:45:45.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1692. 2017-10-17 08:45:45.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2295(Integer)
  1693. 2017-10-17 08:45:45.560 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1694. 2017-10-17 08:45:45.561 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1695. 2017-10-17 08:45:45.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2295(Integer)
  1696. 2017-10-17 08:45:45.589 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1697. 2017-10-17 08:45:45.591 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1698. 2017-10-17 08:45:45.591 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2296(Integer)
  1699. 2017-10-17 08:45:45.618 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1700. 2017-10-17 08:45:45.620 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1701. 2017-10-17 08:45:45.621 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2296(Integer)
  1702. 2017-10-17 08:45:45.649 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1703. 2017-10-17 08:45:45.650 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1704. 2017-10-17 08:45:45.651 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2297(Integer)
  1705. 2017-10-17 08:45:45.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1706. 2017-10-17 08:45:45.680 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1707. 2017-10-17 08:45:45.681 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2297(Integer)
  1708. 2017-10-17 08:45:45.708 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1709. 2017-10-17 08:45:45.709 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1710. 2017-10-17 08:45:45.709 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2298(Integer)
  1711. 2017-10-17 08:45:45.744 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1712. 2017-10-17 08:45:45.745 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1713. 2017-10-17 08:45:45.746 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2298(Integer)
  1714. 2017-10-17 08:45:45.775 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1715. 2017-10-17 08:45:45.776 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1716. 2017-10-17 08:45:45.777 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2299(Integer)
  1717. 2017-10-17 08:45:45.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1718. 2017-10-17 08:45:45.805 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1719. 2017-10-17 08:45:45.805 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2299(Integer)
  1720. 2017-10-17 08:45:45.832 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1721. 2017-10-17 08:45:45.834 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1722. 2017-10-17 08:45:45.835 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2300(Integer)
  1723. 2017-10-17 08:45:45.863 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1724. 2017-10-17 08:45:45.864 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1725. 2017-10-17 08:45:45.864 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2300(Integer)
  1726. 2017-10-17 08:45:45.892 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1727. 2017-10-17 08:45:45.893 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1728. 2017-10-17 08:45:45.894 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2301(Integer)
  1729. 2017-10-17 08:45:45.921 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1730. 2017-10-17 08:45:45.923 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1731. 2017-10-17 08:45:45.923 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2301(Integer)
  1732. 2017-10-17 08:45:45.950 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1733. 2017-10-17 08:45:45.951 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1734. 2017-10-17 08:45:45.952 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2302(Integer)
  1735. 2017-10-17 08:45:45.979 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1736. 2017-10-17 08:45:45.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1737. 2017-10-17 08:45:45.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2302(Integer)
  1738. 2017-10-17 08:45:46.006 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1739. 2017-10-17 08:45:46.007 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1740. 2017-10-17 08:45:46.008 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2303(Integer)
  1741. 2017-10-17 08:45:46.039 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1742. 2017-10-17 08:45:46.041 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1743. 2017-10-17 08:45:46.042 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2303(Integer)
  1744. 2017-10-17 08:45:46.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1745. 2017-10-17 08:45:46.070 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1746. 2017-10-17 08:45:46.070 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2304(Integer)
  1747. 2017-10-17 08:45:46.118 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1748. 2017-10-17 08:45:46.119 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1749. 2017-10-17 08:45:46.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2304(Integer)
  1750. 2017-10-17 08:45:46.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1751. 2017-10-17 08:45:46.152 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1752. 2017-10-17 08:45:46.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2305(Integer)
  1753. 2017-10-17 08:45:46.180 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1754. 2017-10-17 08:45:46.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1755. 2017-10-17 08:45:46.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2305(Integer)
  1756. 2017-10-17 08:45:46.208 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1757. 2017-10-17 08:45:46.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1758. 2017-10-17 08:45:46.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2306(Integer)
  1759. 2017-10-17 08:45:46.237 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1760. 2017-10-17 08:45:46.239 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1761. 2017-10-17 08:45:46.240 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2306(Integer)
  1762. 2017-10-17 08:45:46.267 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1763. 2017-10-17 08:45:46.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1764. 2017-10-17 08:45:46.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2307(Integer)
  1765. 2017-10-17 08:45:46.296 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1766. 2017-10-17 08:45:46.297 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1767. 2017-10-17 08:45:46.298 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2307(Integer)
  1768. 2017-10-17 08:45:46.325 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1769. 2017-10-17 08:45:46.326 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1770. 2017-10-17 08:45:46.327 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2308(Integer)
  1771. 2017-10-17 08:45:46.355 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1772. 2017-10-17 08:45:46.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1773. 2017-10-17 08:45:46.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2308(Integer)
  1774. 2017-10-17 08:45:46.385 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1775. 2017-10-17 08:45:46.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1776. 2017-10-17 08:45:46.387 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2309(Integer)
  1777. 2017-10-17 08:45:46.413 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1778. 2017-10-17 08:45:46.418 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1779. 2017-10-17 08:45:46.419 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2309(Integer)
  1780. 2017-10-17 08:45:46.445 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1781. 2017-10-17 08:45:46.446 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1782. 2017-10-17 08:45:46.447 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2310(Integer)
  1783. 2017-10-17 08:45:46.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1784. 2017-10-17 08:45:46.477 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1785. 2017-10-17 08:45:46.478 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2310(Integer)
  1786. 2017-10-17 08:45:46.506 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1787. 2017-10-17 08:45:46.637 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1788. 2017-10-17 08:45:46.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1789. 2017-10-17 08:45:46.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1790. 2017-10-17 08:45:46.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1791. 2017-10-17 08:45:46.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1792. 2017-10-17 08:45:46.820 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1793. 2017-10-17 08:45:46.851 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1794. 2017-10-17 08:45:46.852 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1795. 2017-10-17 08:45:46.852 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1796. 2017-10-17 08:45:46.884 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1797. 2017-10-17 08:45:46.937 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1798. 2017-10-17 08:45:46.939 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1799. 2017-10-17 08:45:46.943 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  1800. 2017-10-17 08:45:46.943 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 33(Integer)
  1801. 2017-10-17 08:45:46.983 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  1802. 2017-10-17 08:45:46.984 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1803. 2017-10-17 08:45:46.984 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1804. 2017-10-17 08:45:47.034 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1805. 2017-10-17 08:45:47.035 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1806. 2017-10-17 08:45:47.035 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1807. 2017-10-17 08:45:47.073 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1808. 2017-10-17 08:45:47.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1809. 2017-10-17 08:45:47.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2043(Integer)
  1810. 2017-10-17 08:45:47.124 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  1811. 2017-10-17 08:45:47.124 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1812. 2017-10-17 08:45:47.125 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2043(Integer)
  1813. 2017-10-17 08:45:47.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1814. 2017-10-17 08:45:47.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1815. 2017-10-17 08:45:47.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2046(Integer)
  1816. 2017-10-17 08:45:47.206 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1817. 2017-10-17 08:45:47.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1818. 2017-10-17 08:45:47.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2046(Integer)
  1819. 2017-10-17 08:45:47.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1820. 2017-10-17 08:45:47.235 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1821. 2017-10-17 08:45:47.236 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2051(Integer)
  1822. 2017-10-17 08:45:47.263 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1823. 2017-10-17 08:45:47.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1824. 2017-10-17 08:45:47.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2051(Integer)
  1825. 2017-10-17 08:45:47.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1826. 2017-10-17 08:45:47.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1827. 2017-10-17 08:45:47.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2061(Integer)
  1828. 2017-10-17 08:45:47.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1829. 2017-10-17 08:45:47.322 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1830. 2017-10-17 08:45:47.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2061(Integer)
  1831. 2017-10-17 08:45:47.350 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1832. 2017-10-17 08:45:47.351 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1833. 2017-10-17 08:45:47.351 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2053(Integer)
  1834. 2017-10-17 08:45:47.380 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1835. 2017-10-17 08:45:47.381 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1836. 2017-10-17 08:45:47.382 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2053(Integer)
  1837. 2017-10-17 08:45:47.413 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1838. 2017-10-17 08:45:47.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1839. 2017-10-17 08:45:47.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2044(Integer)
  1840. 2017-10-17 08:45:47.455 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1841. 2017-10-17 08:45:47.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1842. 2017-10-17 08:45:47.458 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2044(Integer)
  1843. 2017-10-17 08:45:47.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1844. 2017-10-17 08:45:47.486 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1845. 2017-10-17 08:45:47.486 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2045(Integer)
  1846. 2017-10-17 08:45:47.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1847. 2017-10-17 08:45:47.516 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1848. 2017-10-17 08:45:47.516 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2045(Integer)
  1849. 2017-10-17 08:45:47.544 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1850. 2017-10-17 08:45:47.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1851. 2017-10-17 08:45:47.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2047(Integer)
  1852. 2017-10-17 08:45:47.574 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1853. 2017-10-17 08:45:47.578 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1854. 2017-10-17 08:45:47.578 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2047(Integer)
  1855. 2017-10-17 08:45:47.608 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1856. 2017-10-17 08:45:47.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1857. 2017-10-17 08:45:47.612 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2066(Integer)
  1858. 2017-10-17 08:45:47.639 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1859. 2017-10-17 08:45:47.642 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1860. 2017-10-17 08:45:47.644 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2066(Integer)
  1861. 2017-10-17 08:45:47.670 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1862. 2017-10-17 08:45:47.672 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1863. 2017-10-17 08:45:47.673 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2048(Integer)
  1864. 2017-10-17 08:45:47.701 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1865. 2017-10-17 08:45:47.702 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1866. 2017-10-17 08:45:47.703 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2048(Integer)
  1867. 2017-10-17 08:45:47.729 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1868. 2017-10-17 08:45:47.730 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1869. 2017-10-17 08:45:47.730 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2063(Integer)
  1870. 2017-10-17 08:45:47.758 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1871. 2017-10-17 08:45:47.759 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1872. 2017-10-17 08:45:47.759 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2063(Integer)
  1873. 2017-10-17 08:45:47.785 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1874. 2017-10-17 08:45:47.786 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1875. 2017-10-17 08:45:47.787 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2064(Integer)
  1876. 2017-10-17 08:45:47.817 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1877. 2017-10-17 08:45:47.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1878. 2017-10-17 08:45:47.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2064(Integer)
  1879. 2017-10-17 08:45:47.859 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1880. 2017-10-17 08:45:47.861 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1881. 2017-10-17 08:45:47.861 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2049(Integer)
  1882. 2017-10-17 08:45:47.911 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1883. 2017-10-17 08:45:47.912 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1884. 2017-10-17 08:45:47.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2049(Integer)
  1885. 2017-10-17 08:45:47.940 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1886. 2017-10-17 08:45:47.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1887. 2017-10-17 08:45:47.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2050(Integer)
  1888. 2017-10-17 08:45:47.969 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1889. 2017-10-17 08:45:47.970 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1890. 2017-10-17 08:45:47.970 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2050(Integer)
  1891. 2017-10-17 08:45:48.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1892. 2017-10-17 08:45:48.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1893. 2017-10-17 08:45:48.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2057(Integer)
  1894. 2017-10-17 08:45:48.052 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1895. 2017-10-17 08:45:48.054 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1896. 2017-10-17 08:45:48.055 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2057(Integer)
  1897. 2017-10-17 08:45:48.083 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1898. 2017-10-17 08:45:48.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1899. 2017-10-17 08:45:48.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2052(Integer)
  1900. 2017-10-17 08:45:48.112 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1901. 2017-10-17 08:45:48.114 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1902. 2017-10-17 08:45:48.114 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2052(Integer)
  1903. 2017-10-17 08:45:48.143 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1904. 2017-10-17 08:45:48.144 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1905. 2017-10-17 08:45:48.145 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2055(Integer)
  1906. 2017-10-17 08:45:48.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1907. 2017-10-17 08:45:48.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1908. 2017-10-17 08:45:48.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2055(Integer)
  1909. 2017-10-17 08:45:48.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1910. 2017-10-17 08:45:48.201 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1911. 2017-10-17 08:45:48.202 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2056(Integer)
  1912. 2017-10-17 08:45:48.229 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1913. 2017-10-17 08:45:48.230 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1914. 2017-10-17 08:45:48.231 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2056(Integer)
  1915. 2017-10-17 08:45:48.257 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1916. 2017-10-17 08:45:48.259 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1917. 2017-10-17 08:45:48.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2058(Integer)
  1918. 2017-10-17 08:45:48.288 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1919. 2017-10-17 08:45:48.289 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1920. 2017-10-17 08:45:48.289 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2058(Integer)
  1921. 2017-10-17 08:45:48.316 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1922. 2017-10-17 08:45:48.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1923. 2017-10-17 08:45:48.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2059(Integer)
  1924. 2017-10-17 08:45:48.345 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1925. 2017-10-17 08:45:48.347 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1926. 2017-10-17 08:45:48.347 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2059(Integer)
  1927. 2017-10-17 08:45:48.374 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1928. 2017-10-17 08:45:48.375 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1929. 2017-10-17 08:45:48.376 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2060(Integer)
  1930. 2017-10-17 08:45:48.409 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1931. 2017-10-17 08:45:48.410 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1932. 2017-10-17 08:45:48.410 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2060(Integer)
  1933. 2017-10-17 08:45:48.437 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1934. 2017-10-17 08:45:48.439 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1935. 2017-10-17 08:45:48.439 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2062(Integer)
  1936. 2017-10-17 08:45:48.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1937. 2017-10-17 08:45:48.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1938. 2017-10-17 08:45:48.469 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2062(Integer)
  1939. 2017-10-17 08:45:48.495 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1940. 2017-10-17 08:45:48.496 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1941. 2017-10-17 08:45:48.497 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2065(Integer)
  1942. 2017-10-17 08:45:48.524 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  1943. 2017-10-17 08:45:48.525 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1944. 2017-10-17 08:45:48.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2065(Integer)
  1945. 2017-10-17 08:45:48.552 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1946. 2017-10-17 08:45:50.840 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1947. 2017-10-17 08:45:50.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1948. 2017-10-17 08:45:50.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  1949. 2017-10-17 08:45:50.908 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1950. 2017-10-17 08:45:50.910 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1951. 2017-10-17 08:45:50.911 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  1952. 2017-10-17 08:45:50.942 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  1953. 2017-10-17 08:45:50.944 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1954. 2017-10-17 08:45:50.944 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  1955. 2017-10-17 08:45:50.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1956. 2017-10-17 08:45:51.003 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  1957. 2017-10-17 08:45:51.004 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  1958. 2017-10-17 08:45:51.007 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  1959. 2017-10-17 08:45:51.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 34(Integer)
  1960. 2017-10-17 08:45:51.044 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 28
  1961. 2017-10-17 08:45:51.045 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1962. 2017-10-17 08:45:51.045 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  1963. 2017-10-17 08:45:51.074 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  1964. 2017-10-17 08:45:51.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1965. 2017-10-17 08:45:51.076 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  1966. 2017-10-17 08:45:51.103 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1967. 2017-10-17 08:45:51.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1968. 2017-10-17 08:45:51.105 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
  1969. 2017-10-17 08:45:51.135 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  1970. 2017-10-17 08:45:51.137 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1971. 2017-10-17 08:45:51.137 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
  1972. 2017-10-17 08:45:51.163 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1973. 2017-10-17 08:45:51.164 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1974. 2017-10-17 08:45:51.164 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2285(Integer)
  1975. 2017-10-17 08:45:51.202 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  1976. 2017-10-17 08:45:51.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1977. 2017-10-17 08:45:51.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2285(Integer)
  1978. 2017-10-17 08:45:51.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1979. 2017-10-17 08:45:51.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1980. 2017-10-17 08:45:51.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2286(Integer)
  1981. 2017-10-17 08:45:51.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 27
  1982. 2017-10-17 08:45:51.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1983. 2017-10-17 08:45:51.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2286(Integer)
  1984. 2017-10-17 08:45:51.287 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1985. 2017-10-17 08:45:51.289 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1986. 2017-10-17 08:45:51.289 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2287(Integer)
  1987. 2017-10-17 08:45:51.318 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1988. 2017-10-17 08:45:51.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1989. 2017-10-17 08:45:51.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2287(Integer)
  1990. 2017-10-17 08:45:51.347 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1991. 2017-10-17 08:45:51.348 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1992. 2017-10-17 08:45:51.349 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2288(Integer)
  1993. 2017-10-17 08:45:51.377 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  1994. 2017-10-17 08:45:51.378 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1995. 2017-10-17 08:45:51.378 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2288(Integer)
  1996. 2017-10-17 08:45:51.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1997. 2017-10-17 08:45:51.406 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1998. 2017-10-17 08:45:51.407 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2289(Integer)
  1999. 2017-10-17 08:45:51.436 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  2000. 2017-10-17 08:45:51.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2001. 2017-10-17 08:45:51.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2289(Integer)
  2002. 2017-10-17 08:45:51.466 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2003. 2017-10-17 08:45:51.467 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2004. 2017-10-17 08:45:51.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2290(Integer)
  2005. 2017-10-17 08:45:51.495 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  2006. 2017-10-17 08:45:51.496 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2007. 2017-10-17 08:45:51.497 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2290(Integer)
  2008. 2017-10-17 08:45:51.524 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2009. 2017-10-17 08:45:51.525 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2010. 2017-10-17 08:45:51.526 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2291(Integer)
  2011. 2017-10-17 08:45:51.554 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2012. 2017-10-17 08:45:51.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2013. 2017-10-17 08:45:51.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2291(Integer)
  2014. 2017-10-17 08:45:51.585 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2015. 2017-10-17 08:45:51.586 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2016. 2017-10-17 08:45:51.586 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2292(Integer)
  2017. 2017-10-17 08:45:51.615 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2018. 2017-10-17 08:45:51.616 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2019. 2017-10-17 08:45:51.616 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2292(Integer)
  2020. 2017-10-17 08:45:51.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2021. 2017-10-17 08:45:51.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2022. 2017-10-17 08:45:51.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2293(Integer)
  2023. 2017-10-17 08:45:51.672 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2024. 2017-10-17 08:45:51.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2025. 2017-10-17 08:45:51.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2293(Integer)
  2026. 2017-10-17 08:45:51.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2027. 2017-10-17 08:45:51.701 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2028. 2017-10-17 08:45:51.701 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2294(Integer)
  2029. 2017-10-17 08:45:51.728 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2030. 2017-10-17 08:45:51.729 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2031. 2017-10-17 08:45:51.730 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2294(Integer)
  2032. 2017-10-17 08:45:51.756 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2033. 2017-10-17 08:45:51.757 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2034. 2017-10-17 08:45:51.758 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2295(Integer)
  2035. 2017-10-17 08:45:51.785 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2036. 2017-10-17 08:45:51.787 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2037. 2017-10-17 08:45:51.787 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2295(Integer)
  2038. 2017-10-17 08:45:51.817 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2039. 2017-10-17 08:45:51.818 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2040. 2017-10-17 08:45:51.818 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2296(Integer)
  2041. 2017-10-17 08:45:51.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2042. 2017-10-17 08:45:51.846 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2043. 2017-10-17 08:45:51.847 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2296(Integer)
  2044. 2017-10-17 08:45:51.877 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2045. 2017-10-17 08:45:51.878 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2046. 2017-10-17 08:45:51.878 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2297(Integer)
  2047. 2017-10-17 08:45:51.909 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2048. 2017-10-17 08:45:51.911 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2049. 2017-10-17 08:45:51.911 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2297(Integer)
  2050. 2017-10-17 08:45:51.937 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2051. 2017-10-17 08:45:51.939 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2052. 2017-10-17 08:45:51.939 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2298(Integer)
  2053. 2017-10-17 08:45:51.968 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2054. 2017-10-17 08:45:51.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2055. 2017-10-17 08:45:51.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2298(Integer)
  2056. 2017-10-17 08:45:51.997 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2057. 2017-10-17 08:45:51.997 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2058. 2017-10-17 08:45:51.998 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2299(Integer)
  2059. 2017-10-17 08:45:52.025 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2060. 2017-10-17 08:45:52.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2061. 2017-10-17 08:45:52.027 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2299(Integer)
  2062. 2017-10-17 08:45:52.053 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2063. 2017-10-17 08:45:52.055 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2064. 2017-10-17 08:45:52.055 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2300(Integer)
  2065. 2017-10-17 08:45:52.084 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2066. 2017-10-17 08:45:52.085 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2067. 2017-10-17 08:45:52.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2300(Integer)
  2068. 2017-10-17 08:45:52.114 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2069. 2017-10-17 08:45:52.115 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2070. 2017-10-17 08:45:52.116 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2301(Integer)
  2071. 2017-10-17 08:45:52.145 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2072. 2017-10-17 08:45:52.146 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2073. 2017-10-17 08:45:52.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2301(Integer)
  2074. 2017-10-17 08:45:52.174 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2075. 2017-10-17 08:45:52.175 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2076. 2017-10-17 08:45:52.176 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2302(Integer)
  2077. 2017-10-17 08:45:52.209 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2078. 2017-10-17 08:45:52.211 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2079. 2017-10-17 08:45:52.211 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2302(Integer)
  2080. 2017-10-17 08:45:52.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2081. 2017-10-17 08:45:52.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2082. 2017-10-17 08:45:52.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2303(Integer)
  2083. 2017-10-17 08:45:52.291 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2084. 2017-10-17 08:45:52.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2085. 2017-10-17 08:45:52.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2303(Integer)
  2086. 2017-10-17 08:45:52.323 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2087. 2017-10-17 08:45:52.324 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2088. 2017-10-17 08:45:52.324 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2304(Integer)
  2089. 2017-10-17 08:45:52.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2090. 2017-10-17 08:45:52.354 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2091. 2017-10-17 08:45:52.355 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2304(Integer)
  2092. 2017-10-17 08:45:52.385 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2093. 2017-10-17 08:45:52.387 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2094. 2017-10-17 08:45:52.387 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2305(Integer)
  2095. 2017-10-17 08:45:52.414 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2096. 2017-10-17 08:45:52.415 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2097. 2017-10-17 08:45:52.415 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2305(Integer)
  2098. 2017-10-17 08:45:52.442 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2099. 2017-10-17 08:45:52.443 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2100. 2017-10-17 08:45:52.444 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2306(Integer)
  2101. 2017-10-17 08:45:52.471 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2102. 2017-10-17 08:45:52.473 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2103. 2017-10-17 08:45:52.474 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2306(Integer)
  2104. 2017-10-17 08:45:52.503 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2105. 2017-10-17 08:45:52.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2106. 2017-10-17 08:45:52.506 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2307(Integer)
  2107. 2017-10-17 08:45:52.533 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2108. 2017-10-17 08:45:52.535 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2109. 2017-10-17 08:45:52.535 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2307(Integer)
  2110. 2017-10-17 08:45:52.562 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2111. 2017-10-17 08:45:52.563 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2112. 2017-10-17 08:45:52.563 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2308(Integer)
  2113. 2017-10-17 08:45:52.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2114. 2017-10-17 08:45:52.591 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2115. 2017-10-17 08:45:52.591 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2308(Integer)
  2116. 2017-10-17 08:45:52.619 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2117. 2017-10-17 08:45:52.621 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2118. 2017-10-17 08:45:52.622 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2309(Integer)
  2119. 2017-10-17 08:45:52.655 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2120. 2017-10-17 08:45:52.656 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2121. 2017-10-17 08:45:52.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2309(Integer)
  2122. 2017-10-17 08:45:52.683 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2123. 2017-10-17 08:45:52.685 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2124. 2017-10-17 08:45:52.685 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2310(Integer)
  2125. 2017-10-17 08:45:52.712 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  2126. 2017-10-17 08:45:52.714 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2127. 2017-10-17 08:45:52.714 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2310(Integer)
  2128. 2017-10-17 08:45:52.742 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2129. 2017-10-17 08:45:57.928 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  2130. 2017-10-17 08:45:57.965 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2131. 2017-10-17 08:45:57.966 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101002(String)
  2132. 2017-10-17 08:45:57.995 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2133. 2017-10-17 08:45:57.996 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2134. 2017-10-17 08:45:57.996 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2042(Integer)
  2135. 2017-10-17 08:45:58.026 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 36
  2136. 2017-10-17 08:45:58.028 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2137. 2017-10-17 08:45:58.028 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2042(Integer)
  2138. 2017-10-17 08:45:58.054 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2139. 2017-10-17 08:45:58.084 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101002, setting security context
  2140. 2017-10-17 08:45:58.086 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101002
  2141. 2017-10-17 08:46:00.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2142. 2017-10-17 08:46:00.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2143. 2017-10-17 08:46:01.023 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2144. 2017-10-17 08:46:01.025 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2145. 2017-10-17 08:46:01.026 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2146. 2017-10-17 08:46:01.056 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2147. 2017-10-17 08:46:01.057 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2148. 2017-10-17 08:46:01.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2149. 2017-10-17 08:46:01.090 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2150. 2017-10-17 08:46:01.092 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2151. 2017-10-17 08:46:01.093 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2152. 2017-10-17 08:46:01.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2153. 2017-10-17 08:46:01.125 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2154. 2017-10-17 08:46:01.126 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2155. 2017-10-17 08:46:01.162 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2156. 2017-10-17 08:46:01.163 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2157. 2017-10-17 08:46:01.164 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2158. 2017-10-17 08:46:01.191 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2159. 2017-10-17 08:46:01.376 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2160. 2017-10-17 08:46:01.376 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2161. 2017-10-17 08:46:01.376 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2162. 2017-10-17 08:46:01.376 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2163. 2017-10-17 08:46:01.376 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2164. 2017-10-17 08:46:01.404 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2165. 2017-10-17 08:46:01.404 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2166. 2017-10-17 08:46:01.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2167. 2017-10-17 08:46:01.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2168. 2017-10-17 08:46:01.405 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2169. 2017-10-17 08:46:01.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2170. 2017-10-17 08:46:01.406 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2171. 2017-10-17 08:46:01.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2172. 2017-10-17 08:46:01.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2173. 2017-10-17 08:46:01.434 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2174. 2017-10-17 08:46:01.435 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2175. 2017-10-17 08:46:01.436 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2176. 2017-10-17 08:46:01.437 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2177. 2017-10-17 08:46:01.437 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2178. 2017-10-17 08:46:01.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2179. 2017-10-17 08:46:01.438 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2180. 2017-10-17 08:46:01.437 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2181. 2017-10-17 08:46:01.438 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2182. 2017-10-17 08:46:01.438 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2183. 2017-10-17 08:46:01.439 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2184. 2017-10-17 08:46:01.442 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2185. 2017-10-17 08:46:01.443 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2186. 2017-10-17 08:46:01.468 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2187. 2017-10-17 08:46:01.468 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2188. 2017-10-17 08:46:01.468 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2189. 2017-10-17 08:46:01.468 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2190. 2017-10-17 08:46:01.469 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2191. 2017-10-17 08:46:01.469 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2192. 2017-10-17 08:46:01.469 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2193. 2017-10-17 08:46:01.470 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2194. 2017-10-17 08:46:01.470 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2195. 2017-10-17 08:46:01.470 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2196. 2017-10-17 08:46:01.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2197. 2017-10-17 08:46:01.475 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2198. 2017-10-17 08:46:01.475 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2199. 2017-10-17 08:46:01.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2200. 2017-10-17 08:46:01.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2201. 2017-10-17 08:46:01.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2202. 2017-10-17 08:46:01.498 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2203. 2017-10-17 08:46:01.499 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2204. 2017-10-17 08:46:01.499 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2205. 2017-10-17 08:46:01.500 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2206. 2017-10-17 08:46:01.503 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2207. 2017-10-17 08:46:01.523 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2208. 2017-10-17 08:46:01.526 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2209. 2017-10-17 08:46:01.528 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2210. 2017-10-17 08:46:01.529 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2211. 2017-10-17 08:46:01.530 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2212. 2017-10-17 08:46:01.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  2213. 2017-10-17 08:46:01.531 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2214. 2017-10-17 08:46:01.531 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  2215. 2017-10-17 08:46:01.533 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2216. 2017-10-17 08:46:01.534 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2217. 2017-10-17 08:46:01.553 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2218. 2017-10-17 08:46:01.554 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2219. 2017-10-17 08:46:01.556 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2220. 2017-10-17 08:46:01.557 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2221. 2017-10-17 08:46:01.557 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  2222. 2017-10-17 08:46:01.566 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  2223. 2017-10-17 08:46:01.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  2224. 2017-10-17 08:46:01.589 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  2225. 2017-10-17 08:46:01.590 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  2226. 2017-10-17 08:46:01.591 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  2227. 2017-10-17 08:46:01.592 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2228. 2017-10-17 08:46:01.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  2229. 2017-10-17 08:46:01.595 |-ERROR [http-nio-8089-exec-3] com.xintong.visualinspection.controller.BaseController [195] -| 输入参数错误
  2230. com.xintong.system.err.BusinessException: null
  2231. at com.xintong.visualinspection.controller.RoleController.getAllRole(RoleController.java:102)
  2232. at com.xintong.visualinspection.controller.RoleController$$FastClassBySpringCGLIB$$7453e9b4.invoke(<generated>)
  2233. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  2234. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  2235. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  2236. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  2237. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  2238. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  2239. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  2240. at com.xintong.visualinspection.controller.RoleController$$EnhancerBySpringCGLIB$$4c8f9edf.getAllRole(<generated>)
  2241. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2242. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2243. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2244. at java.lang.reflect.Method.invoke(Method.java:497)
  2245. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  2246. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  2247. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  2248. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  2249. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  2250. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  2251. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  2252. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  2253. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2254. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2255. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
  2256. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2257. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  2258. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  2259. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2260. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  2261. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2262. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2263. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  2264. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2265. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2266. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2267. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2268. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2269. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2270. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2271. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2272. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2273. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2274. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2275. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2276. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2277. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  2278. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2279. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2280. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  2281. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2282. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2283. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2284. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  2285. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  2286. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  2287. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2288. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  2289. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2290. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  2291. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2292. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  2293. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2294. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  2295. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2296. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  2297. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2298. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2299. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2300. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2301. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  2302. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2303. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  2304. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2305. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2306. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  2307. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2308. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2309. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  2310. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2311. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  2312. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2313. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2314. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  2315. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  2316. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  2317. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  2318. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2319. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2320. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  2321. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2322. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2323. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2324. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  2325. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2326. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2327. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2328. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  2329. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2330. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2331. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2332. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  2333. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2334. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2335. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2336. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  2337. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2338. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2339. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2340. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  2341. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  2342. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  2343. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  2344. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  2345. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2346. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  2347. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  2348. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2349. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  2350. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  2351. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2352. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2353. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2354. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2355. at java.lang.Thread.run(Thread.java:745)
  2356. 2017-10-17 08:46:01.596 |-WARN [http-nio-8089-exec-3] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: BusinessException(errCode=ErrorCode(code=20001, desc=输入参数错误))
  2357. 2017-10-17 08:46:01.620 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  2358. 2017-10-17 08:46:01.621 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 61
  2359. 2017-10-17 08:46:01.622 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2360. 2017-10-17 08:46:01.622 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2361. 2017-10-17 08:46:01.650 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2362. 2017-10-17 08:46:01.675 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2363. 2017-10-17 08:46:01.675 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2364. 2017-10-17 08:46:01.675 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2365. 2017-10-17 08:46:01.702 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2366. 2017-10-17 08:46:01.703 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2367. 2017-10-17 08:46:01.704 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2368. 2017-10-17 08:46:01.704 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2369. 2017-10-17 08:46:01.704 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2370. 2017-10-17 08:46:01.705 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2371. 2017-10-17 08:46:01.732 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2372. 2017-10-17 08:46:01.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2373. 2017-10-17 08:46:01.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2374. 2017-10-17 08:46:01.735 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2375. 2017-10-17 08:46:01.736 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2376. 2017-10-17 08:46:01.736 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2377. 2017-10-17 08:46:01.736 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2378. 2017-10-17 08:46:01.737 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2379. 2017-10-17 08:46:01.737 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2380. 2017-10-17 08:46:01.783 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2381. 2017-10-17 08:46:01.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2382. 2017-10-17 08:46:01.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2383. 2017-10-17 08:46:01.790 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2384. 2017-10-17 08:46:01.791 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2385. 2017-10-17 08:46:01.791 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2386. 2017-10-17 08:46:01.791 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2387. 2017-10-17 08:46:01.791 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2388. 2017-10-17 08:46:01.792 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2389. 2017-10-17 08:46:01.811 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2390. 2017-10-17 08:46:01.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2391. 2017-10-17 08:46:01.820 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2392. 2017-10-17 08:46:01.842 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2393. 2017-10-17 08:46:01.844 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2394. 2017-10-17 08:46:01.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  2395. 2017-10-17 08:46:01.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2396. 2017-10-17 08:46:01.854 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2397. 2017-10-17 08:46:01.855 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2398. 2017-10-17 08:46:01.856 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2399. 2017-10-17 08:46:01.857 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2400. 2017-10-17 08:46:01.858 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  2401. 2017-10-17 08:46:01.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  2402. 2017-10-17 08:46:01.859 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2403. 2017-10-17 08:46:01.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  2404. 2017-10-17 08:46:01.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2405. 2017-10-17 08:46:01.912 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  2406. 2017-10-17 08:46:01.914 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2407. 2017-10-17 08:46:01.921 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2408. 2017-10-17 08:46:01.950 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2409. 2017-10-17 08:46:01.951 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2410. 2017-10-17 08:46:01.980 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2411. 2017-10-17 08:46:01.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2412. 2017-10-17 08:46:01.982 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2413. 2017-10-17 08:46:02.011 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2414. 2017-10-17 08:46:02.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2415. 2017-10-17 08:46:02.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2416. 2017-10-17 08:46:02.040 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2417. 2017-10-17 08:46:02.071 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2418. 2017-10-17 08:46:02.072 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2419. 2017-10-17 08:46:02.077 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2420. 2017-10-17 08:46:02.077 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2421. 2017-10-17 08:46:02.182 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  2422. 2017-10-17 08:46:02.209 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2423. 2017-10-17 08:46:02.236 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2424. 2017-10-17 08:46:02.236 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2425. 2017-10-17 08:46:02.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2426. 2017-10-17 08:46:02.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2427. 2017-10-17 08:46:02.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2428. 2017-10-17 08:46:02.298 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2429. 2017-10-17 08:46:02.298 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2430. 2017-10-17 08:46:02.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2431. 2017-10-17 08:46:02.326 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2432. 2017-10-17 08:46:02.356 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2433. 2017-10-17 08:46:02.358 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2434. 2017-10-17 08:46:02.361 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  2435. 2017-10-17 08:46:02.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2436. 2017-10-17 08:46:02.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  2437. 2017-10-17 08:46:02.485 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2438. 2017-10-17 08:46:02.513 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2439. 2017-10-17 08:46:02.513 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2440. 2017-10-17 08:46:02.543 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2441. 2017-10-17 08:46:02.544 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2442. 2017-10-17 08:46:02.545 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2443. 2017-10-17 08:46:02.576 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2444. 2017-10-17 08:46:02.576 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2445. 2017-10-17 08:46:02.577 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2446. 2017-10-17 08:46:02.605 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2447. 2017-10-17 08:46:02.635 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2448. 2017-10-17 08:46:02.637 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2449. 2017-10-17 08:46:02.681 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count
  2450. 2017-10-17 08:46:02.682 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 34(Long)
  2451. 2017-10-17 08:46:02.723 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  2452. 2017-10-17 08:46:02.725 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? order by t.start_time desc limit ?,?
  2453. 2017-10-17 08:46:02.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 34(Long), 0(Integer), 10(Integer)
  2454. 2017-10-17 08:46:02.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  2455. 2017-10-17 08:46:07.061 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2456. 2017-10-17 08:46:07.061 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2457. 2017-10-17 08:46:07.061 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2458. 2017-10-17 08:46:07.061 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2459. 2017-10-17 08:46:07.090 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2460. 2017-10-17 08:46:07.090 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2461. 2017-10-17 08:46:07.092 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2462. 2017-10-17 08:46:07.093 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2463. 2017-10-17 08:46:07.093 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2464. 2017-10-17 08:46:07.094 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2465. 2017-10-17 08:46:07.094 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2466. 2017-10-17 08:46:07.094 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2467. 2017-10-17 08:46:07.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2468. 2017-10-17 08:46:07.122 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2469. 2017-10-17 08:46:07.123 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2470. 2017-10-17 08:46:07.124 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2471. 2017-10-17 08:46:07.124 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2472. 2017-10-17 08:46:07.124 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2473. 2017-10-17 08:46:07.125 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2474. 2017-10-17 08:46:07.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2475. 2017-10-17 08:46:07.126 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2476. 2017-10-17 08:46:07.127 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2477. 2017-10-17 08:46:07.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2478. 2017-10-17 08:46:07.129 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2479. 2017-10-17 08:46:07.155 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2480. 2017-10-17 08:46:07.155 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2481. 2017-10-17 08:46:07.156 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2482. 2017-10-17 08:46:07.156 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2483. 2017-10-17 08:46:07.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2484. 2017-10-17 08:46:07.157 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2485. 2017-10-17 08:46:07.157 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2486. 2017-10-17 08:46:07.158 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2487. 2017-10-17 08:46:07.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2488. 2017-10-17 08:46:07.160 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2489. 2017-10-17 08:46:07.161 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2490. 2017-10-17 08:46:07.162 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2491. 2017-10-17 08:46:07.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2492. 2017-10-17 08:46:07.186 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2493. 2017-10-17 08:46:07.188 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2494. 2017-10-17 08:46:07.191 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2495. 2017-10-17 08:46:07.218 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2496. 2017-10-17 08:46:07.218 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2497. 2017-10-17 08:46:07.219 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2498. 2017-10-17 08:46:07.220 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2499. 2017-10-17 08:46:07.220 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2500. 2017-10-17 08:46:07.220 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2501. 2017-10-17 08:46:07.221 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2502. 2017-10-17 08:46:07.221 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2503. 2017-10-17 08:46:07.224 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  2504. 2017-10-17 08:46:07.225 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Preparing: SELECT * FROM sys_class_type where 1=1
  2505. 2017-10-17 08:46:07.225 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-10-01 00:00:00.0(Timestamp), 2017-10-31 23:59:59.0(Timestamp), 1(Integer)
  2506. 2017-10-17 08:46:07.226 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters:
  2507. 2017-10-17 08:46:07.228 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  2508. 2017-10-17 08:46:07.229 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 34(Long), 1(Long)
  2509. 2017-10-17 08:46:07.252 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2510. 2017-10-17 08:46:07.253 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
  2511. 2017-10-17 08:46:07.256 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <== Total: 3
  2512. 2017-10-17 08:46:07.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
  2513. 2017-10-17 08:46:07.257 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,?
  2514. 2017-10-17 08:46:07.258 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 34(Long), 1(Long), 0(Integer), 50(Integer)
  2515. 2017-10-17 08:46:07.258 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 0
  2516. 2017-10-17 08:46:07.284 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2517. 2017-10-17 08:46:07.286 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <== Total: 4
  2518. 2017-10-17 08:46:15.172 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2519. 2017-10-17 08:46:15.200 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2520. 2017-10-17 08:46:15.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2521. 2017-10-17 08:46:15.233 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2522. 2017-10-17 08:46:15.235 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2523. 2017-10-17 08:46:15.236 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2524. 2017-10-17 08:46:15.265 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2525. 2017-10-17 08:46:15.268 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2526. 2017-10-17 08:46:15.268 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2527. 2017-10-17 08:46:15.299 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2528. 2017-10-17 08:46:15.329 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2529. 2017-10-17 08:46:15.330 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2530. 2017-10-17 08:46:15.332 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =?
  2531. 2017-10-17 08:46:15.332 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-10-15 00:00:00.0(Timestamp), 2017-10-15 00:00:00.0(Timestamp), 1(Integer)
  2532. 2017-10-17 08:46:15.361 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <== Total: 0
  2533. 2017-10-17 08:46:24.957 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2534. 2017-10-17 08:46:24.989 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2535. 2017-10-17 08:46:24.989 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2536. 2017-10-17 08:46:25.023 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2537. 2017-10-17 08:46:25.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2538. 2017-10-17 08:46:25.025 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2539. 2017-10-17 08:46:25.053 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2540. 2017-10-17 08:46:25.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2541. 2017-10-17 08:46:25.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2542. 2017-10-17 08:46:25.082 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2543. 2017-10-17 08:46:25.112 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2544. 2017-10-17 08:46:25.114 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2545. 2017-10-17 08:46:25.117 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  2546. 2017-10-17 08:46:25.117 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-10-15 00:00:00.0(Timestamp), 2017-10-15 00:00:00.0(Timestamp), 1(Integer)
  2547. 2017-10-17 08:46:25.146 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 0
  2548. 2017-10-17 08:46:31.156 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2549. 2017-10-17 08:46:31.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2550. 2017-10-17 08:46:31.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2551. 2017-10-17 08:46:31.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2552. 2017-10-17 08:46:31.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2553. 2017-10-17 08:46:31.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2554. 2017-10-17 08:46:31.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2555. 2017-10-17 08:46:31.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2556. 2017-10-17 08:46:31.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2557. 2017-10-17 08:46:31.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2558. 2017-10-17 08:46:31.312 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2559. 2017-10-17 08:46:31.314 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2560. 2017-10-17 08:46:31.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Preparing: SELECT * FROM sys_team WHERE id = ?
  2561. 2017-10-17 08:46:31.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 52(Long)
  2562. 2017-10-17 08:46:31.400 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
  2563. 2017-10-17 08:46:31.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2564. 2017-10-17 08:46:31.403 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-10-15 00:00:00.0(Timestamp), 34(Long), 2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310(String), 3(Integer), 52(Long), 2017-10-14 23:00:00.0(Timestamp), 2017-10-15 08:00:00.0(Timestamp)
  2565. 2017-10-17 08:46:31.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2566. 2017-10-17 08:46:31.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Preparing: SELECT * FROM sys_team WHERE id = ?
  2567. 2017-10-17 08:46:31.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 53(Long)
  2568. 2017-10-17 08:46:31.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
  2569. 2017-10-17 08:46:31.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2570. 2017-10-17 08:46:31.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-10-15 00:00:00.0(Timestamp), 34(Long), 2284,2285,2286,2288,2289,2291,2292,2293,2295,2296,2297,2298,2299,2301,2302,2303,2305,2306,2308,2309,2310(String), 1(Integer), 53(Long), 2017-10-15 08:00:00.0(Timestamp), 2017-10-15 15:00:00.0(Timestamp)
  2571. 2017-10-17 08:46:31.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2572. 2017-10-17 08:46:31.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Preparing: SELECT * FROM sys_team WHERE id = ?
  2573. 2017-10-17 08:46:31.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 105(Long)
  2574. 2017-10-17 08:46:31.567 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
  2575. 2017-10-17 08:46:31.568 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2576. 2017-10-17 08:46:31.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-10-15 00:00:00.0(Timestamp), 34(Long), 2285,2286,2288,2289,2293,2300,2302,2305,2307(String), 2(Integer), 105(Long), 2017-10-15 15:00:00.0(Timestamp), 2017-10-15 23:00:00.0(Timestamp)
  2577. 2017-10-17 08:46:31.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2578. 2017-10-17 08:46:31.645 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2579. 2017-10-17 08:46:31.674 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2580. 2017-10-17 08:46:31.675 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2581. 2017-10-17 08:46:31.706 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2582. 2017-10-17 08:46:31.707 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2583. 2017-10-17 08:46:31.708 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2584. 2017-10-17 08:46:31.738 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2585. 2017-10-17 08:46:31.739 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2586. 2017-10-17 08:46:31.740 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2587. 2017-10-17 08:46:31.767 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2588. 2017-10-17 08:46:31.796 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2589. 2017-10-17 08:46:31.798 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2590. 2017-10-17 08:46:31.801 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  2591. 2017-10-17 08:46:31.801 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-10-01 00:00:00.0(Timestamp), 2017-10-31 23:59:59.0(Timestamp), 1(Integer)
  2592. 2017-10-17 08:46:31.831 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 3
  2593. 2017-10-17 08:46:33.525 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2594. 2017-10-17 08:46:33.555 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2595. 2017-10-17 08:46:33.556 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2596. 2017-10-17 08:46:33.587 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2597. 2017-10-17 08:46:33.588 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2598. 2017-10-17 08:46:33.589 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2599. 2017-10-17 08:46:33.620 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2600. 2017-10-17 08:46:33.621 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2601. 2017-10-17 08:46:33.621 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2602. 2017-10-17 08:46:33.648 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2603. 2017-10-17 08:46:33.682 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2604. 2017-10-17 08:46:33.685 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2605. 2017-10-17 08:46:33.688 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =?
  2606. 2017-10-17 08:46:33.688 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-10-15 00:00:00.0(Timestamp), 2017-10-15 00:00:00.0(Timestamp), 1(Integer)
  2607. 2017-10-17 08:46:33.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <== Total: 3
  2608. 2017-10-17 08:46:33.750 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2609. 2017-10-17 08:46:33.777 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2610. 2017-10-17 08:46:33.777 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2611. 2017-10-17 08:46:33.808 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2612. 2017-10-17 08:46:33.809 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2613. 2017-10-17 08:46:33.810 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2614. 2017-10-17 08:46:33.838 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2615. 2017-10-17 08:46:33.839 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2616. 2017-10-17 08:46:33.839 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2617. 2017-10-17 08:46:33.868 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2618. 2017-10-17 08:46:33.909 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2619. 2017-10-17 08:46:33.910 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2620. 2017-10-17 08:46:33.921 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc
  2621. 2017-10-17 08:46:33.922 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-10-15 00:00:00.0(Timestamp), 34(Long)
  2622. 2017-10-17 08:46:33.960 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <== Total: 0
  2623. 2017-10-17 08:46:38.613 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2624. 2017-10-17 08:46:38.664 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2625. 2017-10-17 08:46:38.665 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2626. 2017-10-17 08:46:38.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2627. 2017-10-17 08:46:38.697 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2628. 2017-10-17 08:46:38.698 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2629. 2017-10-17 08:46:38.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2630. 2017-10-17 08:46:38.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2631. 2017-10-17 08:46:38.727 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2632. 2017-10-17 08:46:38.752 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2633. 2017-10-17 08:46:38.801 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2634. 2017-10-17 08:46:38.802 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2635. 2017-10-17 09:15:06.938 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2636. 2017-10-17 09:15:06.938 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2637. 2017-10-17 09:15:06.938 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2638. 2017-10-17 09:15:06.938 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2639. 2017-10-17 09:15:06.938 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2640. 2017-10-17 09:15:07.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2641. 2017-10-17 09:15:07.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2642. 2017-10-17 09:15:07.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2643. 2017-10-17 09:15:07.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2644. 2017-10-17 09:15:07.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2645. 2017-10-17 09:15:07.079 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2646. 2017-10-17 09:15:07.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2647. 2017-10-17 09:15:07.105 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2648. 2017-10-17 09:15:07.111 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2649. 2017-10-17 09:15:07.111 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2650. 2017-10-17 09:15:07.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2651. 2017-10-17 09:15:07.125 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2652. 2017-10-17 09:15:07.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2653. 2017-10-17 09:15:07.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2654. 2017-10-17 09:15:07.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2655. 2017-10-17 09:15:07.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2656. 2017-10-17 09:15:07.158 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2657. 2017-10-17 09:15:07.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2658. 2017-10-17 09:15:07.164 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2659. 2017-10-17 09:15:07.169 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2660. 2017-10-17 09:15:07.170 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2661. 2017-10-17 09:15:07.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2662. 2017-10-17 09:15:07.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2663. 2017-10-17 09:15:07.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2664. 2017-10-17 09:15:07.186 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2665. 2017-10-17 09:15:07.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2666. 2017-10-17 09:15:07.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2667. 2017-10-17 09:15:07.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2668. 2017-10-17 09:15:07.196 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2669. 2017-10-17 09:15:07.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2670. 2017-10-17 09:15:07.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2671. 2017-10-17 09:15:07.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2672. 2017-10-17 09:15:07.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2673. 2017-10-17 09:15:07.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2674. 2017-10-17 09:15:07.202 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2675. 2017-10-17 09:15:07.203 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2676. 2017-10-17 09:15:07.203 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2677. 2017-10-17 09:15:07.221 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2678. 2017-10-17 09:15:07.223 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2679. 2017-10-17 09:15:07.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2680. 2017-10-17 09:15:07.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2681. 2017-10-17 09:15:07.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2682. 2017-10-17 09:15:07.232 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2683. 2017-10-17 09:15:07.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2684. 2017-10-17 09:15:07.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2685. 2017-10-17 09:15:07.263 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2686. 2017-10-17 09:15:07.265 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2687. 2017-10-17 09:15:07.265 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2688. 2017-10-17 09:15:07.266 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2689. 2017-10-17 09:15:07.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  2690. 2017-10-17 09:15:07.267 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2691. 2017-10-17 09:15:07.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  2692. 2017-10-17 09:15:07.268 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2693. 2017-10-17 09:15:07.270 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2694. 2017-10-17 09:15:07.270 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2695. 2017-10-17 09:15:07.301 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  2696. 2017-10-17 09:15:07.303 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  2697. 2017-10-17 09:15:07.303 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  2698. 2017-10-17 09:15:07.306 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2699. 2017-10-17 09:15:07.308 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2700. 2017-10-17 09:15:07.312 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  2701. 2017-10-17 09:15:07.312 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  2702. 2017-10-17 09:15:07.335 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  2703. 2017-10-17 09:15:07.339 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  2704. 2017-10-17 09:15:07.341 |-ERROR [http-nio-8089-exec-8] com.xintong.visualinspection.controller.BaseController [195] -| 输入参数错误
  2705. com.xintong.system.err.BusinessException: null
  2706. at com.xintong.visualinspection.controller.RoleController.getAllRole(RoleController.java:102)
  2707. at com.xintong.visualinspection.controller.RoleController$$FastClassBySpringCGLIB$$7453e9b4.invoke(<generated>)
  2708. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  2709. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  2710. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  2711. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  2712. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  2713. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  2714. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  2715. at com.xintong.visualinspection.controller.RoleController$$EnhancerBySpringCGLIB$$4c8f9edf.getAllRole(<generated>)
  2716. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2717. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2718. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2719. at java.lang.reflect.Method.invoke(Method.java:497)
  2720. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  2721. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  2722. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  2723. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  2724. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  2725. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  2726. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  2727. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  2728. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2729. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2730. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
  2731. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2732. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  2733. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  2734. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2735. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  2736. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2737. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2738. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  2739. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2740. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2741. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2742. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2743. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2744. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2745. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2746. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2747. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2748. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2749. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2750. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2751. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2752. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  2753. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2754. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2755. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  2756. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2757. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2758. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2759. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  2760. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  2761. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  2762. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2763. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  2764. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2765. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  2766. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2767. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  2768. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2769. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  2770. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2771. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  2772. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2773. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2774. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2775. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2776. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  2777. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2778. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  2779. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2780. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2781. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  2782. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2783. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2784. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  2785. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2786. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  2787. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2788. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2789. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  2790. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  2791. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  2792. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  2793. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2794. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2795. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  2796. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2797. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2798. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2799. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  2800. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2801. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2802. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2803. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  2804. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2805. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2806. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2807. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  2808. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2809. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2810. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2811. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  2812. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2813. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2814. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2815. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  2816. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  2817. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  2818. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  2819. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  2820. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2821. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  2822. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  2823. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2824. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  2825. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  2826. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2827. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2828. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2829. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2830. at java.lang.Thread.run(Thread.java:745)
  2831. 2017-10-17 09:15:07.342 |-WARN [http-nio-8089-exec-8] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: BusinessException(errCode=ErrorCode(code=20001, desc=输入参数错误))
  2832. 2017-10-17 09:15:07.342 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  2833. 2017-10-17 09:15:07.343 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2834. 2017-10-17 09:15:07.373 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 57
  2835. 2017-10-17 09:15:07.374 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2836. 2017-10-17 09:15:07.375 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2837. 2017-10-17 09:15:07.406 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2838. 2017-10-17 09:15:07.443 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2839. 2017-10-17 09:15:07.443 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2840. 2017-10-17 09:15:07.443 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2841. 2017-10-17 09:15:07.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2842. 2017-10-17 09:15:07.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2843. 2017-10-17 09:15:07.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2844. 2017-10-17 09:15:07.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2845. 2017-10-17 09:15:07.475 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2846. 2017-10-17 09:15:07.475 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2847. 2017-10-17 09:15:07.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2848. 2017-10-17 09:15:07.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2849. 2017-10-17 09:15:07.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2850. 2017-10-17 09:15:07.517 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2851. 2017-10-17 09:15:07.517 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2852. 2017-10-17 09:15:07.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2853. 2017-10-17 09:15:07.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2854. 2017-10-17 09:15:07.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2855. 2017-10-17 09:15:07.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2856. 2017-10-17 09:15:07.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2857. 2017-10-17 09:15:07.578 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2858. 2017-10-17 09:15:07.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2859. 2017-10-17 09:15:07.579 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2860. 2017-10-17 09:15:07.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2861. 2017-10-17 09:15:07.579 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2862. 2017-10-17 09:15:07.580 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2863. 2017-10-17 09:15:07.580 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2864. 2017-10-17 09:15:07.581 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2865. 2017-10-17 09:15:07.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2866. 2017-10-17 09:15:07.617 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2867. 2017-10-17 09:15:07.619 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2868. 2017-10-17 09:15:07.654 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2869. 2017-10-17 09:15:07.656 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2870. 2017-10-17 09:15:07.656 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2871. 2017-10-17 09:15:07.658 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2872. 2017-10-17 09:15:07.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  2873. 2017-10-17 09:15:07.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2874. 2017-10-17 09:15:07.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  2875. 2017-10-17 09:15:07.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  2876. 2017-10-17 09:15:07.671 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2877. 2017-10-17 09:15:07.672 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2878. 2017-10-17 09:15:07.674 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  2879. 2017-10-17 09:15:07.674 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2880. 2017-10-17 09:15:07.707 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2881. 2017-10-17 09:15:07.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2882. 2017-10-17 09:15:07.718 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  2883. 2017-10-17 09:15:07.725 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2884. 2017-10-17 09:15:07.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2885. 2017-10-17 09:15:07.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2886. 2017-10-17 09:15:07.800 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2887. 2017-10-17 09:15:07.801 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2888. 2017-10-17 09:15:07.801 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2889. 2017-10-17 09:15:07.832 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2890. 2017-10-17 09:15:07.833 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2891. 2017-10-17 09:15:07.833 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2892. 2017-10-17 09:15:07.865 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2893. 2017-10-17 09:15:07.906 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2894. 2017-10-17 09:15:07.907 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2895. 2017-10-17 09:15:07.913 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2896. 2017-10-17 09:15:07.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2897. 2017-10-17 09:15:08.071 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  2898. 2017-10-17 09:15:08.099 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2899. 2017-10-17 09:15:08.159 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2900. 2017-10-17 09:15:08.160 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2901. 2017-10-17 09:15:08.219 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2902. 2017-10-17 09:15:08.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2903. 2017-10-17 09:15:08.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2904. 2017-10-17 09:15:08.256 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2905. 2017-10-17 09:15:08.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2906. 2017-10-17 09:15:08.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2907. 2017-10-17 09:15:08.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2908. 2017-10-17 09:15:08.333 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2909. 2017-10-17 09:15:08.334 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2910. 2017-10-17 09:15:08.338 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  2911. 2017-10-17 09:15:08.338 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2912. 2017-10-17 09:15:08.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  2913. 2017-10-17 09:15:08.435 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2914. 2017-10-17 09:15:08.435 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2915. 2017-10-17 09:15:08.435 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2916. 2017-10-17 09:15:08.435 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2917. 2017-10-17 09:15:08.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2918. 2017-10-17 09:15:08.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2919. 2017-10-17 09:15:08.491 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2920. 2017-10-17 09:15:08.492 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2921. 2017-10-17 09:15:08.495 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2922. 2017-10-17 09:15:08.496 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2923. 2017-10-17 09:15:08.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2924. 2017-10-17 09:15:08.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2925. 2017-10-17 09:15:08.527 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2926. 2017-10-17 09:15:08.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2927. 2017-10-17 09:15:08.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2928. 2017-10-17 09:15:08.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2929. 2017-10-17 09:15:08.529 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2930. 2017-10-17 09:15:08.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2931. 2017-10-17 09:15:08.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2932. 2017-10-17 09:15:08.531 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2933. 2017-10-17 09:15:08.531 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2934. 2017-10-17 09:15:08.540 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2935. 2017-10-17 09:15:08.541 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2936. 2017-10-17 09:15:08.541 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2937. 2017-10-17 09:15:08.574 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2938. 2017-10-17 09:15:08.575 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2939. 2017-10-17 09:15:08.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2940. 2017-10-17 09:15:08.589 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2941. 2017-10-17 09:15:08.589 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2942. 2017-10-17 09:15:08.590 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2943. 2017-10-17 09:15:08.590 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2944. 2017-10-17 09:15:08.590 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2945. 2017-10-17 09:15:08.590 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2946. 2017-10-17 09:15:08.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2947. 2017-10-17 09:15:08.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2948. 2017-10-17 09:15:08.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2949. 2017-10-17 09:15:08.613 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2950. 2017-10-17 09:15:08.630 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2951. 2017-10-17 09:15:08.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2952. 2017-10-17 09:15:08.631 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2953. 2017-10-17 09:15:08.652 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2954. 2017-10-17 09:15:08.653 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2955. 2017-10-17 09:15:08.655 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Preparing: SELECT * FROM sys_class_type where 1=1
  2956. 2017-10-17 09:15:08.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters:
  2957. 2017-10-17 09:15:08.665 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2958. 2017-10-17 09:15:08.666 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2959. 2017-10-17 09:15:08.671 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  2960. 2017-10-17 09:15:08.671 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 34(Long), 1(Long)
  2961. 2017-10-17 09:15:08.676 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2962. 2017-10-17 09:15:08.676 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2963. 2017-10-17 09:15:08.677 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2964. 2017-10-17 09:15:08.677 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2965. 2017-10-17 09:15:08.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  2966. 2017-10-17 09:15:08.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-10-01 00:00:00.0(Timestamp), 2017-10-31 23:59:59.0(Timestamp), 1(Integer)
  2967. 2017-10-17 09:15:08.691 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <== Total: 3
  2968. 2017-10-17 09:15:08.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 3
  2969. 2017-10-17 09:15:08.713 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
  2970. 2017-10-17 09:15:08.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,?
  2971. 2017-10-17 09:15:08.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 34(Long), 1(Long), 0(Integer), 50(Integer)
  2972. 2017-10-17 09:15:08.732 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2973. 2017-10-17 09:15:08.733 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
  2974. 2017-10-17 09:15:08.761 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <== Total: 4
  2975. 2017-10-17 09:15:08.779 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2976. 2017-10-17 09:15:10.221 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2977. 2017-10-17 09:15:10.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2978. 2017-10-17 09:15:10.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
  2979. 2017-10-17 09:15:10.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2980. 2017-10-17 09:15:10.324 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2981. 2017-10-17 09:15:10.326 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
  2982. 2017-10-17 09:15:10.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 26
  2983. 2017-10-17 09:15:10.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2984. 2017-10-17 09:15:10.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
  2985. 2017-10-17 09:15:10.392 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2986. 2017-10-17 09:15:10.434 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
  2987. 2017-10-17 09:15:10.435 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
  2988. 2017-10-17 09:15:11.972 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2989. 2017-10-17 09:15:11.972 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2990. 2017-10-17 09:15:12.013 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2991. 2017-10-17 09:15:12.014 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2992. 2017-10-17 09:15:12.014 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2993. 2017-10-17 09:15:12.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  2994. 2017-10-17 09:15:12.065 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2995. 2017-10-17 09:15:12.065 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2996. 2017-10-17 09:15:12.095 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2997. 2017-10-17 09:15:12.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2998. 2017-10-17 09:15:12.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2999. 2017-10-17 09:15:12.138 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3000. 2017-10-17 09:15:12.139 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3001. 2017-10-17 09:15:12.140 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3002. 2017-10-17 09:15:12.188 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3003. 2017-10-17 09:15:12.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3004. 2017-10-17 09:15:12.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3005. 2017-10-17 09:15:12.220 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3006. 2017-10-17 09:15:12.423 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3007. 2017-10-17 09:15:12.424 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3008. 2017-10-17 09:15:12.424 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3009. 2017-10-17 09:15:12.424 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3010. 2017-10-17 09:15:12.426 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3011. 2017-10-17 09:15:12.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3012. 2017-10-17 09:15:12.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3013. 2017-10-17 09:15:12.472 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3014. 2017-10-17 09:15:12.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3015. 2017-10-17 09:15:12.473 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3016. 2017-10-17 09:15:12.474 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3017. 2017-10-17 09:15:12.474 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3018. 2017-10-17 09:15:12.475 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3019. 2017-10-17 09:15:12.478 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3020. 2017-10-17 09:15:12.479 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3021. 2017-10-17 09:15:12.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3022. 2017-10-17 09:15:12.506 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3023. 2017-10-17 09:15:12.507 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3024. 2017-10-17 09:15:12.507 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3025. 2017-10-17 09:15:12.508 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3026. 2017-10-17 09:15:12.509 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3027. 2017-10-17 09:15:12.508 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3028. 2017-10-17 09:15:12.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3029. 2017-10-17 09:15:12.509 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3030. 2017-10-17 09:15:12.510 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3031. 2017-10-17 09:15:12.511 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3032. 2017-10-17 09:15:12.511 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3033. 2017-10-17 09:15:12.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3034. 2017-10-17 09:15:12.529 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3035. 2017-10-17 09:15:12.530 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3036. 2017-10-17 09:15:12.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3037. 2017-10-17 09:15:12.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3038. 2017-10-17 09:15:12.544 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3039. 2017-10-17 09:15:12.551 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3040. 2017-10-17 09:15:12.552 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3041. 2017-10-17 09:15:12.553 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3042. 2017-10-17 09:15:12.556 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3043. 2017-10-17 09:15:12.557 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3044. 2017-10-17 09:15:12.557 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3045. 2017-10-17 09:15:12.558 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3046. 2017-10-17 09:15:12.558 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3047. 2017-10-17 09:15:12.559 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3048. 2017-10-17 09:15:12.560 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3049. 2017-10-17 09:15:12.561 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3050. 2017-10-17 09:15:12.561 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3051. 2017-10-17 09:15:12.573 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3052. 2017-10-17 09:15:12.579 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3053. 2017-10-17 09:15:12.584 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3054. 2017-10-17 09:15:12.589 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3055. 2017-10-17 09:15:12.589 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3056. 2017-10-17 09:15:12.633 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3057. 2017-10-17 09:15:12.635 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3058. 2017-10-17 09:15:12.635 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3059. 2017-10-17 09:15:12.636 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3060. 2017-10-17 09:15:12.638 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3061. 2017-10-17 09:15:12.639 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3062. 2017-10-17 09:15:12.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3063. 2017-10-17 09:15:12.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3064. 2017-10-17 09:15:12.642 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3065. 2017-10-17 09:15:12.643 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3066. 2017-10-17 09:15:12.644 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3067. 2017-10-17 09:15:12.645 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3068. 2017-10-17 09:15:12.670 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3069. 2017-10-17 09:15:12.671 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3070. 2017-10-17 09:15:12.672 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3071. 2017-10-17 09:15:12.683 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3072. 2017-10-17 09:15:12.684 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3073. 2017-10-17 09:15:12.738 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3074. 2017-10-17 09:15:12.739 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  3075. 2017-10-17 09:15:12.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3076. 2017-10-17 09:15:12.741 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3077. 2017-10-17 09:15:12.807 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 57
  3078. 2017-10-17 09:15:12.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3079. 2017-10-17 09:15:12.809 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3080. 2017-10-17 09:15:12.841 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3081. 2017-10-17 09:15:12.874 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3082. 2017-10-17 09:15:12.874 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3083. 2017-10-17 09:15:12.874 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3084. 2017-10-17 09:15:12.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3085. 2017-10-17 09:15:12.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3086. 2017-10-17 09:15:12.907 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3087. 2017-10-17 09:15:12.908 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3088. 2017-10-17 09:15:12.918 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3089. 2017-10-17 09:15:12.919 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3090. 2017-10-17 09:15:12.945 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3091. 2017-10-17 09:15:12.946 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3092. 2017-10-17 09:15:12.946 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3093. 2017-10-17 09:15:12.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3094. 2017-10-17 09:15:12.966 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3095. 2017-10-17 09:15:12.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3096. 2017-10-17 09:15:12.967 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3097. 2017-10-17 09:15:12.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3098. 2017-10-17 09:15:12.967 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3099. 2017-10-17 09:15:12.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3100. 2017-10-17 09:15:12.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3101. 2017-10-17 09:15:12.990 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3102. 2017-10-17 09:15:12.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3103. 2017-10-17 09:15:12.999 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3104. 2017-10-17 09:15:13.000 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3105. 2017-10-17 09:15:13.000 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3106. 2017-10-17 09:15:13.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3107. 2017-10-17 09:15:13.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3108. 2017-10-17 09:15:13.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3109. 2017-10-17 09:15:13.026 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3110. 2017-10-17 09:15:13.028 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3111. 2017-10-17 09:15:13.072 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3112. 2017-10-17 09:15:13.073 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3113. 2017-10-17 09:15:13.074 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3114. 2017-10-17 09:15:13.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3115. 2017-10-17 09:15:13.075 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3116. 2017-10-17 09:15:13.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3117. 2017-10-17 09:15:13.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3118. 2017-10-17 09:15:13.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3119. 2017-10-17 09:15:13.148 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3120. 2017-10-17 09:15:13.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3121. 2017-10-17 09:15:13.322 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3122. 2017-10-17 09:15:13.323 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3123. 2017-10-17 09:15:13.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3124. 2017-10-17 09:15:13.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3125. 2017-10-17 09:15:13.367 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3126. 2017-10-17 09:15:13.375 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3127. 2017-10-17 09:15:13.420 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3128. 2017-10-17 09:15:13.420 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3129. 2017-10-17 09:15:13.465 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3130. 2017-10-17 09:15:13.466 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3131. 2017-10-17 09:15:13.466 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3132. 2017-10-17 09:15:13.509 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3133. 2017-10-17 09:15:13.510 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3134. 2017-10-17 09:15:13.510 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3135. 2017-10-17 09:15:13.560 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3136. 2017-10-17 09:15:13.643 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3137. 2017-10-17 09:15:13.644 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3138. 2017-10-17 09:15:13.648 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3139. 2017-10-17 09:15:13.649 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3140. 2017-10-17 09:15:13.818 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  3141. 2017-10-17 09:15:13.842 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3142. 2017-10-17 09:15:13.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3143. 2017-10-17 09:15:13.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3144. 2017-10-17 09:15:14.145 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3145. 2017-10-17 09:15:14.146 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3146. 2017-10-17 09:15:14.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3147. 2017-10-17 09:15:14.177 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3148. 2017-10-17 09:15:14.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3149. 2017-10-17 09:15:14.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3150. 2017-10-17 09:15:14.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3151. 2017-10-17 09:15:14.258 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3152. 2017-10-17 09:15:14.259 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3153. 2017-10-17 09:15:14.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3154. 2017-10-17 09:15:14.264 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3155. 2017-10-17 09:15:14.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3156. 2017-10-17 09:15:14.397 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3157. 2017-10-17 09:15:14.433 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3158. 2017-10-17 09:15:14.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3159. 2017-10-17 09:15:14.464 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3160. 2017-10-17 09:15:14.465 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3161. 2017-10-17 09:15:14.466 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3162. 2017-10-17 09:15:14.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3163. 2017-10-17 09:15:14.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3164. 2017-10-17 09:15:14.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3165. 2017-10-17 09:15:14.590 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3166. 2017-10-17 09:15:14.640 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3167. 2017-10-17 09:15:14.643 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3168. 2017-10-17 09:15:14.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count
  3169. 2017-10-17 09:15:14.700 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
  3170. 2017-10-17 09:15:14.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  3171. 2017-10-17 09:15:14.782 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,?
  3172. 2017-10-17 09:15:14.783 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
  3173. 2017-10-17 09:15:14.867 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
  3174. 2017-10-17 09:15:21.111 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3175. 2017-10-17 09:15:21.163 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3176. 2017-10-17 09:15:21.163 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3177. 2017-10-17 09:15:21.211 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3178. 2017-10-17 09:15:21.213 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3179. 2017-10-17 09:15:21.213 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3180. 2017-10-17 09:15:21.254 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3181. 2017-10-17 09:15:21.255 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3182. 2017-10-17 09:15:21.255 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3183. 2017-10-17 09:15:21.282 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3184. 2017-10-17 09:15:21.329 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3185. 2017-10-17 09:15:21.332 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3186. 2017-10-17 09:15:21.370 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3187. 2017-10-17 09:15:21.371 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3188. 2017-10-17 09:15:21.399 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 57
  3189. 2017-10-17 09:16:10.711 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3190. 2017-10-17 09:16:10.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3191. 2017-10-17 09:16:10.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3192. 2017-10-17 09:16:10.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3193. 2017-10-17 09:16:10.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3194. 2017-10-17 09:16:10.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3195. 2017-10-17 09:16:10.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3196. 2017-10-17 09:16:10.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3197. 2017-10-17 09:16:10.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3198. 2017-10-17 09:16:10.911 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3199. 2017-10-17 09:16:10.958 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3200. 2017-10-17 09:16:10.959 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3201. 2017-10-17 09:16:10.963 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.insert [159] -| ==> Preparing: INSERT INTO sys_menu (menuname,url,iconClass,parentId,type,sortNo,status) VALUES (?,?,?,?,?,?,?)
  3202. 2017-10-17 09:16:10.964 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.insert [159] -| ==> Parameters: 无效任务(String), (String), trash(String), null, 10(Integer), 3(Integer), 0(Integer)
  3203. 2017-10-17 09:16:11.031 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.insert [159] -| <== Updates: 1
  3204. 2017-10-17 09:16:11.041 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3205. 2017-10-17 09:16:11.078 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3206. 2017-10-17 09:16:11.079 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3207. 2017-10-17 09:16:11.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3208. 2017-10-17 09:16:11.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3209. 2017-10-17 09:16:11.109 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3210. 2017-10-17 09:16:11.152 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3211. 2017-10-17 09:16:11.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3212. 2017-10-17 09:16:11.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3213. 2017-10-17 09:16:11.179 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3214. 2017-10-17 09:16:11.216 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3215. 2017-10-17 09:16:11.218 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3216. 2017-10-17 09:16:11.253 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3217. 2017-10-17 09:16:11.254 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3218. 2017-10-17 09:16:11.285 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 58
  3219. 2017-10-17 09:16:14.248 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3220. 2017-10-17 09:16:14.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3221. 2017-10-17 09:16:14.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3222. 2017-10-17 09:16:14.325 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3223. 2017-10-17 09:16:14.326 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3224. 2017-10-17 09:16:14.327 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3225. 2017-10-17 09:16:14.371 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3226. 2017-10-17 09:16:14.371 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3227. 2017-10-17 09:16:14.372 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3228. 2017-10-17 09:16:14.398 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3229. 2017-10-17 09:16:14.446 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3230. 2017-10-17 09:16:14.447 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3231. 2017-10-17 09:16:14.470 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_menu WHERE status != -1 AND (parentId = ? OR id = ?)
  3232. 2017-10-17 09:16:14.471 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| ==> Parameters: 76(Integer), 76(Integer)
  3233. 2017-10-17 09:16:14.507 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| <== Total: 1
  3234. 2017-10-17 09:16:14.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and (parentId = ? or id = ?) order by sortNo,id limit ?,?
  3235. 2017-10-17 09:16:14.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| ==> Parameters: 76(Integer), 76(Integer), 0(Integer), 10(Integer)
  3236. 2017-10-17 09:16:14.539 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| <== Total: 1
  3237. 2017-10-17 09:20:07.760 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3238. 2017-10-17 09:20:07.760 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3239. 2017-10-17 09:20:07.760 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3240. 2017-10-17 09:20:07.760 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3241. 2017-10-17 09:20:07.760 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3242. 2017-10-17 09:20:07.963 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3243. 2017-10-17 09:20:07.964 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3244. 2017-10-17 09:20:07.991 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3245. 2017-10-17 09:20:08.003 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3246. 2017-10-17 09:20:08.003 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3247. 2017-10-17 09:20:08.004 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3248. 2017-10-17 09:20:08.004 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3249. 2017-10-17 09:20:08.017 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3250. 2017-10-17 09:20:08.018 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3251. 2017-10-17 09:20:08.049 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3252. 2017-10-17 09:20:08.049 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3253. 2017-10-17 09:20:08.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3254. 2017-10-17 09:20:08.060 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3255. 2017-10-17 09:20:08.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3256. 2017-10-17 09:20:08.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3257. 2017-10-17 09:20:08.077 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3258. 2017-10-17 09:20:08.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3259. 2017-10-17 09:20:08.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3260. 2017-10-17 09:20:08.089 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3261. 2017-10-17 09:20:08.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3262. 2017-10-17 09:20:08.102 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3263. 2017-10-17 09:20:08.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3264. 2017-10-17 09:20:08.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3265. 2017-10-17 09:20:08.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3266. 2017-10-17 09:20:08.106 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3267. 2017-10-17 09:20:08.106 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3268. 2017-10-17 09:20:08.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3269. 2017-10-17 09:20:08.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3270. 2017-10-17 09:20:08.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3271. 2017-10-17 09:20:08.133 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3272. 2017-10-17 09:20:08.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3273. 2017-10-17 09:20:08.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3274. 2017-10-17 09:20:08.160 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3275. 2017-10-17 09:20:08.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3276. 2017-10-17 09:20:08.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3277. 2017-10-17 09:20:08.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3278. 2017-10-17 09:20:08.191 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3279. 2017-10-17 09:20:08.213 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3280. 2017-10-17 09:20:08.214 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3281. 2017-10-17 09:20:08.238 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3282. 2017-10-17 09:20:08.239 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3283. 2017-10-17 09:20:08.239 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3284. 2017-10-17 09:20:08.240 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3285. 2017-10-17 09:20:08.240 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3286. 2017-10-17 09:20:08.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3287. 2017-10-17 09:20:08.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3288. 2017-10-17 09:20:08.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3289. 2017-10-17 09:20:08.267 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3290. 2017-10-17 09:20:08.270 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3291. 2017-10-17 09:20:08.271 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3292. 2017-10-17 09:20:08.274 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3293. 2017-10-17 09:20:08.274 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3294. 2017-10-17 09:20:08.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3295. 2017-10-17 09:20:08.279 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3296. 2017-10-17 09:20:08.280 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3297. 2017-10-17 09:20:08.306 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3298. 2017-10-17 09:20:08.318 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3299. 2017-10-17 09:20:08.319 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3300. 2017-10-17 09:20:08.332 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3301. 2017-10-17 09:20:08.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3302. 2017-10-17 09:20:08.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3303. 2017-10-17 09:20:08.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3304. 2017-10-17 09:20:08.334 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3305. 2017-10-17 09:20:08.365 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3306. 2017-10-17 09:20:08.366 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3307. 2017-10-17 09:20:08.367 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  3308. 2017-10-17 09:20:08.372 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3309. 2017-10-17 09:20:08.373 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3310. 2017-10-17 09:20:08.382 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3311. 2017-10-17 09:20:08.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3312. 2017-10-17 09:20:08.429 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3313. 2017-10-17 09:20:08.429 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3314. 2017-10-17 09:20:08.429 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3315. 2017-10-17 09:20:08.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3316. 2017-10-17 09:20:08.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3317. 2017-10-17 09:20:08.494 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3318. 2017-10-17 09:20:08.494 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3319. 2017-10-17 09:20:08.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3320. 2017-10-17 09:20:08.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3321. 2017-10-17 09:20:08.495 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3322. 2017-10-17 09:20:08.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3323. 2017-10-17 09:20:08.496 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3324. 2017-10-17 09:20:08.529 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3325. 2017-10-17 09:20:08.530 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3326. 2017-10-17 09:20:08.530 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3327. 2017-10-17 09:20:08.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3328. 2017-10-17 09:20:08.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3329. 2017-10-17 09:20:08.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3330. 2017-10-17 09:20:08.555 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3331. 2017-10-17 09:20:08.556 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3332. 2017-10-17 09:20:08.556 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3333. 2017-10-17 09:20:08.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3334. 2017-10-17 09:20:08.570 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3335. 2017-10-17 09:20:08.571 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3336. 2017-10-17 09:20:08.572 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3337. 2017-10-17 09:20:08.607 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3338. 2017-10-17 09:20:08.608 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3339. 2017-10-17 09:20:08.608 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3340. 2017-10-17 09:20:08.609 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3341. 2017-10-17 09:20:08.622 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3342. 2017-10-17 09:20:08.623 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3343. 2017-10-17 09:20:08.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3344. 2017-10-17 09:20:08.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3345. 2017-10-17 09:20:08.652 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3346. 2017-10-17 09:20:08.655 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3347. 2017-10-17 09:20:08.656 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3348. 2017-10-17 09:20:08.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3349. 2017-10-17 09:20:08.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3350. 2017-10-17 09:20:08.665 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3351. 2017-10-17 09:20:08.673 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3352. 2017-10-17 09:20:08.688 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3353. 2017-10-17 09:20:08.693 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3354. 2017-10-17 09:20:08.694 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3355. 2017-10-17 09:20:08.696 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3356. 2017-10-17 09:20:08.696 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3357. 2017-10-17 09:20:08.713 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3358. 2017-10-17 09:20:08.714 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3359. 2017-10-17 09:20:08.728 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3360. 2017-10-17 09:20:08.759 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3361. 2017-10-17 09:20:08.759 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3362. 2017-10-17 09:20:08.760 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3363. 2017-10-17 09:20:08.802 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3364. 2017-10-17 09:20:08.803 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3365. 2017-10-17 09:20:08.804 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3366. 2017-10-17 09:20:08.831 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3367. 2017-10-17 09:20:09.134 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3368. 2017-10-17 09:20:09.135 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3369. 2017-10-17 09:20:09.140 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3370. 2017-10-17 09:20:09.141 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3371. 2017-10-17 09:20:09.303 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  3372. 2017-10-17 09:20:09.331 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3373. 2017-10-17 09:20:09.369 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3374. 2017-10-17 09:20:09.370 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3375. 2017-10-17 09:20:09.403 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3376. 2017-10-17 09:20:09.404 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3377. 2017-10-17 09:20:09.405 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3378. 2017-10-17 09:20:09.447 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3379. 2017-10-17 09:20:09.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3380. 2017-10-17 09:20:09.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3381. 2017-10-17 09:20:09.475 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3382. 2017-10-17 09:20:09.525 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3383. 2017-10-17 09:20:09.526 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3384. 2017-10-17 09:20:09.529 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3385. 2017-10-17 09:20:09.530 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3386. 2017-10-17 09:20:09.558 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3387. 2017-10-17 09:20:09.601 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3388. 2017-10-17 09:20:09.650 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3389. 2017-10-17 09:20:09.650 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3390. 2017-10-17 09:20:09.683 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3391. 2017-10-17 09:20:09.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3392. 2017-10-17 09:20:09.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3393. 2017-10-17 09:20:09.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3394. 2017-10-17 09:20:09.747 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3395. 2017-10-17 09:20:09.747 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3396. 2017-10-17 09:20:09.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3397. 2017-10-17 09:20:09.819 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3398. 2017-10-17 09:20:09.820 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3399. 2017-10-17 09:20:09.888 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3400. 2017-10-17 09:20:09.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3401. 2017-10-17 09:20:09.934 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3402. 2017-10-17 09:20:14.240 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3403. 2017-10-17 09:20:14.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3404. 2017-10-17 09:20:14.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3405. 2017-10-17 09:20:14.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3406. 2017-10-17 09:20:14.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3407. 2017-10-17 09:20:14.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3408. 2017-10-17 09:20:14.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3409. 2017-10-17 09:20:14.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3410. 2017-10-17 09:20:14.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3411. 2017-10-17 09:20:14.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3412. 2017-10-17 09:20:14.479 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3413. 2017-10-17 09:20:14.480 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3414. 2017-10-17 09:20:14.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_menu WHERE status != -1 AND (parentId = ? OR id = ?)
  3415. 2017-10-17 09:20:14.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| ==> Parameters: 75(Integer), 75(Integer)
  3416. 2017-10-17 09:20:14.511 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| <== Total: 1
  3417. 2017-10-17 09:20:14.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and (parentId = ? or id = ?) order by sortNo,id limit ?,?
  3418. 2017-10-17 09:20:14.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| ==> Parameters: 75(Integer), 75(Integer), 0(Integer), 10(Integer)
  3419. 2017-10-17 09:20:14.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| <== Total: 5
  3420. 2017-10-17 09:20:19.650 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3421. 2017-10-17 09:20:19.717 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3422. 2017-10-17 09:20:19.717 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3423. 2017-10-17 09:20:19.781 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3424. 2017-10-17 09:20:19.782 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3425. 2017-10-17 09:20:19.782 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3426. 2017-10-17 09:20:19.829 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3427. 2017-10-17 09:20:19.830 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3428. 2017-10-17 09:20:19.831 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3429. 2017-10-17 09:20:19.859 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3430. 2017-10-17 09:20:19.948 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3431. 2017-10-17 09:20:19.949 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3432. 2017-10-17 09:20:19.955 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  3433. 2017-10-17 09:20:19.956 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  3434. 2017-10-17 09:20:19.990 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 56
  3435. 2017-10-17 09:20:28.803 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3436. 2017-10-17 09:20:28.893 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3437. 2017-10-17 09:20:28.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3438. 2017-10-17 09:20:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3439. 2017-10-17 09:20:28.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3440. 2017-10-17 09:20:28.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3441. 2017-10-17 09:20:29.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3442. 2017-10-17 09:20:29.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3443. 2017-10-17 09:20:29.018 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3444. 2017-10-17 09:20:29.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3445. 2017-10-17 09:20:29.136 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3446. 2017-10-17 09:20:29.137 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3447. 2017-10-17 09:20:29.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3448. 2017-10-17 09:20:29.214 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3449. 2017-10-17 09:20:29.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3450. 2017-10-17 09:20:35.732 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3451. 2017-10-17 09:20:35.797 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3452. 2017-10-17 09:20:35.797 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3453. 2017-10-17 09:20:35.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3454. 2017-10-17 09:20:35.859 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3455. 2017-10-17 09:20:35.861 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3456. 2017-10-17 09:20:35.906 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3457. 2017-10-17 09:20:35.908 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3458. 2017-10-17 09:20:35.908 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3459. 2017-10-17 09:20:35.937 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3460. 2017-10-17 09:20:36.029 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3461. 2017-10-17 09:20:36.031 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3462. 2017-10-17 09:20:36.033 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Preparing: INSERT INTO sys_permission (name,description,pid,type,resourceid,status) VALUES (?,?,?,?,?,?)
  3463. 2017-10-17 09:20:36.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Parameters: 无效任务(String), (String), null, 1(Integer), 75(Integer), 1(Integer)
  3464. 2017-10-17 09:20:36.094 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| <== Updates: 1
  3465. 2017-10-17 09:20:38.311 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3466. 2017-10-17 09:20:38.382 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3467. 2017-10-17 09:20:38.383 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3468. 2017-10-17 09:20:38.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3469. 2017-10-17 09:20:38.442 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3470. 2017-10-17 09:20:38.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3471. 2017-10-17 09:20:38.488 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3472. 2017-10-17 09:20:38.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3473. 2017-10-17 09:20:38.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3474. 2017-10-17 09:20:38.516 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3475. 2017-10-17 09:20:38.604 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3476. 2017-10-17 09:20:38.606 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3477. 2017-10-17 09:20:38.608 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  3478. 2017-10-17 09:20:38.609 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  3479. 2017-10-17 09:20:38.639 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 57
  3480. 2017-10-17 09:20:51.773 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3481. 2017-10-17 09:20:51.773 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3482. 2017-10-17 09:20:51.773 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3483. 2017-10-17 09:20:51.773 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3484. 2017-10-17 09:20:51.773 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3485. 2017-10-17 09:20:51.808 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3486. 2017-10-17 09:20:51.809 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3487. 2017-10-17 09:20:51.811 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3488. 2017-10-17 09:20:51.811 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3489. 2017-10-17 09:20:51.812 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3490. 2017-10-17 09:20:51.812 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3491. 2017-10-17 09:20:51.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3492. 2017-10-17 09:20:51.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3493. 2017-10-17 09:20:51.842 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3494. 2017-10-17 09:20:51.843 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3495. 2017-10-17 09:20:51.844 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3496. 2017-10-17 09:20:51.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3497. 2017-10-17 09:20:51.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3498. 2017-10-17 09:20:51.847 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3499. 2017-10-17 09:20:51.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3500. 2017-10-17 09:20:51.847 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3501. 2017-10-17 09:20:51.853 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3502. 2017-10-17 09:20:51.854 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3503. 2017-10-17 09:20:51.854 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3504. 2017-10-17 09:20:51.857 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3505. 2017-10-17 09:20:51.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3506. 2017-10-17 09:20:51.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3507. 2017-10-17 09:20:51.877 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3508. 2017-10-17 09:20:51.888 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3509. 2017-10-17 09:20:51.889 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3510. 2017-10-17 09:20:51.890 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3511. 2017-10-17 09:20:51.891 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3512. 2017-10-17 09:20:51.892 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3513. 2017-10-17 09:20:51.892 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3514. 2017-10-17 09:20:51.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3515. 2017-10-17 09:20:51.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3516. 2017-10-17 09:20:51.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3517. 2017-10-17 09:20:51.905 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3518. 2017-10-17 09:20:51.906 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3519. 2017-10-17 09:20:51.906 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3520. 2017-10-17 09:20:51.907 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3521. 2017-10-17 09:20:51.907 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3522. 2017-10-17 09:20:51.915 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3523. 2017-10-17 09:20:51.920 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3524. 2017-10-17 09:20:51.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3525. 2017-10-17 09:20:51.935 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3526. 2017-10-17 09:20:51.938 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3527. 2017-10-17 09:20:51.939 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3528. 2017-10-17 09:20:51.939 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3529. 2017-10-17 09:20:51.967 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3530. 2017-10-17 09:20:51.967 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3531. 2017-10-17 09:20:51.969 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3532. 2017-10-17 09:20:51.971 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3533. 2017-10-17 09:20:51.971 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3534. 2017-10-17 09:20:51.983 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3535. 2017-10-17 09:20:51.984 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3536. 2017-10-17 09:20:51.994 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3537. 2017-10-17 09:20:51.995 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3538. 2017-10-17 09:20:51.996 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3539. 2017-10-17 09:20:51.997 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3540. 2017-10-17 09:20:51.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3541. 2017-10-17 09:20:52.000 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3542. 2017-10-17 09:20:52.002 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3543. 2017-10-17 09:20:52.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3544. 2017-10-17 09:20:52.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3545. 2017-10-17 09:20:52.039 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3546. 2017-10-17 09:20:52.040 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3547. 2017-10-17 09:20:52.050 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3548. 2017-10-17 09:20:52.064 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3549. 2017-10-17 09:20:52.064 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3550. 2017-10-17 09:20:52.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3551. 2017-10-17 09:20:52.083 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3552. 2017-10-17 09:20:52.083 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3553. 2017-10-17 09:20:52.096 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  3554. 2017-10-17 09:20:52.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3555. 2017-10-17 09:20:52.182 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3556. 2017-10-17 09:20:52.182 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3557. 2017-10-17 09:20:52.182 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3558. 2017-10-17 09:20:52.215 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3559. 2017-10-17 09:20:52.215 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3560. 2017-10-17 09:20:52.215 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3561. 2017-10-17 09:20:52.216 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3562. 2017-10-17 09:20:52.233 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3563. 2017-10-17 09:20:52.234 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3564. 2017-10-17 09:20:52.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3565. 2017-10-17 09:20:52.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3566. 2017-10-17 09:20:52.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3567. 2017-10-17 09:20:52.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3568. 2017-10-17 09:20:52.268 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3569. 2017-10-17 09:20:52.269 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3570. 2017-10-17 09:20:52.279 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3571. 2017-10-17 09:20:52.280 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3572. 2017-10-17 09:20:52.281 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3573. 2017-10-17 09:20:52.290 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3574. 2017-10-17 09:20:52.291 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3575. 2017-10-17 09:20:52.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3576. 2017-10-17 09:20:52.302 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3577. 2017-10-17 09:20:52.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3578. 2017-10-17 09:20:52.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3579. 2017-10-17 09:20:52.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3580. 2017-10-17 09:20:52.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3581. 2017-10-17 09:20:52.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3582. 2017-10-17 09:20:52.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3583. 2017-10-17 09:20:52.330 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3584. 2017-10-17 09:20:52.354 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3585. 2017-10-17 09:20:52.361 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3586. 2017-10-17 09:20:52.362 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3587. 2017-10-17 09:20:52.363 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3588. 2017-10-17 09:20:52.363 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3589. 2017-10-17 09:20:52.377 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3590. 2017-10-17 09:20:52.379 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3591. 2017-10-17 09:20:52.381 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3592. 2017-10-17 09:20:52.381 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3593. 2017-10-17 09:20:52.387 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3594. 2017-10-17 09:20:52.388 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3595. 2017-10-17 09:20:52.390 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3596. 2017-10-17 09:20:52.390 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3597. 2017-10-17 09:20:52.421 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3598. 2017-10-17 09:20:52.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3599. 2017-10-17 09:20:52.430 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3600. 2017-10-17 09:20:52.439 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3601. 2017-10-17 09:20:52.461 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3602. 2017-10-17 09:20:52.462 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3603. 2017-10-17 09:20:52.538 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3604. 2017-10-17 09:20:52.540 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3605. 2017-10-17 09:20:52.540 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3606. 2017-10-17 09:20:52.581 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3607. 2017-10-17 09:20:52.582 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3608. 2017-10-17 09:20:52.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3609. 2017-10-17 09:20:52.609 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3610. 2017-10-17 09:20:52.642 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3611. 2017-10-17 09:20:52.644 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3612. 2017-10-17 09:20:52.649 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3613. 2017-10-17 09:20:52.650 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3614. 2017-10-17 09:20:53.013 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  3615. 2017-10-17 09:20:53.037 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3616. 2017-10-17 09:20:53.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3617. 2017-10-17 09:20:53.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3618. 2017-10-17 09:20:53.106 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3619. 2017-10-17 09:20:53.107 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3620. 2017-10-17 09:20:53.107 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3621. 2017-10-17 09:20:53.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3622. 2017-10-17 09:20:53.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3623. 2017-10-17 09:20:53.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3624. 2017-10-17 09:20:53.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3625. 2017-10-17 09:20:53.215 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3626. 2017-10-17 09:20:53.215 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3627. 2017-10-17 09:20:53.215 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3628. 2017-10-17 09:20:53.216 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3629. 2017-10-17 09:20:53.217 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3630. 2017-10-17 09:20:53.225 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3631. 2017-10-17 09:20:53.226 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3632. 2017-10-17 09:20:53.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3633. 2017-10-17 09:20:53.230 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3634. 2017-10-17 09:20:53.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3635. 2017-10-17 09:20:53.248 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3636. 2017-10-17 09:20:53.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3637. 2017-10-17 09:20:53.249 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3638. 2017-10-17 09:20:53.256 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3639. 2017-10-17 09:20:53.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3640. 2017-10-17 09:20:53.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3641. 2017-10-17 09:20:53.284 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3642. 2017-10-17 09:20:53.285 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3643. 2017-10-17 09:20:53.304 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3644. 2017-10-17 09:20:53.305 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3645. 2017-10-17 09:20:53.305 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3646. 2017-10-17 09:20:53.311 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3647. 2017-10-17 09:20:53.312 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3648. 2017-10-17 09:20:53.312 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3649. 2017-10-17 09:20:53.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3650. 2017-10-17 09:20:53.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3651. 2017-10-17 09:20:53.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3652. 2017-10-17 09:20:53.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3653. 2017-10-17 09:20:53.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3654. 2017-10-17 09:20:53.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3655. 2017-10-17 09:20:53.344 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3656. 2017-10-17 09:20:53.345 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3657. 2017-10-17 09:20:53.345 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3658. 2017-10-17 09:20:53.352 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3659. 2017-10-17 09:20:53.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3660. 2017-10-17 09:20:53.354 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3661. 2017-10-17 09:20:53.368 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3662. 2017-10-17 09:20:53.369 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3663. 2017-10-17 09:20:53.369 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3664. 2017-10-17 09:20:53.369 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3665. 2017-10-17 09:20:53.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3666. 2017-10-17 09:20:53.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3667. 2017-10-17 09:20:53.373 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3668. 2017-10-17 09:20:53.385 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3669. 2017-10-17 09:20:53.400 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3670. 2017-10-17 09:20:53.400 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3671. 2017-10-17 09:20:53.430 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3672. 2017-10-17 09:20:53.431 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3673. 2017-10-17 09:20:53.443 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3674. 2017-10-17 09:20:53.445 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3675. 2017-10-17 09:20:53.445 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3676. 2017-10-17 09:20:53.446 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3677. 2017-10-17 09:20:53.447 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3678. 2017-10-17 09:20:53.448 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3679. 2017-10-17 09:20:53.450 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3680. 2017-10-17 09:20:53.451 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3681. 2017-10-17 09:20:53.453 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3682. 2017-10-17 09:20:53.454 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3683. 2017-10-17 09:20:53.474 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3684. 2017-10-17 09:20:53.475 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3685. 2017-10-17 09:20:53.476 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3686. 2017-10-17 09:20:53.483 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3687. 2017-10-17 09:20:53.484 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3688. 2017-10-17 09:20:53.488 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3689. 2017-10-17 09:20:53.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3690. 2017-10-17 09:20:53.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3691. 2017-10-17 09:20:53.521 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  3692. 2017-10-17 09:20:53.523 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3693. 2017-10-17 09:20:53.524 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3694. 2017-10-17 09:20:53.525 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3695. 2017-10-17 09:20:53.526 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3696. 2017-10-17 09:20:53.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3697. 2017-10-17 09:20:53.594 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3698. 2017-10-17 09:20:53.595 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3699. 2017-10-17 09:20:53.667 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3700. 2017-10-17 09:20:53.667 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3701. 2017-10-17 09:20:53.710 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3702. 2017-10-17 09:20:53.711 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3703. 2017-10-17 09:20:53.711 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3704. 2017-10-17 09:20:53.763 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3705. 2017-10-17 09:20:53.804 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3706. 2017-10-17 09:20:53.804 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3707. 2017-10-17 09:20:53.804 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3708. 2017-10-17 09:20:53.840 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3709. 2017-10-17 09:20:53.841 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3710. 2017-10-17 09:20:53.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3711. 2017-10-17 09:20:53.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3712. 2017-10-17 09:20:53.845 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3713. 2017-10-17 09:20:53.845 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3714. 2017-10-17 09:20:53.870 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3715. 2017-10-17 09:20:53.871 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3716. 2017-10-17 09:20:53.871 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3717. 2017-10-17 09:20:53.873 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3718. 2017-10-17 09:20:53.873 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3719. 2017-10-17 09:20:53.874 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3720. 2017-10-17 09:20:53.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3721. 2017-10-17 09:20:53.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3722. 2017-10-17 09:20:53.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3723. 2017-10-17 09:20:53.915 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3724. 2017-10-17 09:20:53.917 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3725. 2017-10-17 09:20:53.917 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3726. 2017-10-17 09:20:53.917 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3727. 2017-10-17 09:20:53.918 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3728. 2017-10-17 09:20:53.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3729. 2017-10-17 09:20:53.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3730. 2017-10-17 09:20:53.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3731. 2017-10-17 09:20:53.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3732. 2017-10-17 09:20:53.949 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3733. 2017-10-17 09:20:53.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3734. 2017-10-17 09:20:53.949 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3735. 2017-10-17 09:20:53.995 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3736. 2017-10-17 09:20:53.996 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3737. 2017-10-17 09:20:53.998 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3738. 2017-10-17 09:20:53.998 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3739. 2017-10-17 09:20:54.006 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3740. 2017-10-17 09:20:54.008 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3741. 2017-10-17 09:20:54.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3742. 2017-10-17 09:20:54.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3743. 2017-10-17 09:20:54.012 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3744. 2017-10-17 09:20:54.014 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3745. 2017-10-17 09:20:54.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3746. 2017-10-17 09:20:54.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3747. 2017-10-17 09:20:54.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3748. 2017-10-17 09:20:54.045 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3749. 2017-10-17 09:20:54.062 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3750. 2017-10-17 09:20:54.068 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3751. 2017-10-17 09:20:54.109 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3752. 2017-10-17 09:20:54.110 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3753. 2017-10-17 09:20:54.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3754. 2017-10-17 09:20:54.154 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3755. 2017-10-17 09:20:54.155 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3756. 2017-10-17 09:20:54.218 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3757. 2017-10-17 09:20:54.219 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3758. 2017-10-17 09:20:54.219 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3759. 2017-10-17 09:20:54.249 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3760. 2017-10-17 09:20:54.285 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3761. 2017-10-17 09:20:54.286 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3762. 2017-10-17 09:20:54.292 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3763. 2017-10-17 09:20:54.292 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3764. 2017-10-17 09:20:54.536 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  3765. 2017-10-17 09:20:54.558 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3766. 2017-10-17 09:20:54.604 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3767. 2017-10-17 09:20:54.604 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3768. 2017-10-17 09:20:54.663 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3769. 2017-10-17 09:20:54.664 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3770. 2017-10-17 09:20:54.665 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3771. 2017-10-17 09:20:54.726 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3772. 2017-10-17 09:20:54.727 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3773. 2017-10-17 09:20:54.729 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3774. 2017-10-17 09:20:54.760 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3775. 2017-10-17 09:20:54.844 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3776. 2017-10-17 09:20:54.846 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3777. 2017-10-17 09:20:54.849 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3778. 2017-10-17 09:20:54.850 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3779. 2017-10-17 09:20:54.884 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3780. 2017-10-17 09:20:54.927 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3781. 2017-10-17 09:20:54.964 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3782. 2017-10-17 09:20:54.965 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3783. 2017-10-17 09:20:54.994 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3784. 2017-10-17 09:20:54.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3785. 2017-10-17 09:20:54.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3786. 2017-10-17 09:20:55.067 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3787. 2017-10-17 09:20:55.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3788. 2017-10-17 09:20:55.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3789. 2017-10-17 09:20:55.105 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3790. 2017-10-17 09:20:55.146 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3791. 2017-10-17 09:20:55.148 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3792. 2017-10-17 09:20:55.151 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  3793. 2017-10-17 09:20:55.152 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  3794. 2017-10-17 09:20:55.201 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 57
  3795. 2017-10-17 09:21:01.073 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3796. 2017-10-17 09:21:01.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3797. 2017-10-17 09:21:01.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3798. 2017-10-17 09:21:01.134 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3799. 2017-10-17 09:21:01.136 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3800. 2017-10-17 09:21:01.136 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3801. 2017-10-17 09:21:01.196 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3802. 2017-10-17 09:21:01.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3803. 2017-10-17 09:21:01.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3804. 2017-10-17 09:21:01.231 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3805. 2017-10-17 09:21:01.274 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3806. 2017-10-17 09:21:01.276 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3807. 2017-10-17 09:21:01.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3808. 2017-10-17 09:21:01.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3809. 2017-10-17 09:21:01.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3810. 2017-10-17 09:21:40.388 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3811. 2017-10-17 09:21:40.388 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3812. 2017-10-17 09:21:40.388 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3813. 2017-10-17 09:21:40.388 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3814. 2017-10-17 09:21:40.388 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3815. 2017-10-17 09:21:40.419 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3816. 2017-10-17 09:21:40.420 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3817. 2017-10-17 09:21:40.420 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3818. 2017-10-17 09:21:40.421 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3819. 2017-10-17 09:21:40.422 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3820. 2017-10-17 09:21:40.422 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3821. 2017-10-17 09:21:40.423 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3822. 2017-10-17 09:21:40.423 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3823. 2017-10-17 09:21:40.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3824. 2017-10-17 09:21:40.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3825. 2017-10-17 09:21:40.452 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3826. 2017-10-17 09:21:40.453 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3827. 2017-10-17 09:21:40.453 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3828. 2017-10-17 09:21:40.453 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3829. 2017-10-17 09:21:40.453 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3830. 2017-10-17 09:21:40.453 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3831. 2017-10-17 09:21:40.454 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3832. 2017-10-17 09:21:40.454 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3833. 2017-10-17 09:21:40.455 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3834. 2017-10-17 09:21:40.455 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3835. 2017-10-17 09:21:40.456 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3836. 2017-10-17 09:21:40.456 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3837. 2017-10-17 09:21:40.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3838. 2017-10-17 09:21:40.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3839. 2017-10-17 09:21:40.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3840. 2017-10-17 09:21:40.491 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3841. 2017-10-17 09:21:40.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3842. 2017-10-17 09:21:40.492 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3843. 2017-10-17 09:21:40.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3844. 2017-10-17 09:21:40.492 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3845. 2017-10-17 09:21:40.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3846. 2017-10-17 09:21:40.501 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3847. 2017-10-17 09:21:40.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3848. 2017-10-17 09:21:40.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3849. 2017-10-17 09:21:40.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3850. 2017-10-17 09:21:40.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3851. 2017-10-17 09:21:40.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3852. 2017-10-17 09:21:40.503 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3853. 2017-10-17 09:21:40.504 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3854. 2017-10-17 09:21:40.504 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3855. 2017-10-17 09:21:40.519 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3856. 2017-10-17 09:21:40.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3857. 2017-10-17 09:21:40.531 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3858. 2017-10-17 09:21:40.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3859. 2017-10-17 09:21:40.531 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3860. 2017-10-17 09:21:40.564 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3861. 2017-10-17 09:21:40.565 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3862. 2017-10-17 09:21:40.566 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3863. 2017-10-17 09:21:40.567 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3864. 2017-10-17 09:21:40.568 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3865. 2017-10-17 09:21:40.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3866. 2017-10-17 09:21:40.576 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3867. 2017-10-17 09:21:40.577 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3868. 2017-10-17 09:21:40.577 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3869. 2017-10-17 09:21:40.578 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3870. 2017-10-17 09:21:40.579 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3871. 2017-10-17 09:21:40.579 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3872. 2017-10-17 09:21:40.601 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3873. 2017-10-17 09:21:40.601 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3874. 2017-10-17 09:21:40.605 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3875. 2017-10-17 09:21:40.609 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  3876. 2017-10-17 09:21:40.610 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3877. 2017-10-17 09:21:40.612 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3878. 2017-10-17 09:21:40.612 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3879. 2017-10-17 09:21:40.627 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3880. 2017-10-17 09:21:40.643 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  3881. 2017-10-17 09:21:40.651 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  3882. 2017-10-17 09:21:40.652 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3883. 2017-10-17 09:21:40.652 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3884. 2017-10-17 09:21:40.695 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3885. 2017-10-17 09:21:40.743 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3886. 2017-10-17 09:21:40.743 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3887. 2017-10-17 09:21:40.743 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3888. 2017-10-17 09:21:40.775 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3889. 2017-10-17 09:21:40.775 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3890. 2017-10-17 09:21:40.775 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3891. 2017-10-17 09:21:40.775 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3892. 2017-10-17 09:21:40.776 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3893. 2017-10-17 09:21:40.776 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3894. 2017-10-17 09:21:40.803 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3895. 2017-10-17 09:21:40.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3896. 2017-10-17 09:21:40.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3897. 2017-10-17 09:21:40.804 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3898. 2017-10-17 09:21:40.805 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3899. 2017-10-17 09:21:40.805 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3900. 2017-10-17 09:21:40.806 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3901. 2017-10-17 09:21:40.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3902. 2017-10-17 09:21:40.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3903. 2017-10-17 09:21:40.846 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3904. 2017-10-17 09:21:40.847 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3905. 2017-10-17 09:21:40.847 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3906. 2017-10-17 09:21:40.847 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3907. 2017-10-17 09:21:40.848 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3908. 2017-10-17 09:21:40.848 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3909. 2017-10-17 09:21:40.849 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3910. 2017-10-17 09:21:40.850 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3911. 2017-10-17 09:21:40.850 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3912. 2017-10-17 09:21:40.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3913. 2017-10-17 09:21:40.875 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3914. 2017-10-17 09:21:40.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3915. 2017-10-17 09:21:40.907 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3916. 2017-10-17 09:21:40.907 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3917. 2017-10-17 09:21:40.908 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3918. 2017-10-17 09:21:40.909 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3919. 2017-10-17 09:21:40.909 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3920. 2017-10-17 09:21:40.909 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3921. 2017-10-17 09:21:40.910 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3922. 2017-10-17 09:21:40.910 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3923. 2017-10-17 09:21:40.910 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3924. 2017-10-17 09:21:40.910 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3925. 2017-10-17 09:21:40.911 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3926. 2017-10-17 09:21:40.911 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3927. 2017-10-17 09:21:40.940 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3928. 2017-10-17 09:21:40.941 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3929. 2017-10-17 09:21:40.942 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3930. 2017-10-17 09:21:40.948 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3931. 2017-10-17 09:21:40.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3932. 2017-10-17 09:21:40.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3933. 2017-10-17 09:21:41.014 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3934. 2017-10-17 09:21:41.015 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3935. 2017-10-17 09:21:41.016 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3936. 2017-10-17 09:21:41.058 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3937. 2017-10-17 09:21:41.059 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3938. 2017-10-17 09:21:41.060 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3939. 2017-10-17 09:21:41.089 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3940. 2017-10-17 09:21:41.120 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3941. 2017-10-17 09:21:41.121 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3942. 2017-10-17 09:21:41.126 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3943. 2017-10-17 09:21:41.126 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3944. 2017-10-17 09:21:41.237 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  3945. 2017-10-17 09:21:41.262 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3946. 2017-10-17 09:21:41.294 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3947. 2017-10-17 09:21:41.294 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3948. 2017-10-17 09:21:41.326 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3949. 2017-10-17 09:21:41.327 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3950. 2017-10-17 09:21:41.327 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3951. 2017-10-17 09:21:41.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3952. 2017-10-17 09:21:41.371 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3953. 2017-10-17 09:21:41.372 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3954. 2017-10-17 09:21:41.401 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3955. 2017-10-17 09:21:41.434 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3956. 2017-10-17 09:21:41.436 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3957. 2017-10-17 09:21:41.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3958. 2017-10-17 09:21:41.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3959. 2017-10-17 09:21:41.470 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  3960. 2017-10-17 09:21:41.525 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3961. 2017-10-17 09:21:41.559 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3962. 2017-10-17 09:21:41.560 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3963. 2017-10-17 09:21:41.594 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3964. 2017-10-17 09:21:41.595 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3965. 2017-10-17 09:21:41.595 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3966. 2017-10-17 09:21:41.640 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  3967. 2017-10-17 09:21:41.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3968. 2017-10-17 09:21:41.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3969. 2017-10-17 09:21:41.668 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3970. 2017-10-17 09:21:41.702 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3971. 2017-10-17 09:21:41.703 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3972. 2017-10-17 09:21:41.707 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  3973. 2017-10-17 09:21:41.708 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  3974. 2017-10-17 09:21:41.742 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 57
  3975. 2017-10-17 09:22:24.815 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3976. 2017-10-17 09:22:24.815 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3977. 2017-10-17 09:22:24.815 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3978. 2017-10-17 09:22:24.815 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3979. 2017-10-17 09:22:24.815 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3980. 2017-10-17 09:22:24.846 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3981. 2017-10-17 09:22:24.846 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3982. 2017-10-17 09:22:24.850 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3983. 2017-10-17 09:22:24.850 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3984. 2017-10-17 09:22:24.850 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3985. 2017-10-17 09:22:24.851 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3986. 2017-10-17 09:22:24.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3987. 2017-10-17 09:22:24.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3988. 2017-10-17 09:22:24.863 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3989. 2017-10-17 09:22:24.864 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3990. 2017-10-17 09:22:24.880 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3991. 2017-10-17 09:22:24.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3992. 2017-10-17 09:22:24.881 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3993. 2017-10-17 09:22:24.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3994. 2017-10-17 09:22:24.881 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3995. 2017-10-17 09:22:24.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3996. 2017-10-17 09:22:24.881 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3997. 2017-10-17 09:22:24.882 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3998. 2017-10-17 09:22:24.882 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3999. 2017-10-17 09:22:24.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4000. 2017-10-17 09:22:24.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4001. 2017-10-17 09:22:24.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4002. 2017-10-17 09:22:24.892 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4003. 2017-10-17 09:22:24.893 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4004. 2017-10-17 09:22:24.894 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4005. 2017-10-17 09:22:24.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4006. 2017-10-17 09:22:24.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4007. 2017-10-17 09:22:24.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4008. 2017-10-17 09:22:24.923 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4009. 2017-10-17 09:22:24.924 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4010. 2017-10-17 09:22:24.924 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4011. 2017-10-17 09:22:24.924 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4012. 2017-10-17 09:22:24.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4013. 2017-10-17 09:22:24.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4014. 2017-10-17 09:22:24.926 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4015. 2017-10-17 09:22:24.926 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4016. 2017-10-17 09:22:24.926 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4017. 2017-10-17 09:22:24.926 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4018. 2017-10-17 09:22:24.926 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4019. 2017-10-17 09:22:24.927 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4020. 2017-10-17 09:22:24.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4021. 2017-10-17 09:22:24.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4022. 2017-10-17 09:22:24.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4023. 2017-10-17 09:22:24.959 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4024. 2017-10-17 09:22:24.959 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4025. 2017-10-17 09:22:24.989 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4026. 2017-10-17 09:22:24.990 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4027. 2017-10-17 09:22:25.004 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4028. 2017-10-17 09:22:25.005 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4029. 2017-10-17 09:22:25.006 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4030. 2017-10-17 09:22:25.007 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4031. 2017-10-17 09:22:25.007 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4032. 2017-10-17 09:22:25.008 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4033. 2017-10-17 09:22:25.009 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4034. 2017-10-17 09:22:25.010 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4035. 2017-10-17 09:22:25.011 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4036. 2017-10-17 09:22:25.012 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4037. 2017-10-17 09:22:25.038 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  4038. 2017-10-17 09:22:25.039 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4039. 2017-10-17 09:22:25.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  4040. 2017-10-17 09:22:25.043 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4041. 2017-10-17 09:22:25.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4042. 2017-10-17 09:22:25.044 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4043. 2017-10-17 09:22:25.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4044. 2017-10-17 09:22:25.071 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4045. 2017-10-17 09:22:25.071 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  4046. 2017-10-17 09:22:25.085 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  4047. 2017-10-17 09:22:25.086 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4048. 2017-10-17 09:22:25.086 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4049. 2017-10-17 09:22:25.132 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4050. 2017-10-17 09:22:25.182 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4051. 2017-10-17 09:22:25.182 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4052. 2017-10-17 09:22:25.182 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4053. 2017-10-17 09:22:25.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4054. 2017-10-17 09:22:25.211 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4055. 2017-10-17 09:22:25.213 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4056. 2017-10-17 09:22:25.214 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4057. 2017-10-17 09:22:25.215 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4058. 2017-10-17 09:22:25.215 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4059. 2017-10-17 09:22:25.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4060. 2017-10-17 09:22:25.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4061. 2017-10-17 09:22:25.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4062. 2017-10-17 09:22:25.243 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4063. 2017-10-17 09:22:25.244 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4064. 2017-10-17 09:22:25.244 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4065. 2017-10-17 09:22:25.245 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4066. 2017-10-17 09:22:25.245 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4067. 2017-10-17 09:22:25.246 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4068. 2017-10-17 09:22:25.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4069. 2017-10-17 09:22:25.286 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4070. 2017-10-17 09:22:25.287 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4071. 2017-10-17 09:22:25.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4072. 2017-10-17 09:22:25.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4073. 2017-10-17 09:22:25.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4074. 2017-10-17 09:22:25.289 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4075. 2017-10-17 09:22:25.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4076. 2017-10-17 09:22:25.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4077. 2017-10-17 09:22:25.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4078. 2017-10-17 09:22:25.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4079. 2017-10-17 09:22:25.318 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4080. 2017-10-17 09:22:25.344 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4081. 2017-10-17 09:22:25.344 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4082. 2017-10-17 09:22:25.346 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4083. 2017-10-17 09:22:25.346 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4084. 2017-10-17 09:22:25.346 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4085. 2017-10-17 09:22:25.347 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4086. 2017-10-17 09:22:25.347 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4087. 2017-10-17 09:22:25.347 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  4088. 2017-10-17 09:22:25.348 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4089. 2017-10-17 09:22:25.348 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  4090. 2017-10-17 09:22:25.349 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4091. 2017-10-17 09:22:25.349 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4092. 2017-10-17 09:22:25.383 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4093. 2017-10-17 09:22:25.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  4094. 2017-10-17 09:22:25.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4095. 2017-10-17 09:22:25.392 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4096. 2017-10-17 09:22:25.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4097. 2017-10-17 09:22:25.425 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4098. 2017-10-17 09:22:25.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4099. 2017-10-17 09:22:25.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4100. 2017-10-17 09:22:25.455 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4101. 2017-10-17 09:22:25.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4102. 2017-10-17 09:22:25.499 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4103. 2017-10-17 09:22:25.499 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4104. 2017-10-17 09:22:25.527 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4105. 2017-10-17 09:22:25.560 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4106. 2017-10-17 09:22:25.561 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4107. 2017-10-17 09:22:25.566 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4108. 2017-10-17 09:22:25.566 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4109. 2017-10-17 09:22:25.655 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  4110. 2017-10-17 09:22:25.681 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4111. 2017-10-17 09:22:25.713 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4112. 2017-10-17 09:22:25.714 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4113. 2017-10-17 09:22:25.742 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4114. 2017-10-17 09:22:25.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4115. 2017-10-17 09:22:25.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4116. 2017-10-17 09:22:25.788 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4117. 2017-10-17 09:22:25.789 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4118. 2017-10-17 09:22:25.789 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4119. 2017-10-17 09:22:25.817 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4120. 2017-10-17 09:22:25.847 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4121. 2017-10-17 09:22:25.848 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4122. 2017-10-17 09:22:25.851 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4123. 2017-10-17 09:22:25.852 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4124. 2017-10-17 09:22:25.880 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  4125. 2017-10-17 09:22:25.931 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4126. 2017-10-17 09:22:25.970 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4127. 2017-10-17 09:22:25.971 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4128. 2017-10-17 09:22:26.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4129. 2017-10-17 09:22:26.002 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4130. 2017-10-17 09:22:26.003 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4131. 2017-10-17 09:22:26.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4132. 2017-10-17 09:22:26.047 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4133. 2017-10-17 09:22:26.048 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4134. 2017-10-17 09:22:26.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4135. 2017-10-17 09:22:26.107 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4136. 2017-10-17 09:22:26.109 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4137. 2017-10-17 09:22:26.111 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  4138. 2017-10-17 09:22:26.112 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  4139. 2017-10-17 09:22:26.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 58
  4140. 2017-10-17 09:22:27.638 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4141. 2017-10-17 09:22:27.668 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4142. 2017-10-17 09:22:27.669 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4143. 2017-10-17 09:22:27.699 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4144. 2017-10-17 09:22:27.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4145. 2017-10-17 09:22:27.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4146. 2017-10-17 09:22:27.754 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4147. 2017-10-17 09:22:27.755 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4148. 2017-10-17 09:22:27.755 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4149. 2017-10-17 09:22:27.782 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4150. 2017-10-17 09:22:27.824 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4151. 2017-10-17 09:22:27.826 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4152. 2017-10-17 09:22:27.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4153. 2017-10-17 09:22:27.834 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4154. 2017-10-17 09:22:27.862 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4155. 2017-10-17 09:22:29.828 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4156. 2017-10-17 09:22:29.865 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4157. 2017-10-17 09:22:29.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4158. 2017-10-17 09:22:29.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4159. 2017-10-17 09:22:29.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4160. 2017-10-17 09:22:29.899 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4161. 2017-10-17 09:22:29.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4162. 2017-10-17 09:22:29.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4163. 2017-10-17 09:22:29.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4164. 2017-10-17 09:22:29.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4165. 2017-10-17 09:22:30.028 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4166. 2017-10-17 09:22:30.031 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4167. 2017-10-17 09:22:30.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  4168. 2017-10-17 09:22:30.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4169. 2017-10-17 09:22:30.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  4170. 2017-10-17 09:22:38.654 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4171. 2017-10-17 09:22:38.686 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4172. 2017-10-17 09:22:38.687 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4173. 2017-10-17 09:22:38.716 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4174. 2017-10-17 09:22:38.718 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4175. 2017-10-17 09:22:38.718 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4176. 2017-10-17 09:22:38.764 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4177. 2017-10-17 09:22:38.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4178. 2017-10-17 09:22:38.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4179. 2017-10-17 09:22:38.794 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4180. 2017-10-17 09:22:38.841 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4181. 2017-10-17 09:22:38.843 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4182. 2017-10-17 09:22:38.848 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Preparing: INSERT INTO sys_permission (name,description,pid,type,resourceid,status) VALUES (?,?,?,?,?,?)
  4183. 2017-10-17 09:22:38.850 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Parameters: 已提交无效任务(String), (String), 82(Integer), 1(Integer), 74(Integer), 1(Integer)
  4184. 2017-10-17 09:22:38.917 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| <== Updates: 1
  4185. 2017-10-17 09:22:41.134 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4186. 2017-10-17 09:22:41.164 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4187. 2017-10-17 09:22:41.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4188. 2017-10-17 09:22:41.196 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4189. 2017-10-17 09:22:41.198 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4190. 2017-10-17 09:22:41.198 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4191. 2017-10-17 09:22:41.243 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4192. 2017-10-17 09:22:41.244 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4193. 2017-10-17 09:22:41.245 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4194. 2017-10-17 09:22:41.272 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4195. 2017-10-17 09:22:41.316 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4196. 2017-10-17 09:22:41.317 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4197. 2017-10-17 09:22:41.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  4198. 2017-10-17 09:22:41.320 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  4199. 2017-10-17 09:22:41.349 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 59
  4200. 2017-10-17 09:22:44.104 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4201. 2017-10-17 09:22:44.134 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4202. 2017-10-17 09:22:44.134 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4203. 2017-10-17 09:22:44.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4204. 2017-10-17 09:22:44.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4205. 2017-10-17 09:22:44.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4206. 2017-10-17 09:22:44.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4207. 2017-10-17 09:22:44.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4208. 2017-10-17 09:22:44.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4209. 2017-10-17 09:22:44.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4210. 2017-10-17 09:22:44.312 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4211. 2017-10-17 09:22:44.314 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4212. 2017-10-17 09:22:44.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4213. 2017-10-17 09:22:44.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4214. 2017-10-17 09:22:44.347 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4215. 2017-10-17 09:22:45.054 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4216. 2017-10-17 09:22:45.099 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4217. 2017-10-17 09:22:45.100 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4218. 2017-10-17 09:22:45.129 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4219. 2017-10-17 09:22:45.131 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4220. 2017-10-17 09:22:45.132 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4221. 2017-10-17 09:22:45.175 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4222. 2017-10-17 09:22:45.176 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4223. 2017-10-17 09:22:45.176 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4224. 2017-10-17 09:22:45.204 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4225. 2017-10-17 09:22:45.254 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4226. 2017-10-17 09:22:45.256 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4227. 2017-10-17 09:22:45.288 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  4228. 2017-10-17 09:22:45.288 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4229. 2017-10-17 09:22:45.331 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  4230. 2017-10-17 09:22:53.262 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4231. 2017-10-17 09:22:53.321 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4232. 2017-10-17 09:22:53.321 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4233. 2017-10-17 09:22:53.351 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4234. 2017-10-17 09:22:53.351 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4235. 2017-10-17 09:22:53.352 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4236. 2017-10-17 09:22:53.397 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4237. 2017-10-17 09:22:53.398 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4238. 2017-10-17 09:22:53.398 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4239. 2017-10-17 09:22:53.427 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4240. 2017-10-17 09:22:53.485 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4241. 2017-10-17 09:22:53.486 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4242. 2017-10-17 09:22:53.488 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Preparing: INSERT INTO sys_permission (name,description,pid,type,resourceid,status) VALUES (?,?,?,?,?,?)
  4243. 2017-10-17 09:22:53.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Parameters: 无效任务(String), (String), 82(Integer), 1(Integer), 72(Integer), 1(Integer)
  4244. 2017-10-17 09:22:53.559 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| <== Updates: 1
  4245. 2017-10-17 09:22:55.771 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4246. 2017-10-17 09:22:55.814 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4247. 2017-10-17 09:22:55.816 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4248. 2017-10-17 09:22:55.846 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4249. 2017-10-17 09:22:55.849 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4250. 2017-10-17 09:22:55.850 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4251. 2017-10-17 09:22:55.933 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4252. 2017-10-17 09:22:55.935 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4253. 2017-10-17 09:22:55.935 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4254. 2017-10-17 09:22:55.985 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4255. 2017-10-17 09:22:56.026 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4256. 2017-10-17 09:22:56.028 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4257. 2017-10-17 09:22:56.030 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  4258. 2017-10-17 09:22:56.031 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  4259. 2017-10-17 09:22:56.064 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 60
  4260. 2017-10-17 09:22:57.346 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4261. 2017-10-17 09:22:57.392 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4262. 2017-10-17 09:22:57.393 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4263. 2017-10-17 09:22:57.424 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4264. 2017-10-17 09:22:57.425 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4265. 2017-10-17 09:22:57.426 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4266. 2017-10-17 09:22:57.467 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4267. 2017-10-17 09:22:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4268. 2017-10-17 09:22:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4269. 2017-10-17 09:22:57.497 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4270. 2017-10-17 09:22:57.541 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4271. 2017-10-17 09:22:57.542 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4272. 2017-10-17 09:22:57.546 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4273. 2017-10-17 09:22:57.546 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4274. 2017-10-17 09:22:57.576 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4275. 2017-10-17 09:22:59.198 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4276. 2017-10-17 09:22:59.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4277. 2017-10-17 09:22:59.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4278. 2017-10-17 09:22:59.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4279. 2017-10-17 09:22:59.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4280. 2017-10-17 09:22:59.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4281. 2017-10-17 09:22:59.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4282. 2017-10-17 09:22:59.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4283. 2017-10-17 09:22:59.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4284. 2017-10-17 09:22:59.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4285. 2017-10-17 09:22:59.379 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4286. 2017-10-17 09:22:59.380 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4287. 2017-10-17 09:22:59.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  4288. 2017-10-17 09:22:59.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4289. 2017-10-17 09:22:59.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  4290. 2017-10-17 09:23:06.573 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4291. 2017-10-17 09:23:06.628 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4292. 2017-10-17 09:23:06.629 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4293. 2017-10-17 09:23:06.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4294. 2017-10-17 09:23:06.659 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4295. 2017-10-17 09:23:06.660 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4296. 2017-10-17 09:23:06.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4297. 2017-10-17 09:23:06.725 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4298. 2017-10-17 09:23:06.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4299. 2017-10-17 09:23:06.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4300. 2017-10-17 09:23:06.809 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4301. 2017-10-17 09:23:06.810 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4302. 2017-10-17 09:23:06.812 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Preparing: INSERT INTO sys_permission (name,description,pid,type,resourceid,status) VALUES (?,?,?,?,?,?)
  4303. 2017-10-17 09:23:06.812 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Parameters: 已确认无效任务(String), (String), 82(Integer), 1(Integer), 72(Integer), 1(Integer)
  4304. 2017-10-17 09:23:06.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| <== Updates: 1
  4305. 2017-10-17 09:23:09.087 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4306. 2017-10-17 09:23:09.150 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4307. 2017-10-17 09:23:09.150 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4308. 2017-10-17 09:23:09.186 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4309. 2017-10-17 09:23:09.187 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4310. 2017-10-17 09:23:09.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4311. 2017-10-17 09:23:09.239 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4312. 2017-10-17 09:23:09.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4313. 2017-10-17 09:23:09.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4314. 2017-10-17 09:23:09.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4315. 2017-10-17 09:23:09.337 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4316. 2017-10-17 09:23:09.339 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4317. 2017-10-17 09:23:09.341 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  4318. 2017-10-17 09:23:09.342 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  4319. 2017-10-17 09:23:09.373 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 61
  4320. 2017-10-17 09:23:10.558 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4321. 2017-10-17 09:23:10.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4322. 2017-10-17 09:23:10.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4323. 2017-10-17 09:23:10.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4324. 2017-10-17 09:23:10.633 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4325. 2017-10-17 09:23:10.634 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4326. 2017-10-17 09:23:10.665 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4327. 2017-10-17 09:23:10.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4328. 2017-10-17 09:23:10.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4329. 2017-10-17 09:23:10.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4330. 2017-10-17 09:23:10.744 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4331. 2017-10-17 09:23:10.746 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4332. 2017-10-17 09:23:10.750 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4333. 2017-10-17 09:23:10.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4334. 2017-10-17 09:23:10.778 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4335. 2017-10-17 09:23:11.636 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4336. 2017-10-17 09:23:11.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4337. 2017-10-17 09:23:11.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4338. 2017-10-17 09:23:11.709 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4339. 2017-10-17 09:23:11.710 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4340. 2017-10-17 09:23:11.711 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4341. 2017-10-17 09:23:11.743 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4342. 2017-10-17 09:23:11.743 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4343. 2017-10-17 09:23:11.744 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4344. 2017-10-17 09:23:11.772 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4345. 2017-10-17 09:23:11.814 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4346. 2017-10-17 09:23:11.815 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4347. 2017-10-17 09:23:11.859 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  4348. 2017-10-17 09:23:11.860 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4349. 2017-10-17 09:23:11.891 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  4350. 2017-10-17 09:23:17.162 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4351. 2017-10-17 09:23:17.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4352. 2017-10-17 09:23:17.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4353. 2017-10-17 09:23:17.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4354. 2017-10-17 09:23:17.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4355. 2017-10-17 09:23:17.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4356. 2017-10-17 09:23:17.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4357. 2017-10-17 09:23:17.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4358. 2017-10-17 09:23:17.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4359. 2017-10-17 09:23:17.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4360. 2017-10-17 09:23:17.372 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4361. 2017-10-17 09:23:17.373 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4362. 2017-10-17 09:23:17.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Preparing: INSERT INTO sys_permission (name,description,pid,type,resourceid,status) VALUES (?,?,?,?,?,?)
  4363. 2017-10-17 09:23:17.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| ==> Parameters: 已拒绝无效任务(String), (String), 82(Integer), 1(Integer), 73(Integer), 1(Integer)
  4364. 2017-10-17 09:23:17.436 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.insert [159] -| <== Updates: 1
  4365. 2017-10-17 09:23:19.654 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4366. 2017-10-17 09:23:19.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4367. 2017-10-17 09:23:19.695 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4368. 2017-10-17 09:23:19.725 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4369. 2017-10-17 09:23:19.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4370. 2017-10-17 09:23:19.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4371. 2017-10-17 09:23:19.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4372. 2017-10-17 09:23:19.759 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4373. 2017-10-17 09:23:19.759 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4374. 2017-10-17 09:23:19.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4375. 2017-10-17 09:23:19.851 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4376. 2017-10-17 09:23:19.852 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4377. 2017-10-17 09:23:19.854 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  4378. 2017-10-17 09:23:19.855 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  4379. 2017-10-17 09:23:19.885 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 62
  4380. 2017-10-17 09:23:21.175 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4381. 2017-10-17 09:23:21.248 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4382. 2017-10-17 09:23:21.249 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4383. 2017-10-17 09:23:21.278 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4384. 2017-10-17 09:23:21.279 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4385. 2017-10-17 09:23:21.280 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4386. 2017-10-17 09:23:21.327 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4387. 2017-10-17 09:23:21.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4388. 2017-10-17 09:23:21.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4389. 2017-10-17 09:23:21.356 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4390. 2017-10-17 09:23:21.413 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4391. 2017-10-17 09:23:21.415 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4392. 2017-10-17 09:23:21.420 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4393. 2017-10-17 09:23:21.420 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 85(Integer)
  4394. 2017-10-17 09:23:21.448 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4395. 2017-10-17 09:23:23.913 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4396. 2017-10-17 09:23:24.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4397. 2017-10-17 09:23:24.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4398. 2017-10-17 09:23:24.040 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4399. 2017-10-17 09:23:24.040 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4400. 2017-10-17 09:23:24.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4401. 2017-10-17 09:23:24.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4402. 2017-10-17 09:23:24.074 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4403. 2017-10-17 09:23:24.074 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4404. 2017-10-17 09:23:24.102 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4405. 2017-10-17 09:23:24.146 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4406. 2017-10-17 09:23:24.147 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4407. 2017-10-17 09:23:24.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.delete [159] -| ==> Preparing: delete from sys_permission WHERE id =?
  4408. 2017-10-17 09:23:24.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.delete [159] -| ==> Parameters: 85(Integer)
  4409. 2017-10-17 09:23:24.206 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.delete [159] -| <== Updates: 1
  4410. 2017-10-17 09:23:25.778 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4411. 2017-10-17 09:23:25.863 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4412. 2017-10-17 09:23:25.863 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4413. 2017-10-17 09:23:25.896 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4414. 2017-10-17 09:23:25.897 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4415. 2017-10-17 09:23:25.898 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4416. 2017-10-17 09:23:25.929 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4417. 2017-10-17 09:23:25.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4418. 2017-10-17 09:23:25.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4419. 2017-10-17 09:23:25.959 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4420. 2017-10-17 09:23:26.364 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4421. 2017-10-17 09:23:26.365 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4422. 2017-10-17 09:23:26.370 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4423. 2017-10-17 09:23:26.371 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4424. 2017-10-17 09:23:26.405 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4425. 2017-10-17 09:23:27.882 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4426. 2017-10-17 09:23:27.923 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4427. 2017-10-17 09:23:27.924 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4428. 2017-10-17 09:23:27.954 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4429. 2017-10-17 09:23:27.955 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4430. 2017-10-17 09:23:27.956 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4431. 2017-10-17 09:23:28.004 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4432. 2017-10-17 09:23:28.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4433. 2017-10-17 09:23:28.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4434. 2017-10-17 09:23:28.036 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4435. 2017-10-17 09:23:28.087 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4436. 2017-10-17 09:23:28.089 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4437. 2017-10-17 09:23:28.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4438. 2017-10-17 09:23:28.160 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4439. 2017-10-17 09:23:28.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4440. 2017-10-17 09:23:32.858 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4441. 2017-10-17 09:23:32.899 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4442. 2017-10-17 09:23:32.900 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4443. 2017-10-17 09:23:32.930 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4444. 2017-10-17 09:23:32.931 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4445. 2017-10-17 09:23:32.931 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4446. 2017-10-17 09:23:32.975 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 94
  4447. 2017-10-17 09:23:32.976 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4448. 2017-10-17 09:23:32.976 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4449. 2017-10-17 09:23:33.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4450. 2017-10-17 09:23:33.049 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4451. 2017-10-17 09:23:33.050 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4452. 2017-10-17 09:23:33.052 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Preparing: INSERT INTO sys_permission_role (role_id,permission_id,permission_type) VALUES (?,?,?)
  4453. 2017-10-17 09:23:33.053 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Parameters: 1(Integer), 82(Integer), 1(Integer)
  4454. 2017-10-17 09:23:33.108 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| <== Updates: 1
  4455. 2017-10-17 09:23:35.322 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4456. 2017-10-17 09:23:35.409 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4457. 2017-10-17 09:23:35.410 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4458. 2017-10-17 09:23:35.440 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4459. 2017-10-17 09:23:35.441 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4460. 2017-10-17 09:23:35.441 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4461. 2017-10-17 09:23:35.486 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 95
  4462. 2017-10-17 09:23:35.487 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4463. 2017-10-17 09:23:35.488 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4464. 2017-10-17 09:23:35.517 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4465. 2017-10-17 09:23:35.562 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4466. 2017-10-17 09:23:35.564 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4467. 2017-10-17 09:23:35.568 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4468. 2017-10-17 09:23:35.569 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4469. 2017-10-17 09:23:35.602 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4470. 2017-10-17 09:23:36.058 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4471. 2017-10-17 09:23:36.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4472. 2017-10-17 09:23:36.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4473. 2017-10-17 09:23:36.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4474. 2017-10-17 09:23:36.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4475. 2017-10-17 09:23:36.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4476. 2017-10-17 09:23:36.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 95
  4477. 2017-10-17 09:23:36.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4478. 2017-10-17 09:23:36.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4479. 2017-10-17 09:23:36.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4480. 2017-10-17 09:23:36.274 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4481. 2017-10-17 09:23:36.275 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4482. 2017-10-17 09:23:36.278 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4483. 2017-10-17 09:23:36.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 83(Integer)
  4484. 2017-10-17 09:23:36.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4485. 2017-10-17 09:23:37.340 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4486. 2017-10-17 09:23:37.415 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4487. 2017-10-17 09:23:37.415 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4488. 2017-10-17 09:23:37.445 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4489. 2017-10-17 09:23:37.446 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4490. 2017-10-17 09:23:37.447 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4491. 2017-10-17 09:23:37.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 95
  4492. 2017-10-17 09:23:37.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4493. 2017-10-17 09:23:37.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4494. 2017-10-17 09:23:37.519 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4495. 2017-10-17 09:23:37.561 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4496. 2017-10-17 09:23:37.562 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4497. 2017-10-17 09:23:37.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4498. 2017-10-17 09:23:37.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4499. 2017-10-17 09:23:37.634 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4500. 2017-10-17 09:23:40.931 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4501. 2017-10-17 09:23:41.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4502. 2017-10-17 09:23:41.041 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4503. 2017-10-17 09:23:41.074 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4504. 2017-10-17 09:23:41.075 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4505. 2017-10-17 09:23:41.075 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4506. 2017-10-17 09:23:41.127 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 95
  4507. 2017-10-17 09:23:41.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4508. 2017-10-17 09:23:41.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4509. 2017-10-17 09:23:41.160 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4510. 2017-10-17 09:23:41.232 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4511. 2017-10-17 09:23:41.233 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4512. 2017-10-17 09:23:41.235 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Preparing: INSERT INTO sys_permission_role (role_id,permission_id,permission_type) VALUES (?,?,?)
  4513. 2017-10-17 09:23:41.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Parameters: 1(Integer), 83(Integer), 1(Integer)
  4514. 2017-10-17 09:23:41.290 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| <== Updates: 1
  4515. 2017-10-17 09:23:42.881 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4516. 2017-10-17 09:23:43.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4517. 2017-10-17 09:23:43.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4518. 2017-10-17 09:23:43.043 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4519. 2017-10-17 09:23:43.044 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4520. 2017-10-17 09:23:43.044 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4521. 2017-10-17 09:23:43.092 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 96
  4522. 2017-10-17 09:23:43.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4523. 2017-10-17 09:23:43.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4524. 2017-10-17 09:23:43.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4525. 2017-10-17 09:23:43.204 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4526. 2017-10-17 09:23:43.207 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4527. 2017-10-17 09:23:43.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4528. 2017-10-17 09:23:43.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 84(Integer)
  4529. 2017-10-17 09:23:43.240 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4530. 2017-10-17 09:23:43.501 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4531. 2017-10-17 09:23:43.578 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4532. 2017-10-17 09:23:43.579 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4533. 2017-10-17 09:23:43.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4534. 2017-10-17 09:23:43.609 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4535. 2017-10-17 09:23:43.610 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4536. 2017-10-17 09:23:43.655 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 96
  4537. 2017-10-17 09:23:43.656 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4538. 2017-10-17 09:23:43.656 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4539. 2017-10-17 09:23:43.684 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4540. 2017-10-17 09:23:43.741 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4541. 2017-10-17 09:23:43.743 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4542. 2017-10-17 09:23:43.747 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4543. 2017-10-17 09:23:43.748 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 83(Integer)
  4544. 2017-10-17 09:23:43.778 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4545. 2017-10-17 09:23:44.661 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4546. 2017-10-17 09:23:44.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4547. 2017-10-17 09:23:44.754 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4548. 2017-10-17 09:23:44.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4549. 2017-10-17 09:23:44.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4550. 2017-10-17 09:23:44.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4551. 2017-10-17 09:23:44.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 96
  4552. 2017-10-17 09:23:44.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4553. 2017-10-17 09:23:44.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4554. 2017-10-17 09:23:44.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4555. 2017-10-17 09:23:46.012 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4556. 2017-10-17 09:23:46.013 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4557. 2017-10-17 09:23:46.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4558. 2017-10-17 09:23:46.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4559. 2017-10-17 09:23:46.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4560. 2017-10-17 09:23:49.280 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4561. 2017-10-17 09:23:49.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4562. 2017-10-17 09:23:49.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4563. 2017-10-17 09:23:49.343 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4564. 2017-10-17 09:23:49.344 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4565. 2017-10-17 09:23:49.344 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4566. 2017-10-17 09:23:49.391 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 96
  4567. 2017-10-17 09:23:49.392 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4568. 2017-10-17 09:23:49.392 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4569. 2017-10-17 09:23:49.423 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4570. 2017-10-17 09:23:49.469 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4571. 2017-10-17 09:23:49.470 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4572. 2017-10-17 09:23:49.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Preparing: INSERT INTO sys_permission_role (role_id,permission_id,permission_type) VALUES (?,?,?)
  4573. 2017-10-17 09:23:49.475 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Parameters: 1(Integer), 84(Integer), 1(Integer)
  4574. 2017-10-17 09:23:49.530 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| <== Updates: 1
  4575. 2017-10-17 09:23:51.744 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4576. 2017-10-17 09:23:51.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4577. 2017-10-17 09:23:51.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4578. 2017-10-17 09:23:51.807 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4579. 2017-10-17 09:23:51.808 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4580. 2017-10-17 09:23:51.809 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4581. 2017-10-17 09:23:51.895 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4582. 2017-10-17 09:23:51.896 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4583. 2017-10-17 09:23:51.896 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4584. 2017-10-17 09:23:51.953 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4585. 2017-10-17 09:23:51.999 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4586. 2017-10-17 09:23:52.000 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4587. 2017-10-17 09:23:52.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4588. 2017-10-17 09:23:52.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 84(Integer)
  4589. 2017-10-17 09:23:52.064 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4590. 2017-10-17 09:23:53.669 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4591. 2017-10-17 09:23:53.701 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4592. 2017-10-17 09:23:53.702 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4593. 2017-10-17 09:23:53.731 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4594. 2017-10-17 09:23:53.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4595. 2017-10-17 09:23:53.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4596. 2017-10-17 09:23:53.765 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4597. 2017-10-17 09:23:53.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4598. 2017-10-17 09:23:53.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4599. 2017-10-17 09:23:53.800 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4600. 2017-10-17 09:23:53.846 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4601. 2017-10-17 09:23:53.847 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4602. 2017-10-17 09:23:53.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4603. 2017-10-17 09:23:53.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 86(Integer)
  4604. 2017-10-17 09:23:53.879 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4605. 2017-10-17 09:23:54.593 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4606. 2017-10-17 09:23:54.625 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4607. 2017-10-17 09:23:54.626 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4608. 2017-10-17 09:23:54.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4609. 2017-10-17 09:23:54.659 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4610. 2017-10-17 09:23:54.659 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4611. 2017-10-17 09:23:54.692 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4612. 2017-10-17 09:23:54.693 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4613. 2017-10-17 09:23:54.694 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4614. 2017-10-17 09:23:54.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4615. 2017-10-17 09:23:54.768 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4616. 2017-10-17 09:23:54.770 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4617. 2017-10-17 09:23:54.776 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4618. 2017-10-17 09:23:54.776 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 83(Integer)
  4619. 2017-10-17 09:23:54.805 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4620. 2017-10-17 09:23:55.217 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4621. 2017-10-17 09:23:55.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4622. 2017-10-17 09:23:55.252 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4623. 2017-10-17 09:23:55.282 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4624. 2017-10-17 09:23:55.283 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4625. 2017-10-17 09:23:55.283 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4626. 2017-10-17 09:23:55.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4627. 2017-10-17 09:23:55.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4628. 2017-10-17 09:23:55.320 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4629. 2017-10-17 09:23:55.347 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4630. 2017-10-17 09:23:55.396 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4631. 2017-10-17 09:23:55.397 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4632. 2017-10-17 09:23:55.400 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4633. 2017-10-17 09:23:55.401 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 84(Integer)
  4634. 2017-10-17 09:23:55.444 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4635. 2017-10-17 09:23:57.019 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4636. 2017-10-17 09:23:57.055 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4637. 2017-10-17 09:23:57.055 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4638. 2017-10-17 09:23:57.085 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4639. 2017-10-17 09:23:57.086 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4640. 2017-10-17 09:23:57.086 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4641. 2017-10-17 09:23:57.119 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4642. 2017-10-17 09:23:57.120 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4643. 2017-10-17 09:23:57.120 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4644. 2017-10-17 09:23:57.149 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4645. 2017-10-17 09:23:57.194 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4646. 2017-10-17 09:23:57.195 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4647. 2017-10-17 09:23:57.199 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4648. 2017-10-17 09:23:57.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 84(Integer)
  4649. 2017-10-17 09:23:57.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4650. 2017-10-17 09:23:57.627 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4651. 2017-10-17 09:23:57.658 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4652. 2017-10-17 09:23:57.659 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4653. 2017-10-17 09:23:57.690 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4654. 2017-10-17 09:23:57.691 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4655. 2017-10-17 09:23:57.691 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4656. 2017-10-17 09:23:57.728 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4657. 2017-10-17 09:23:57.728 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4658. 2017-10-17 09:23:57.729 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4659. 2017-10-17 09:23:57.762 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4660. 2017-10-17 09:23:57.807 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4661. 2017-10-17 09:23:57.809 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4662. 2017-10-17 09:23:57.813 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4663. 2017-10-17 09:23:57.814 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 83(Integer)
  4664. 2017-10-17 09:23:57.842 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4665. 2017-10-17 09:23:58.603 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4666. 2017-10-17 09:23:58.635 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4667. 2017-10-17 09:23:58.636 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4668. 2017-10-17 09:23:58.665 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4669. 2017-10-17 09:23:58.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4670. 2017-10-17 09:23:58.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4671. 2017-10-17 09:23:58.697 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4672. 2017-10-17 09:23:58.698 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4673. 2017-10-17 09:23:58.699 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4674. 2017-10-17 09:23:58.726 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4675. 2017-10-17 09:23:58.771 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4676. 2017-10-17 09:23:58.773 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4677. 2017-10-17 09:23:58.778 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4678. 2017-10-17 09:23:58.779 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 84(Integer)
  4679. 2017-10-17 09:23:58.809 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4680. 2017-10-17 09:23:59.219 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4681. 2017-10-17 09:23:59.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4682. 2017-10-17 09:23:59.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4683. 2017-10-17 09:23:59.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4684. 2017-10-17 09:23:59.283 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4685. 2017-10-17 09:23:59.284 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4686. 2017-10-17 09:23:59.319 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4687. 2017-10-17 09:23:59.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4688. 2017-10-17 09:23:59.321 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4689. 2017-10-17 09:23:59.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4690. 2017-10-17 09:23:59.409 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4691. 2017-10-17 09:23:59.410 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4692. 2017-10-17 09:23:59.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4693. 2017-10-17 09:23:59.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 86(Integer)
  4694. 2017-10-17 09:23:59.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4695. 2017-10-17 09:24:01.117 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4696. 2017-10-17 09:24:01.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4697. 2017-10-17 09:24:01.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4698. 2017-10-17 09:24:01.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4699. 2017-10-17 09:24:01.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4700. 2017-10-17 09:24:01.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4701. 2017-10-17 09:24:01.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4702. 2017-10-17 09:24:01.221 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4703. 2017-10-17 09:24:01.222 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4704. 2017-10-17 09:24:01.250 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4705. 2017-10-17 09:24:01.296 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4706. 2017-10-17 09:24:01.298 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4707. 2017-10-17 09:24:01.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4708. 2017-10-17 09:24:01.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4709. 2017-10-17 09:24:01.368 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4710. 2017-10-17 09:24:04.289 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4711. 2017-10-17 09:24:04.321 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4712. 2017-10-17 09:24:04.322 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4713. 2017-10-17 09:24:04.353 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4714. 2017-10-17 09:24:04.354 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4715. 2017-10-17 09:24:04.355 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4716. 2017-10-17 09:24:04.389 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 97
  4717. 2017-10-17 09:24:04.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4718. 2017-10-17 09:24:04.393 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4719. 2017-10-17 09:24:04.421 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4720. 2017-10-17 09:24:04.467 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4721. 2017-10-17 09:24:04.468 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4722. 2017-10-17 09:24:04.470 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Preparing: INSERT INTO sys_permission_role (role_id,permission_id,permission_type) VALUES (?,?,?)
  4723. 2017-10-17 09:24:04.471 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Parameters: 1(Integer), 86(Integer), 1(Integer)
  4724. 2017-10-17 09:24:04.560 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| <== Updates: 1
  4725. 2017-10-17 09:24:06.236 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4726. 2017-10-17 09:24:06.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4727. 2017-10-17 09:24:06.268 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4728. 2017-10-17 09:24:06.307 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4729. 2017-10-17 09:24:06.308 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4730. 2017-10-17 09:24:06.309 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4731. 2017-10-17 09:24:06.354 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 98
  4732. 2017-10-17 09:24:06.355 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4733. 2017-10-17 09:24:06.355 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4734. 2017-10-17 09:24:06.407 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4735. 2017-10-17 09:24:06.470 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4736. 2017-10-17 09:24:06.471 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4737. 2017-10-17 09:24:06.476 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4738. 2017-10-17 09:24:06.477 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 87(Integer)
  4739. 2017-10-17 09:24:06.748 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4740. 2017-10-17 09:24:06.767 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4741. 2017-10-17 09:24:06.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4742. 2017-10-17 09:24:06.808 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4743. 2017-10-17 09:24:06.851 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4744. 2017-10-17 09:24:06.852 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4745. 2017-10-17 09:24:06.852 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4746. 2017-10-17 09:24:06.889 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 98
  4747. 2017-10-17 09:24:06.890 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4748. 2017-10-17 09:24:06.890 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4749. 2017-10-17 09:24:06.921 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4750. 2017-10-17 09:24:06.976 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4751. 2017-10-17 09:24:06.978 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4752. 2017-10-17 09:24:06.982 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4753. 2017-10-17 09:24:06.982 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 86(Integer)
  4754. 2017-10-17 09:24:07.018 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4755. 2017-10-17 09:24:08.713 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4756. 2017-10-17 09:24:08.745 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4757. 2017-10-17 09:24:08.745 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4758. 2017-10-17 09:24:08.775 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4759. 2017-10-17 09:24:08.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4760. 2017-10-17 09:24:08.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4761. 2017-10-17 09:24:08.846 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 98
  4762. 2017-10-17 09:24:08.847 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4763. 2017-10-17 09:24:08.847 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4764. 2017-10-17 09:24:08.919 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4765. 2017-10-17 09:24:08.964 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4766. 2017-10-17 09:24:08.965 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4767. 2017-10-17 09:24:08.968 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4768. 2017-10-17 09:24:08.968 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 86(Integer)
  4769. 2017-10-17 09:24:09.031 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4770. 2017-10-17 09:24:09.405 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4771. 2017-10-17 09:24:09.436 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4772. 2017-10-17 09:24:09.436 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4773. 2017-10-17 09:24:09.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4774. 2017-10-17 09:24:09.478 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4775. 2017-10-17 09:24:09.479 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4776. 2017-10-17 09:24:09.565 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 98
  4777. 2017-10-17 09:24:09.566 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4778. 2017-10-17 09:24:09.567 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4779. 2017-10-17 09:24:09.619 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4780. 2017-10-17 09:24:09.664 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4781. 2017-10-17 09:24:09.665 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4782. 2017-10-17 09:24:09.668 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4783. 2017-10-17 09:24:09.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 87(Integer)
  4784. 2017-10-17 09:24:09.724 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 0
  4785. 2017-10-17 09:24:11.667 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4786. 2017-10-17 09:24:11.698 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4787. 2017-10-17 09:24:11.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4788. 2017-10-17 09:24:11.730 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4789. 2017-10-17 09:24:11.731 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4790. 2017-10-17 09:24:11.731 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4791. 2017-10-17 09:24:11.786 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 98
  4792. 2017-10-17 09:24:11.787 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4793. 2017-10-17 09:24:11.788 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4794. 2017-10-17 09:24:11.823 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4795. 2017-10-17 09:24:11.870 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4796. 2017-10-17 09:24:11.871 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4797. 2017-10-17 09:24:11.915 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4798. 2017-10-17 09:24:11.916 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4799. 2017-10-17 09:24:11.948 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4800. 2017-10-17 09:24:15.116 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4801. 2017-10-17 09:24:15.148 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4802. 2017-10-17 09:24:15.148 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4803. 2017-10-17 09:24:15.178 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4804. 2017-10-17 09:24:15.180 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4805. 2017-10-17 09:24:15.180 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4806. 2017-10-17 09:24:15.229 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 98
  4807. 2017-10-17 09:24:15.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4808. 2017-10-17 09:24:15.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4809. 2017-10-17 09:24:15.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4810. 2017-10-17 09:24:15.305 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4811. 2017-10-17 09:24:15.306 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4812. 2017-10-17 09:24:15.308 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Preparing: INSERT INTO sys_permission_role (role_id,permission_id,permission_type) VALUES (?,?,?)
  4813. 2017-10-17 09:24:15.308 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| ==> Parameters: 1(Integer), 87(Integer), 1(Integer)
  4814. 2017-10-17 09:24:15.364 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.addrolepermision [159] -| <== Updates: 1
  4815. 2017-10-17 09:24:17.579 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4816. 2017-10-17 09:24:17.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4817. 2017-10-17 09:24:17.639 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4818. 2017-10-17 09:24:17.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4819. 2017-10-17 09:24:17.671 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4820. 2017-10-17 09:24:17.671 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4821. 2017-10-17 09:24:17.714 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4822. 2017-10-17 09:24:17.715 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4823. 2017-10-17 09:24:17.715 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4824. 2017-10-17 09:24:17.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4825. 2017-10-17 09:24:17.790 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4826. 2017-10-17 09:24:17.791 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4827. 2017-10-17 09:24:17.796 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4828. 2017-10-17 09:24:17.796 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 87(Integer)
  4829. 2017-10-17 09:24:17.828 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4830. 2017-10-17 09:24:19.650 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4831. 2017-10-17 09:24:19.684 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4832. 2017-10-17 09:24:19.685 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4833. 2017-10-17 09:24:19.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4834. 2017-10-17 09:24:19.716 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4835. 2017-10-17 09:24:19.716 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4836. 2017-10-17 09:24:19.759 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4837. 2017-10-17 09:24:19.760 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4838. 2017-10-17 09:24:19.761 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4839. 2017-10-17 09:24:19.790 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4840. 2017-10-17 09:24:19.836 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4841. 2017-10-17 09:24:19.837 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4842. 2017-10-17 09:24:19.841 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4843. 2017-10-17 09:24:19.842 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 82(Integer)
  4844. 2017-10-17 09:24:19.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4845. 2017-10-17 09:24:20.250 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4846. 2017-10-17 09:24:20.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4847. 2017-10-17 09:24:20.283 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4848. 2017-10-17 09:24:20.312 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4849. 2017-10-17 09:24:20.313 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4850. 2017-10-17 09:24:20.313 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4851. 2017-10-17 09:24:20.356 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4852. 2017-10-17 09:24:20.356 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4853. 2017-10-17 09:24:20.357 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4854. 2017-10-17 09:24:20.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4855. 2017-10-17 09:24:20.431 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4856. 2017-10-17 09:24:20.432 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4857. 2017-10-17 09:24:20.435 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4858. 2017-10-17 09:24:20.436 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 83(Integer)
  4859. 2017-10-17 09:24:20.471 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4860. 2017-10-17 09:24:20.788 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4861. 2017-10-17 09:24:20.821 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4862. 2017-10-17 09:24:20.822 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4863. 2017-10-17 09:24:20.851 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4864. 2017-10-17 09:24:20.852 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4865. 2017-10-17 09:24:20.852 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4866. 2017-10-17 09:24:20.897 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4867. 2017-10-17 09:24:20.898 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4868. 2017-10-17 09:24:20.898 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4869. 2017-10-17 09:24:20.937 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4870. 2017-10-17 09:24:20.981 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4871. 2017-10-17 09:24:20.982 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4872. 2017-10-17 09:24:20.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4873. 2017-10-17 09:24:20.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 84(Integer)
  4874. 2017-10-17 09:24:21.014 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4875. 2017-10-17 09:24:21.237 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4876. 2017-10-17 09:24:21.268 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4877. 2017-10-17 09:24:21.268 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4878. 2017-10-17 09:24:21.312 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4879. 2017-10-17 09:24:21.313 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4880. 2017-10-17 09:24:21.313 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4881. 2017-10-17 09:24:21.358 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4882. 2017-10-17 09:24:21.358 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4883. 2017-10-17 09:24:21.359 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4884. 2017-10-17 09:24:21.386 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4885. 2017-10-17 09:24:21.433 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4886. 2017-10-17 09:24:21.434 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4887. 2017-10-17 09:24:21.437 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4888. 2017-10-17 09:24:21.438 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 86(Integer)
  4889. 2017-10-17 09:24:21.465 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 1
  4890. 2017-10-17 09:24:21.735 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4891. 2017-10-17 09:24:21.766 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4892. 2017-10-17 09:24:21.766 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4893. 2017-10-17 09:24:21.796 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4894. 2017-10-17 09:24:21.797 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4895. 2017-10-17 09:24:21.797 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4896. 2017-10-17 09:24:21.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4897. 2017-10-17 09:24:21.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4898. 2017-10-17 09:24:21.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4899. 2017-10-17 09:24:21.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4900. 2017-10-17 09:24:21.923 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4901. 2017-10-17 09:24:21.924 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4902. 2017-10-17 09:24:21.929 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Preparing: select p.*,s.permission_type as 'mod' from sys_role p,(select * from sys_permission_role where permission_id=?) s where p.id=s.role_id
  4903. 2017-10-17 09:24:21.930 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| ==> Parameters: 19(Integer)
  4904. 2017-10-17 09:24:21.972 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByPermision [159] -| <== Total: 3
  4905. 2017-10-17 09:24:23.417 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4906. 2017-10-17 09:24:23.417 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4907. 2017-10-17 09:24:23.417 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4908. 2017-10-17 09:24:23.417 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4909. 2017-10-17 09:24:23.417 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4910. 2017-10-17 09:24:23.449 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4911. 2017-10-17 09:24:23.449 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4912. 2017-10-17 09:24:23.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4913. 2017-10-17 09:24:23.479 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4914. 2017-10-17 09:24:23.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4915. 2017-10-17 09:24:23.480 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4916. 2017-10-17 09:24:23.481 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4917. 2017-10-17 09:24:23.508 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4918. 2017-10-17 09:24:23.527 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4919. 2017-10-17 09:24:23.528 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4920. 2017-10-17 09:24:23.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4921. 2017-10-17 09:24:23.529 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4922. 2017-10-17 09:24:23.529 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4923. 2017-10-17 09:24:23.534 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4924. 2017-10-17 09:24:23.534 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4925. 2017-10-17 09:24:23.535 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4926. 2017-10-17 09:24:23.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4927. 2017-10-17 09:24:23.557 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4928. 2017-10-17 09:24:23.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4929. 2017-10-17 09:24:23.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4930. 2017-10-17 09:24:23.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4931. 2017-10-17 09:24:23.561 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4932. 2017-10-17 09:24:23.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4933. 2017-10-17 09:24:23.566 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4934. 2017-10-17 09:24:23.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4935. 2017-10-17 09:24:23.579 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4936. 2017-10-17 09:24:23.579 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4937. 2017-10-17 09:24:23.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4938. 2017-10-17 09:24:23.593 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4939. 2017-10-17 09:24:23.594 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4940. 2017-10-17 09:24:23.604 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4941. 2017-10-17 09:24:23.605 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4942. 2017-10-17 09:24:23.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4943. 2017-10-17 09:24:23.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4944. 2017-10-17 09:24:23.607 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4945. 2017-10-17 09:24:23.608 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4946. 2017-10-17 09:24:23.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4947. 2017-10-17 09:24:23.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4948. 2017-10-17 09:24:23.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4949. 2017-10-17 09:24:23.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4950. 2017-10-17 09:24:23.635 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4951. 2017-10-17 09:24:23.635 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4952. 2017-10-17 09:24:23.635 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4953. 2017-10-17 09:24:23.636 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4954. 2017-10-17 09:24:23.640 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4955. 2017-10-17 09:24:23.641 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4956. 2017-10-17 09:24:23.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4957. 2017-10-17 09:24:23.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4958. 2017-10-17 09:24:23.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4959. 2017-10-17 09:24:23.662 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  4960. 2017-10-17 09:24:23.662 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4961. 2017-10-17 09:24:23.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4962. 2017-10-17 09:24:23.676 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  4963. 2017-10-17 09:24:23.676 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4964. 2017-10-17 09:24:23.693 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4965. 2017-10-17 09:24:23.694 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4966. 2017-10-17 09:24:23.706 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4967. 2017-10-17 09:24:23.706 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  4968. 2017-10-17 09:24:23.707 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4969. 2017-10-17 09:24:23.707 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4970. 2017-10-17 09:24:23.708 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4971. 2017-10-17 09:24:23.712 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4972. 2017-10-17 09:24:23.713 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4973. 2017-10-17 09:24:23.730 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4974. 2017-10-17 09:24:23.730 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4975. 2017-10-17 09:24:23.737 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4976. 2017-10-17 09:24:23.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4977. 2017-10-17 09:24:23.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4978. 2017-10-17 09:24:23.757 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4979. 2017-10-17 09:24:23.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  4980. 2017-10-17 09:24:23.787 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4981. 2017-10-17 09:24:23.787 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4982. 2017-10-17 09:24:23.787 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4983. 2017-10-17 09:24:23.817 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4984. 2017-10-17 09:24:23.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4985. 2017-10-17 09:24:23.821 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4986. 2017-10-17 09:24:23.821 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4987. 2017-10-17 09:24:23.822 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4988. 2017-10-17 09:24:23.822 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4989. 2017-10-17 09:24:23.846 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4990. 2017-10-17 09:24:23.847 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4991. 2017-10-17 09:24:23.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4992. 2017-10-17 09:24:23.850 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4993. 2017-10-17 09:24:23.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4994. 2017-10-17 09:24:23.851 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4995. 2017-10-17 09:24:23.852 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4996. 2017-10-17 09:24:23.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4997. 2017-10-17 09:24:23.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4998. 2017-10-17 09:24:23.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  4999. 2017-10-17 09:24:23.882 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5000. 2017-10-17 09:24:23.882 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5001. 2017-10-17 09:24:23.884 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5002. 2017-10-17 09:24:23.885 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5003. 2017-10-17 09:24:23.885 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5004. 2017-10-17 09:24:23.887 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5005. 2017-10-17 09:24:23.888 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5006. 2017-10-17 09:24:23.888 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5007. 2017-10-17 09:24:23.913 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5008. 2017-10-17 09:24:23.913 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5009. 2017-10-17 09:24:23.914 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5010. 2017-10-17 09:24:23.946 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5011. 2017-10-17 09:24:23.946 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5012. 2017-10-17 09:24:23.947 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5013. 2017-10-17 09:24:23.947 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5014. 2017-10-17 09:24:23.949 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5015. 2017-10-17 09:24:23.949 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5016. 2017-10-17 09:24:23.949 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5017. 2017-10-17 09:24:23.950 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5018. 2017-10-17 09:24:23.960 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5019. 2017-10-17 09:24:23.961 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5020. 2017-10-17 09:24:23.963 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5021. 2017-10-17 09:24:23.964 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5022. 2017-10-17 09:24:23.979 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5023. 2017-10-17 09:24:23.984 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5024. 2017-10-17 09:24:23.994 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5025. 2017-10-17 09:24:24.002 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5026. 2017-10-17 09:24:24.033 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5027. 2017-10-17 09:24:24.034 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5028. 2017-10-17 09:24:24.061 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5029. 2017-10-17 09:24:24.062 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5030. 2017-10-17 09:24:24.063 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5031. 2017-10-17 09:24:24.109 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5032. 2017-10-17 09:24:24.110 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5033. 2017-10-17 09:24:24.110 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5034. 2017-10-17 09:24:24.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5035. 2017-10-17 09:24:24.178 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5036. 2017-10-17 09:24:24.180 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5037. 2017-10-17 09:24:24.185 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5038. 2017-10-17 09:24:24.185 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5039. 2017-10-17 09:24:24.342 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  5040. 2017-10-17 09:24:24.366 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5041. 2017-10-17 09:24:24.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5042. 2017-10-17 09:24:24.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5043. 2017-10-17 09:24:24.425 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5044. 2017-10-17 09:24:24.426 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5045. 2017-10-17 09:24:24.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5046. 2017-10-17 09:24:24.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5047. 2017-10-17 09:24:24.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5048. 2017-10-17 09:24:24.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5049. 2017-10-17 09:24:24.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5050. 2017-10-17 09:24:24.544 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5051. 2017-10-17 09:24:24.545 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5052. 2017-10-17 09:24:24.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5053. 2017-10-17 09:24:24.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5054. 2017-10-17 09:24:24.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5055. 2017-10-17 09:24:24.630 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5056. 2017-10-17 09:24:24.663 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5057. 2017-10-17 09:24:24.663 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5058. 2017-10-17 09:24:24.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5059. 2017-10-17 09:24:24.692 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5060. 2017-10-17 09:24:24.693 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5061. 2017-10-17 09:24:24.740 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5062. 2017-10-17 09:24:24.741 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5063. 2017-10-17 09:24:24.742 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5064. 2017-10-17 09:24:24.770 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5065. 2017-10-17 09:24:24.804 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5066. 2017-10-17 09:24:24.805 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5067. 2017-10-17 09:24:24.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Preparing: SELECT id,name,description,pid,type,resourceid,status FROM sys_permission where 1=1
  5068. 2017-10-17 09:24:24.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| ==> Parameters:
  5069. 2017-10-17 09:24:24.839 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.getPermission [159] -| <== Total: 61
  5070. 2017-10-17 09:24:26.537 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5071. 2017-10-17 09:24:26.570 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5072. 2017-10-17 09:24:26.571 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5073. 2017-10-17 09:24:26.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5074. 2017-10-17 09:24:26.601 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5075. 2017-10-17 09:24:26.601 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5076. 2017-10-17 09:24:26.646 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5077. 2017-10-17 09:24:26.647 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5078. 2017-10-17 09:24:26.647 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5079. 2017-10-17 09:24:26.675 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5080. 2017-10-17 09:24:26.722 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5081. 2017-10-17 09:24:26.724 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5082. 2017-10-17 09:24:26.786 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5083. 2017-10-17 09:24:26.787 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5084. 2017-10-17 09:24:26.824 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5085. 2017-10-17 09:24:26.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5086. 2017-10-17 09:24:26.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5087. 2017-10-17 09:24:26.889 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5088. 2017-10-17 09:24:27.213 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5089. 2017-10-17 09:24:27.246 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5090. 2017-10-17 09:24:27.247 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5091. 2017-10-17 09:24:27.278 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5092. 2017-10-17 09:24:27.281 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5093. 2017-10-17 09:24:27.282 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5094. 2017-10-17 09:24:27.332 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5095. 2017-10-17 09:24:27.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5096. 2017-10-17 09:24:27.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5097. 2017-10-17 09:24:27.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5098. 2017-10-17 09:24:27.407 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5099. 2017-10-17 09:24:27.408 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5100. 2017-10-17 09:24:27.451 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5101. 2017-10-17 09:24:27.452 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5102. 2017-10-17 09:24:27.492 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5103. 2017-10-17 09:24:27.496 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5104. 2017-10-17 09:24:27.498 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5105. 2017-10-17 09:24:27.541 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5106. 2017-10-17 09:24:28.117 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5107. 2017-10-17 09:24:28.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5108. 2017-10-17 09:24:28.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5109. 2017-10-17 09:24:28.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5110. 2017-10-17 09:24:28.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5111. 2017-10-17 09:24:28.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5112. 2017-10-17 09:24:28.226 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5113. 2017-10-17 09:24:28.228 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5114. 2017-10-17 09:24:28.229 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5115. 2017-10-17 09:24:28.260 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5116. 2017-10-17 09:24:28.309 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5117. 2017-10-17 09:24:28.310 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5118. 2017-10-17 09:24:28.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5119. 2017-10-17 09:24:28.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  5120. 2017-10-17 09:24:28.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5121. 2017-10-17 09:24:28.634 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5122. 2017-10-17 09:24:28.634 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  5123. 2017-10-17 09:24:28.933 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5124. 2017-10-17 09:24:29.056 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5125. 2017-10-17 09:24:29.088 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5126. 2017-10-17 09:24:29.088 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5127. 2017-10-17 09:24:29.120 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5128. 2017-10-17 09:24:29.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5129. 2017-10-17 09:24:29.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5130. 2017-10-17 09:24:29.162 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5131. 2017-10-17 09:24:29.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5132. 2017-10-17 09:24:29.165 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5133. 2017-10-17 09:24:29.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5134. 2017-10-17 09:24:29.243 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5135. 2017-10-17 09:24:29.245 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5136. 2017-10-17 09:24:29.286 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5137. 2017-10-17 09:24:29.287 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  5138. 2017-10-17 09:24:29.324 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5139. 2017-10-17 09:24:29.331 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5140. 2017-10-17 09:24:29.331 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  5141. 2017-10-17 09:24:29.383 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  5142. 2017-10-17 09:24:36.258 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5143. 2017-10-17 09:24:36.297 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5144. 2017-10-17 09:24:36.298 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5145. 2017-10-17 09:24:36.336 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5146. 2017-10-17 09:24:36.337 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5147. 2017-10-17 09:24:36.338 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5148. 2017-10-17 09:24:36.379 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5149. 2017-10-17 09:24:36.380 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5150. 2017-10-17 09:24:36.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5151. 2017-10-17 09:24:36.411 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5152. 2017-10-17 09:24:36.457 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5153. 2017-10-17 09:24:36.458 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5154. 2017-10-17 09:24:36.501 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5155. 2017-10-17 09:24:36.502 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5156. 2017-10-17 09:24:36.540 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5157. 2017-10-17 09:24:36.543 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5158. 2017-10-17 09:24:36.543 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5159. 2017-10-17 09:24:36.583 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5160. 2017-10-17 09:25:05.082 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5161. 2017-10-17 09:25:05.082 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5162. 2017-10-17 09:25:05.082 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5163. 2017-10-17 09:25:05.083 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5164. 2017-10-17 09:25:05.083 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5165. 2017-10-17 09:25:05.118 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5166. 2017-10-17 09:25:05.118 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5167. 2017-10-17 09:25:05.119 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5168. 2017-10-17 09:25:05.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5169. 2017-10-17 09:25:05.119 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5170. 2017-10-17 09:25:05.120 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5171. 2017-10-17 09:25:05.150 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5172. 2017-10-17 09:25:05.151 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5173. 2017-10-17 09:25:05.151 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5174. 2017-10-17 09:25:05.164 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5175. 2017-10-17 09:25:05.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5176. 2017-10-17 09:25:05.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5177. 2017-10-17 09:25:05.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5178. 2017-10-17 09:25:05.178 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5179. 2017-10-17 09:25:05.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5180. 2017-10-17 09:25:05.179 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5181. 2017-10-17 09:25:05.179 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5182. 2017-10-17 09:25:05.179 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5183. 2017-10-17 09:25:05.179 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5184. 2017-10-17 09:25:05.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5185. 2017-10-17 09:25:05.193 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5186. 2017-10-17 09:25:05.193 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5187. 2017-10-17 09:25:05.196 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5188. 2017-10-17 09:25:05.196 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5189. 2017-10-17 09:25:05.197 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5190. 2017-10-17 09:25:05.199 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5191. 2017-10-17 09:25:05.200 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5192. 2017-10-17 09:25:05.200 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5193. 2017-10-17 09:25:05.211 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5194. 2017-10-17 09:25:05.212 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5195. 2017-10-17 09:25:05.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5196. 2017-10-17 09:25:05.212 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5197. 2017-10-17 09:25:05.213 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5198. 2017-10-17 09:25:05.213 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5199. 2017-10-17 09:25:05.223 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5200. 2017-10-17 09:25:05.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5201. 2017-10-17 09:25:05.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5202. 2017-10-17 09:25:05.238 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5203. 2017-10-17 09:25:05.239 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5204. 2017-10-17 09:25:05.240 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5205. 2017-10-17 09:25:05.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5206. 2017-10-17 09:25:05.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5207. 2017-10-17 09:25:05.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5208. 2017-10-17 09:25:05.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5209. 2017-10-17 09:25:05.278 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5210. 2017-10-17 09:25:05.284 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5211. 2017-10-17 09:25:05.286 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5212. 2017-10-17 09:25:05.291 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5213. 2017-10-17 09:25:05.292 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5214. 2017-10-17 09:25:05.303 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5215. 2017-10-17 09:25:05.304 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5216. 2017-10-17 09:25:05.319 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5217. 2017-10-17 09:25:05.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5218. 2017-10-17 09:25:05.321 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5219. 2017-10-17 09:25:05.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5220. 2017-10-17 09:25:05.325 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5221. 2017-10-17 09:25:05.325 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5222. 2017-10-17 09:25:05.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5223. 2017-10-17 09:25:05.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5224. 2017-10-17 09:25:05.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5225. 2017-10-17 09:25:05.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5226. 2017-10-17 09:25:05.355 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5227. 2017-10-17 09:25:05.358 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5228. 2017-10-17 09:25:05.386 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  5229. 2017-10-17 09:25:05.403 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  5230. 2017-10-17 09:25:05.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5231. 2017-10-17 09:25:05.447 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  5232. 2017-10-17 09:25:05.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5233. 2017-10-17 09:25:05.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5234. 2017-10-17 09:25:05.496 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5235. 2017-10-17 09:25:05.552 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5236. 2017-10-17 09:25:05.552 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5237. 2017-10-17 09:25:05.552 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5238. 2017-10-17 09:25:05.587 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5239. 2017-10-17 09:25:05.587 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5240. 2017-10-17 09:25:05.587 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5241. 2017-10-17 09:25:05.587 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5242. 2017-10-17 09:25:05.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5243. 2017-10-17 09:25:05.616 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5244. 2017-10-17 09:25:05.616 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5245. 2017-10-17 09:25:05.618 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5246. 2017-10-17 09:25:05.619 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5247. 2017-10-17 09:25:05.619 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5248. 2017-10-17 09:25:05.639 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5249. 2017-10-17 09:25:05.640 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5250. 2017-10-17 09:25:05.661 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5251. 2017-10-17 09:25:05.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5252. 2017-10-17 09:25:05.662 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5253. 2017-10-17 09:25:05.662 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5254. 2017-10-17 09:25:05.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5255. 2017-10-17 09:25:05.663 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5256. 2017-10-17 09:25:05.671 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5257. 2017-10-17 09:25:05.672 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5258. 2017-10-17 09:25:05.673 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5259. 2017-10-17 09:25:05.692 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5260. 2017-10-17 09:25:05.692 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5261. 2017-10-17 09:25:05.704 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5262. 2017-10-17 09:25:05.705 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5263. 2017-10-17 09:25:05.705 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5264. 2017-10-17 09:25:05.734 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5265. 2017-10-17 09:25:05.745 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5266. 2017-10-17 09:25:05.746 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5267. 2017-10-17 09:25:05.748 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5268. 2017-10-17 09:25:05.749 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5269. 2017-10-17 09:25:05.761 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5270. 2017-10-17 09:25:05.762 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5271. 2017-10-17 09:25:05.763 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5272. 2017-10-17 09:25:05.764 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5273. 2017-10-17 09:25:05.779 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5274. 2017-10-17 09:25:05.783 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5275. 2017-10-17 09:25:05.784 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5276. 2017-10-17 09:25:05.786 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5277. 2017-10-17 09:25:05.786 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5278. 2017-10-17 09:25:05.792 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5279. 2017-10-17 09:25:05.799 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5280. 2017-10-17 09:25:05.817 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5281. 2017-10-17 09:25:05.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5282. 2017-10-17 09:25:05.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5283. 2017-10-17 09:25:05.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5284. 2017-10-17 09:25:05.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5285. 2017-10-17 09:25:05.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5286. 2017-10-17 09:25:05.901 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5287. 2017-10-17 09:25:05.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5288. 2017-10-17 09:25:05.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5289. 2017-10-17 09:25:05.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5290. 2017-10-17 09:25:05.965 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5291. 2017-10-17 09:25:05.966 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5292. 2017-10-17 09:25:05.971 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5293. 2017-10-17 09:25:05.971 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5294. 2017-10-17 09:25:06.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  5295. 2017-10-17 09:25:06.095 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5296. 2017-10-17 09:25:06.127 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5297. 2017-10-17 09:25:06.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5298. 2017-10-17 09:25:06.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5299. 2017-10-17 09:25:06.160 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5300. 2017-10-17 09:25:06.160 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5301. 2017-10-17 09:25:06.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5302. 2017-10-17 09:25:06.192 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5303. 2017-10-17 09:25:06.192 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5304. 2017-10-17 09:25:06.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5305. 2017-10-17 09:25:06.257 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5306. 2017-10-17 09:25:06.258 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5307. 2017-10-17 09:25:06.261 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5308. 2017-10-17 09:25:06.261 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5309. 2017-10-17 09:25:06.289 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5310. 2017-10-17 09:25:06.390 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5311. 2017-10-17 09:25:06.423 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5312. 2017-10-17 09:25:06.424 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5313. 2017-10-17 09:25:06.458 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5314. 2017-10-17 09:25:06.459 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5315. 2017-10-17 09:25:06.460 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5316. 2017-10-17 09:25:06.493 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5317. 2017-10-17 09:25:06.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5318. 2017-10-17 09:25:06.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5319. 2017-10-17 09:25:06.523 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5320. 2017-10-17 09:25:06.559 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5321. 2017-10-17 09:25:06.560 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5322. 2017-10-17 09:25:06.601 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5323. 2017-10-17 09:25:06.602 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5324. 2017-10-17 09:25:06.641 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5325. 2017-10-17 09:25:06.642 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5326. 2017-10-17 09:25:06.643 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5327. 2017-10-17 09:25:06.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5328. 2017-10-17 09:30:24.345 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5329. 2017-10-17 09:30:24.346 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5330. 2017-10-17 09:30:24.349 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5331. 2017-10-17 09:30:24.349 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5332. 2017-10-17 09:30:24.349 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5333. 2017-10-17 09:30:24.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5334. 2017-10-17 09:30:24.639 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5335. 2017-10-17 09:30:24.648 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5336. 2017-10-17 09:30:24.648 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5337. 2017-10-17 09:30:24.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5338. 2017-10-17 09:30:24.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5339. 2017-10-17 09:30:24.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5340. 2017-10-17 09:30:24.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5341. 2017-10-17 09:30:24.696 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5342. 2017-10-17 09:30:24.696 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5343. 2017-10-17 09:30:24.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5344. 2017-10-17 09:30:24.703 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5345. 2017-10-17 09:30:24.709 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5346. 2017-10-17 09:30:24.710 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5347. 2017-10-17 09:30:24.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5348. 2017-10-17 09:30:24.726 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5349. 2017-10-17 09:30:24.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5350. 2017-10-17 09:30:24.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5351. 2017-10-17 09:30:24.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5352. 2017-10-17 09:30:24.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5353. 2017-10-17 09:30:24.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5354. 2017-10-17 09:30:24.752 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5355. 2017-10-17 09:30:24.752 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5356. 2017-10-17 09:30:24.758 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5357. 2017-10-17 09:30:24.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5358. 2017-10-17 09:30:24.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5359. 2017-10-17 09:30:24.763 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5360. 2017-10-17 09:30:24.791 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5361. 2017-10-17 09:30:24.792 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5362. 2017-10-17 09:30:24.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5363. 2017-10-17 09:30:24.793 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5364. 2017-10-17 09:30:24.793 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5365. 2017-10-17 09:30:24.793 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5366. 2017-10-17 09:30:24.793 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5367. 2017-10-17 09:30:24.823 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5368. 2017-10-17 09:30:24.830 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5369. 2017-10-17 09:30:24.832 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5370. 2017-10-17 09:30:24.833 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5371. 2017-10-17 09:30:24.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5372. 2017-10-17 09:30:24.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5373. 2017-10-17 09:30:24.842 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5374. 2017-10-17 09:30:24.843 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5375. 2017-10-17 09:30:24.862 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5376. 2017-10-17 09:30:24.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5377. 2017-10-17 09:30:24.863 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5378. 2017-10-17 09:30:24.867 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5379. 2017-10-17 09:30:24.868 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5380. 2017-10-17 09:30:24.900 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5381. 2017-10-17 09:30:24.900 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5382. 2017-10-17 09:30:24.900 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5383. 2017-10-17 09:30:24.901 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5384. 2017-10-17 09:30:24.928 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5385. 2017-10-17 09:30:24.943 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  5386. 2017-10-17 09:30:26.534 |-ERROR [http-nio-8089-exec-8] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] [181] -| Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
  5387. org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  5388. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)
  5389. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)
  5390. at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)
  5391. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:92)
  5392. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:79)
  5393. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:194)
  5394. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:169)
  5395. at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:91)
  5396. at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)
  5397. at com.xintong.system.securityTools.RedisCacheUtil.getUserByUserName(RedisCacheUtil.java:19)
  5398. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:60)
  5399. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5400. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  5401. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  5402. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  5403. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  5404. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5405. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  5406. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  5407. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5408. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  5409. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  5410. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  5411. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  5412. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5413. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  5414. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  5415. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  5416. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  5417. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  5418. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  5419. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  5420. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  5421. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5422. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  5423. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  5424. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  5425. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5426. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  5427. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  5428. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  5429. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5430. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  5431. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  5432. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  5433. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5434. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  5435. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  5436. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  5437. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  5438. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  5439. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  5440. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  5441. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  5442. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  5443. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  5444. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  5445. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  5446. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  5447. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  5448. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  5449. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  5450. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  5451. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  5452. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  5453. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  5454. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  5455. at java.lang.Thread.run(Thread.java:745)
  5456. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  5457. at redis.clients.util.Pool.getResource(Pool.java:53)
  5458. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
  5459. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
  5460. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:194)
  5461. ... 67 common frames omitted
  5462. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out
  5463. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202)
  5464. at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40)
  5465. at redis.clients.jedis.Protocol.process(Protocol.java:151)
  5466. at redis.clients.jedis.Protocol.read(Protocol.java:215)
  5467. at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
  5468. at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
  5469. at redis.clients.jedis.BinaryJedis.auth(BinaryJedis.java:2139)
  5470. at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:108)
  5471. at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:868)
  5472. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:435)
  5473. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
  5474. at redis.clients.util.Pool.getResource(Pool.java:49)
  5475. ... 70 common frames omitted
  5476. Caused by: java.net.SocketTimeoutException: Read timed out
  5477. at java.net.SocketInputStream.socketRead0(Native Method)
  5478. at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
  5479. at java.net.SocketInputStream.read(SocketInputStream.java:170)
  5480. at java.net.SocketInputStream.read(SocketInputStream.java:141)
  5481. at java.net.SocketInputStream.read(SocketInputStream.java:127)
  5482. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:196)
  5483. ... 81 common frames omitted
  5484. 2017-10-17 09:30:29.375 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5485. 2017-10-17 09:30:29.377 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5486. 2017-10-17 09:30:29.379 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5487. 2017-10-17 09:30:29.379 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5488. 2017-10-17 09:30:29.379 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5489. 2017-10-17 09:30:29.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5490. 2017-10-17 09:30:29.406 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5491. 2017-10-17 09:30:29.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5492. 2017-10-17 09:30:29.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5493. 2017-10-17 09:30:29.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5494. 2017-10-17 09:30:29.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5495. 2017-10-17 09:30:29.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5496. 2017-10-17 09:30:29.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5497. 2017-10-17 09:30:29.433 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5498. 2017-10-17 09:30:29.434 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5499. 2017-10-17 09:30:29.435 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5500. 2017-10-17 09:30:29.440 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5501. 2017-10-17 09:30:29.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5502. 2017-10-17 09:30:29.442 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5503. 2017-10-17 09:30:29.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5504. 2017-10-17 09:30:29.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5505. 2017-10-17 09:30:29.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5506. 2017-10-17 09:30:29.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5507. 2017-10-17 09:30:29.445 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5508. 2017-10-17 09:30:29.445 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5509. 2017-10-17 09:30:29.473 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5510. 2017-10-17 09:30:29.474 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5511. 2017-10-17 09:30:29.475 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5512. 2017-10-17 09:30:29.478 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5513. 2017-10-17 09:30:29.479 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5514. 2017-10-17 09:30:29.479 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5515. 2017-10-17 09:30:29.481 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5516. 2017-10-17 09:30:29.482 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5517. 2017-10-17 09:30:29.483 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5518. 2017-10-17 09:30:29.485 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5519. 2017-10-17 09:30:29.486 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5520. 2017-10-17 09:30:29.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5521. 2017-10-17 09:30:29.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5522. 2017-10-17 09:30:29.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5523. 2017-10-17 09:30:29.502 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5524. 2017-10-17 09:30:29.507 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5525. 2017-10-17 09:30:29.513 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5526. 2017-10-17 09:30:29.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5527. 2017-10-17 09:30:29.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5528. 2017-10-17 09:30:29.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5529. 2017-10-17 09:30:29.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5530. 2017-10-17 09:30:29.545 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5531. 2017-10-17 09:30:29.546 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5532. 2017-10-17 09:30:29.557 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5533. 2017-10-17 09:30:29.558 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5534. 2017-10-17 09:30:29.563 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5535. 2017-10-17 09:30:29.564 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5536. 2017-10-17 09:30:29.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5537. 2017-10-17 09:30:29.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5538. 2017-10-17 09:30:29.569 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5539. 2017-10-17 09:30:29.570 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5540. 2017-10-17 09:30:29.570 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5541. 2017-10-17 09:30:29.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5542. 2017-10-17 09:30:29.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5543. 2017-10-17 09:30:29.577 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5544. 2017-10-17 09:30:29.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5545. 2017-10-17 09:30:29.592 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5546. 2017-10-17 09:30:29.601 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5547. 2017-10-17 09:30:29.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5548. 2017-10-17 09:30:29.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5549. 2017-10-17 09:30:29.607 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5550. 2017-10-17 09:30:29.632 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5551. 2017-10-17 09:30:29.633 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5552. 2017-10-17 09:30:29.637 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  5553. 2017-10-17 09:30:29.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  5554. 2017-10-17 09:30:29.667 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5555. 2017-10-17 09:30:29.701 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  5556. 2017-10-17 09:30:29.703 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5557. 2017-10-17 09:30:29.703 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5558. 2017-10-17 09:30:29.736 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5559. 2017-10-17 09:30:29.793 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5560. 2017-10-17 09:30:29.793 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5561. 2017-10-17 09:30:29.793 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5562. 2017-10-17 09:30:29.822 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5563. 2017-10-17 09:30:29.822 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5564. 2017-10-17 09:30:29.824 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5565. 2017-10-17 09:30:29.824 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5566. 2017-10-17 09:30:29.825 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5567. 2017-10-17 09:30:29.825 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5568. 2017-10-17 09:30:29.855 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5569. 2017-10-17 09:30:29.855 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5570. 2017-10-17 09:30:29.855 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5571. 2017-10-17 09:30:29.864 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5572. 2017-10-17 09:30:29.865 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5573. 2017-10-17 09:30:29.865 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5574. 2017-10-17 09:30:29.865 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5575. 2017-10-17 09:30:29.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5576. 2017-10-17 09:30:29.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5577. 2017-10-17 09:30:29.887 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5578. 2017-10-17 09:30:29.888 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5579. 2017-10-17 09:30:29.888 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5580. 2017-10-17 09:30:29.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5581. 2017-10-17 09:30:29.910 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5582. 2017-10-17 09:30:29.910 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5583. 2017-10-17 09:30:29.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5584. 2017-10-17 09:30:29.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5585. 2017-10-17 09:30:29.912 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5586. 2017-10-17 09:30:29.932 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5587. 2017-10-17 09:30:29.938 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5588. 2017-10-17 09:30:29.939 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5589. 2017-10-17 09:30:29.973 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5590. 2017-10-17 09:30:29.974 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5591. 2017-10-17 09:30:29.976 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5592. 2017-10-17 09:30:29.976 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5593. 2017-10-17 09:30:29.977 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5594. 2017-10-17 09:30:29.978 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5595. 2017-10-17 09:30:29.979 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5596. 2017-10-17 09:30:29.979 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5597. 2017-10-17 09:30:29.982 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5598. 2017-10-17 09:30:29.983 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5599. 2017-10-17 09:30:29.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5600. 2017-10-17 09:30:29.985 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5601. 2017-10-17 09:30:30.005 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5602. 2017-10-17 09:30:30.005 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5603. 2017-10-17 09:30:30.016 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5604. 2017-10-17 09:30:30.024 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5605. 2017-10-17 09:30:30.054 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5606. 2017-10-17 09:30:30.055 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5607. 2017-10-17 09:30:30.086 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5608. 2017-10-17 09:30:30.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5609. 2017-10-17 09:30:30.088 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5610. 2017-10-17 09:30:30.134 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5611. 2017-10-17 09:30:30.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5612. 2017-10-17 09:30:30.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5613. 2017-10-17 09:30:30.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5614. 2017-10-17 09:30:30.194 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5615. 2017-10-17 09:30:30.195 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5616. 2017-10-17 09:30:30.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5617. 2017-10-17 09:30:30.202 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5618. 2017-10-17 09:30:30.307 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  5619. 2017-10-17 09:30:30.330 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5620. 2017-10-17 09:30:30.359 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5621. 2017-10-17 09:30:30.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5622. 2017-10-17 09:30:30.395 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5623. 2017-10-17 09:30:30.397 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5624. 2017-10-17 09:30:30.397 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5625. 2017-10-17 09:30:30.442 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5626. 2017-10-17 09:30:30.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5627. 2017-10-17 09:30:30.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5628. 2017-10-17 09:30:30.471 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5629. 2017-10-17 09:30:30.500 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5630. 2017-10-17 09:30:30.501 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5631. 2017-10-17 09:30:30.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5632. 2017-10-17 09:30:30.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5633. 2017-10-17 09:30:30.534 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5634. 2017-10-17 09:30:30.677 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5635. 2017-10-17 09:30:30.707 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5636. 2017-10-17 09:30:30.707 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5637. 2017-10-17 09:30:30.739 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5638. 2017-10-17 09:30:30.741 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5639. 2017-10-17 09:30:30.742 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5640. 2017-10-17 09:30:30.799 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5641. 2017-10-17 09:30:30.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5642. 2017-10-17 09:30:30.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5643. 2017-10-17 09:30:30.830 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5644. 2017-10-17 09:30:30.870 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5645. 2017-10-17 09:30:30.872 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5646. 2017-10-17 09:30:30.909 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5647. 2017-10-17 09:30:30.910 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5648. 2017-10-17 09:30:30.952 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5649. 2017-10-17 09:30:30.953 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5650. 2017-10-17 09:30:30.954 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5651. 2017-10-17 09:30:30.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5652. 2017-10-17 09:32:06.426 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5653. 2017-10-17 09:32:06.428 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5654. 2017-10-17 09:32:06.428 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5655. 2017-10-17 09:32:06.428 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5656. 2017-10-17 09:32:06.429 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5657. 2017-10-17 09:32:06.570 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5658. 2017-10-17 09:32:06.571 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5659. 2017-10-17 09:32:06.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5660. 2017-10-17 09:32:06.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5661. 2017-10-17 09:32:06.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5662. 2017-10-17 09:32:06.573 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5663. 2017-10-17 09:32:06.582 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5664. 2017-10-17 09:32:06.583 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5665. 2017-10-17 09:32:06.592 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5666. 2017-10-17 09:32:06.593 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5667. 2017-10-17 09:32:06.601 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5668. 2017-10-17 09:32:06.601 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5669. 2017-10-17 09:32:06.603 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5670. 2017-10-17 09:32:06.616 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5671. 2017-10-17 09:32:06.628 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5672. 2017-10-17 09:32:06.630 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5673. 2017-10-17 09:32:06.631 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5674. 2017-10-17 09:32:06.634 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5675. 2017-10-17 09:32:06.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5676. 2017-10-17 09:32:06.634 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5677. 2017-10-17 09:32:06.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5678. 2017-10-17 09:32:06.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5679. 2017-10-17 09:32:06.642 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5680. 2017-10-17 09:32:06.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5681. 2017-10-17 09:32:06.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5682. 2017-10-17 09:32:06.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5683. 2017-10-17 09:32:06.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5684. 2017-10-17 09:32:06.664 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5685. 2017-10-17 09:32:06.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5686. 2017-10-17 09:32:06.672 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5687. 2017-10-17 09:32:06.672 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5688. 2017-10-17 09:32:06.681 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5689. 2017-10-17 09:32:06.681 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5690. 2017-10-17 09:32:06.682 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5691. 2017-10-17 09:32:06.682 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5692. 2017-10-17 09:32:06.682 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5693. 2017-10-17 09:32:06.682 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5694. 2017-10-17 09:32:06.690 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5695. 2017-10-17 09:32:06.697 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5696. 2017-10-17 09:32:06.704 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5697. 2017-10-17 09:32:06.705 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5698. 2017-10-17 09:32:06.705 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5699. 2017-10-17 09:32:06.711 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5700. 2017-10-17 09:32:06.711 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5701. 2017-10-17 09:32:06.731 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5702. 2017-10-17 09:32:06.737 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5703. 2017-10-17 09:32:06.738 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5704. 2017-10-17 09:32:06.740 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5705. 2017-10-17 09:32:06.740 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5706. 2017-10-17 09:32:06.756 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5707. 2017-10-17 09:32:06.756 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5708. 2017-10-17 09:32:06.757 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5709. 2017-10-17 09:32:06.758 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5710. 2017-10-17 09:32:06.765 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5711. 2017-10-17 09:32:06.766 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5712. 2017-10-17 09:32:06.767 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5713. 2017-10-17 09:32:06.799 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5714. 2017-10-17 09:32:06.800 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5715. 2017-10-17 09:32:06.801 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  5716. 2017-10-17 09:32:06.801 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5717. 2017-10-17 09:32:06.803 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5718. 2017-10-17 09:32:06.803 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5719. 2017-10-17 09:32:06.835 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5720. 2017-10-17 09:32:06.836 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5721. 2017-10-17 09:32:06.842 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  5722. 2017-10-17 09:32:06.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  5723. 2017-10-17 09:32:06.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5724. 2017-10-17 09:32:06.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5725. 2017-10-17 09:32:06.878 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5726. 2017-10-17 09:32:06.908 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5727. 2017-10-17 09:32:06.968 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5728. 2017-10-17 09:32:06.970 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5729. 2017-10-17 09:32:06.970 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5730. 2017-10-17 09:32:07.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5731. 2017-10-17 09:32:07.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5732. 2017-10-17 09:32:07.008 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5733. 2017-10-17 09:32:07.009 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5734. 2017-10-17 09:32:07.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5735. 2017-10-17 09:32:07.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5736. 2017-10-17 09:32:07.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5737. 2017-10-17 09:32:07.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5738. 2017-10-17 09:32:07.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5739. 2017-10-17 09:32:07.036 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5740. 2017-10-17 09:32:07.037 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5741. 2017-10-17 09:32:07.037 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5742. 2017-10-17 09:32:07.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5743. 2017-10-17 09:32:07.042 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5744. 2017-10-17 09:32:07.042 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5745. 2017-10-17 09:32:07.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5746. 2017-10-17 09:32:07.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5747. 2017-10-17 09:32:07.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5748. 2017-10-17 09:32:07.085 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5749. 2017-10-17 09:32:07.086 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5750. 2017-10-17 09:32:07.087 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5751. 2017-10-17 09:32:07.092 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5752. 2017-10-17 09:32:07.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5753. 2017-10-17 09:32:07.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5754. 2017-10-17 09:32:07.098 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5755. 2017-10-17 09:32:07.115 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5756. 2017-10-17 09:32:07.121 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5757. 2017-10-17 09:32:07.140 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5758. 2017-10-17 09:32:07.142 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5759. 2017-10-17 09:32:07.143 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5760. 2017-10-17 09:32:07.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5761. 2017-10-17 09:32:07.151 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5762. 2017-10-17 09:32:07.152 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5763. 2017-10-17 09:32:07.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5764. 2017-10-17 09:32:07.154 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5765. 2017-10-17 09:32:07.166 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5766. 2017-10-17 09:32:07.167 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5767. 2017-10-17 09:32:07.168 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5768. 2017-10-17 09:32:07.168 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5769. 2017-10-17 09:32:07.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5770. 2017-10-17 09:32:07.180 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5771. 2017-10-17 09:32:07.199 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5772. 2017-10-17 09:32:07.207 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5773. 2017-10-17 09:32:07.238 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5774. 2017-10-17 09:32:07.239 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5775. 2017-10-17 09:32:07.271 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5776. 2017-10-17 09:32:07.271 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5777. 2017-10-17 09:32:07.272 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5778. 2017-10-17 09:32:07.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5779. 2017-10-17 09:32:07.323 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5780. 2017-10-17 09:32:07.323 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5781. 2017-10-17 09:32:07.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5782. 2017-10-17 09:32:07.384 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5783. 2017-10-17 09:32:07.385 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5784. 2017-10-17 09:32:07.391 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5785. 2017-10-17 09:32:07.391 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5786. 2017-10-17 09:32:07.505 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  5787. 2017-10-17 09:32:07.537 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5788. 2017-10-17 09:32:07.568 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5789. 2017-10-17 09:32:07.568 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5790. 2017-10-17 09:32:07.610 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5791. 2017-10-17 09:32:07.611 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5792. 2017-10-17 09:32:07.611 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5793. 2017-10-17 09:32:07.656 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5794. 2017-10-17 09:32:07.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5795. 2017-10-17 09:32:07.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5796. 2017-10-17 09:32:07.685 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5797. 2017-10-17 09:32:07.717 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5798. 2017-10-17 09:32:07.718 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5799. 2017-10-17 09:32:07.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5800. 2017-10-17 09:32:07.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5801. 2017-10-17 09:32:07.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5802. 2017-10-17 09:32:07.904 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5803. 2017-10-17 09:32:07.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5804. 2017-10-17 09:32:07.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5805. 2017-10-17 09:32:07.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5806. 2017-10-17 09:32:07.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5807. 2017-10-17 09:32:07.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5808. 2017-10-17 09:32:08.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5809. 2017-10-17 09:32:08.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5810. 2017-10-17 09:32:08.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5811. 2017-10-17 09:32:08.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5812. 2017-10-17 09:32:08.101 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5813. 2017-10-17 09:32:08.102 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5814. 2017-10-17 09:32:08.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5815. 2017-10-17 09:32:08.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5816. 2017-10-17 09:32:08.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5817. 2017-10-17 09:32:08.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5818. 2017-10-17 09:32:08.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5819. 2017-10-17 09:32:08.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5820. 2017-10-17 09:32:38.215 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5821. 2017-10-17 09:32:38.219 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5822. 2017-10-17 09:32:38.220 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5823. 2017-10-17 09:32:38.221 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5824. 2017-10-17 09:32:38.221 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5825. 2017-10-17 09:32:38.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5826. 2017-10-17 09:32:38.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5827. 2017-10-17 09:32:38.254 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5828. 2017-10-17 09:32:38.254 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5829. 2017-10-17 09:32:38.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5830. 2017-10-17 09:32:38.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5831. 2017-10-17 09:32:38.262 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5832. 2017-10-17 09:32:38.263 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5833. 2017-10-17 09:32:38.263 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5834. 2017-10-17 09:32:38.264 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5835. 2017-10-17 09:32:38.282 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5836. 2017-10-17 09:32:38.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5837. 2017-10-17 09:32:38.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5838. 2017-10-17 09:32:38.284 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5839. 2017-10-17 09:32:38.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5840. 2017-10-17 09:32:38.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5841. 2017-10-17 09:32:38.295 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5842. 2017-10-17 09:32:38.295 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5843. 2017-10-17 09:32:38.295 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5844. 2017-10-17 09:32:38.301 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5845. 2017-10-17 09:32:38.302 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5846. 2017-10-17 09:32:38.302 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5847. 2017-10-17 09:32:38.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5848. 2017-10-17 09:32:38.303 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5849. 2017-10-17 09:32:38.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5850. 2017-10-17 09:32:38.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5851. 2017-10-17 09:32:38.334 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5852. 2017-10-17 09:32:38.334 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5853. 2017-10-17 09:32:38.335 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5854. 2017-10-17 09:32:38.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5855. 2017-10-17 09:32:38.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5856. 2017-10-17 09:32:38.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5857. 2017-10-17 09:32:38.354 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5858. 2017-10-17 09:32:38.354 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5859. 2017-10-17 09:32:38.365 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5860. 2017-10-17 09:32:38.368 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5861. 2017-10-17 09:32:38.369 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5862. 2017-10-17 09:32:38.369 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5863. 2017-10-17 09:32:38.372 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5864. 2017-10-17 09:32:38.374 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5865. 2017-10-17 09:32:38.375 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5866. 2017-10-17 09:32:38.375 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5867. 2017-10-17 09:32:38.403 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5868. 2017-10-17 09:32:38.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5869. 2017-10-17 09:32:38.416 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5870. 2017-10-17 09:32:38.416 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5871. 2017-10-17 09:32:38.417 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5872. 2017-10-17 09:32:38.422 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5873. 2017-10-17 09:32:38.423 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5874. 2017-10-17 09:32:38.448 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5875. 2017-10-17 09:32:38.448 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5876. 2017-10-17 09:32:38.449 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5877. 2017-10-17 09:32:38.449 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5878. 2017-10-17 09:32:38.451 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5879. 2017-10-17 09:32:38.451 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5880. 2017-10-17 09:32:38.456 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5881. 2017-10-17 09:32:38.457 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5882. 2017-10-17 09:32:38.457 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5883. 2017-10-17 09:32:38.458 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5884. 2017-10-17 09:32:38.485 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5885. 2017-10-17 09:32:38.485 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5886. 2017-10-17 09:32:38.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  5887. 2017-10-17 09:32:38.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5888. 2017-10-17 09:32:38.499 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5889. 2017-10-17 09:32:38.505 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5890. 2017-10-17 09:32:38.515 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  5891. 2017-10-17 09:32:38.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  5892. 2017-10-17 09:32:38.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5893. 2017-10-17 09:32:38.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5894. 2017-10-17 09:32:38.593 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5895. 2017-10-17 09:32:38.655 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5896. 2017-10-17 09:32:38.655 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5897. 2017-10-17 09:32:38.656 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5898. 2017-10-17 09:32:38.691 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5899. 2017-10-17 09:32:38.691 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5900. 2017-10-17 09:32:38.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5901. 2017-10-17 09:32:38.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5902. 2017-10-17 09:32:38.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5903. 2017-10-17 09:32:38.700 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5904. 2017-10-17 09:32:38.730 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5905. 2017-10-17 09:32:38.731 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5906. 2017-10-17 09:32:38.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5907. 2017-10-17 09:32:38.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5908. 2017-10-17 09:32:38.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5909. 2017-10-17 09:32:38.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5910. 2017-10-17 09:32:38.739 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5911. 2017-10-17 09:32:38.739 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5912. 2017-10-17 09:32:38.740 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5913. 2017-10-17 09:32:38.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5914. 2017-10-17 09:32:38.768 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5915. 2017-10-17 09:32:38.769 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5916. 2017-10-17 09:32:38.774 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5917. 2017-10-17 09:32:38.775 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5918. 2017-10-17 09:32:38.776 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5919. 2017-10-17 09:32:38.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5920. 2017-10-17 09:32:38.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5921. 2017-10-17 09:32:38.778 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5922. 2017-10-17 09:32:38.812 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5923. 2017-10-17 09:32:38.817 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5924. 2017-10-17 09:32:38.817 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5925. 2017-10-17 09:32:38.848 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5926. 2017-10-17 09:32:38.850 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5927. 2017-10-17 09:32:38.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5928. 2017-10-17 09:32:38.851 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5929. 2017-10-17 09:32:38.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5930. 2017-10-17 09:32:38.853 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5931. 2017-10-17 09:32:38.854 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5932. 2017-10-17 09:32:38.854 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5933. 2017-10-17 09:32:38.863 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5934. 2017-10-17 09:32:38.864 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5935. 2017-10-17 09:32:38.867 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5936. 2017-10-17 09:32:38.867 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5937. 2017-10-17 09:32:38.882 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5938. 2017-10-17 09:32:38.886 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5939. 2017-10-17 09:32:38.894 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5940. 2017-10-17 09:32:38.898 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5941. 2017-10-17 09:32:38.924 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5942. 2017-10-17 09:32:38.924 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5943. 2017-10-17 09:32:38.955 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5944. 2017-10-17 09:32:38.956 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5945. 2017-10-17 09:32:38.956 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5946. 2017-10-17 09:32:38.990 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5947. 2017-10-17 09:32:38.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5948. 2017-10-17 09:32:38.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5949. 2017-10-17 09:32:39.020 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5950. 2017-10-17 09:32:39.050 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5951. 2017-10-17 09:32:39.051 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5952. 2017-10-17 09:32:39.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5953. 2017-10-17 09:32:39.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5954. 2017-10-17 09:32:39.166 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  5955. 2017-10-17 09:32:39.196 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5956. 2017-10-17 09:32:39.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5957. 2017-10-17 09:32:39.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5958. 2017-10-17 09:32:39.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5959. 2017-10-17 09:32:39.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5960. 2017-10-17 09:32:39.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5961. 2017-10-17 09:32:39.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5962. 2017-10-17 09:32:39.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5963. 2017-10-17 09:32:39.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5964. 2017-10-17 09:32:39.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5965. 2017-10-17 09:32:39.373 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5966. 2017-10-17 09:32:39.374 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5967. 2017-10-17 09:32:39.378 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5968. 2017-10-17 09:32:39.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5969. 2017-10-17 09:32:39.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  5970. 2017-10-17 09:32:39.569 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5971. 2017-10-17 09:32:39.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5972. 2017-10-17 09:32:39.600 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5973. 2017-10-17 09:32:39.632 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5974. 2017-10-17 09:32:39.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5975. 2017-10-17 09:32:39.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5976. 2017-10-17 09:32:39.668 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  5977. 2017-10-17 09:32:39.669 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5978. 2017-10-17 09:32:39.670 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5979. 2017-10-17 09:32:39.704 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5980. 2017-10-17 09:32:39.735 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5981. 2017-10-17 09:32:39.736 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5982. 2017-10-17 09:32:39.776 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  5983. 2017-10-17 09:32:39.777 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  5984. 2017-10-17 09:32:39.825 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  5985. 2017-10-17 09:32:39.827 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  5986. 2017-10-17 09:32:39.828 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  5987. 2017-10-17 09:32:39.873 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  5988. 2017-10-17 09:33:12.233 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5989. 2017-10-17 09:33:12.239 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5990. 2017-10-17 09:33:12.239 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5991. 2017-10-17 09:33:12.240 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5992. 2017-10-17 09:33:12.241 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5993. 2017-10-17 09:33:12.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5994. 2017-10-17 09:33:12.272 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5995. 2017-10-17 09:33:12.273 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5996. 2017-10-17 09:33:12.273 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5997. 2017-10-17 09:33:12.274 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5998. 2017-10-17 09:33:12.274 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5999. 2017-10-17 09:33:12.277 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6000. 2017-10-17 09:33:12.278 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6001. 2017-10-17 09:33:12.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6002. 2017-10-17 09:33:12.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6003. 2017-10-17 09:33:12.303 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6004. 2017-10-17 09:33:12.304 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6005. 2017-10-17 09:33:12.304 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6006. 2017-10-17 09:33:12.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6007. 2017-10-17 09:33:12.305 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6008. 2017-10-17 09:33:12.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6009. 2017-10-17 09:33:12.309 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6010. 2017-10-17 09:33:12.309 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6011. 2017-10-17 09:33:12.309 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6012. 2017-10-17 09:33:12.324 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6013. 2017-10-17 09:33:12.325 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6014. 2017-10-17 09:33:12.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6015. 2017-10-17 09:33:12.325 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6016. 2017-10-17 09:33:12.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6017. 2017-10-17 09:33:12.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6018. 2017-10-17 09:33:12.338 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6019. 2017-10-17 09:33:12.339 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6020. 2017-10-17 09:33:12.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6021. 2017-10-17 09:33:12.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6022. 2017-10-17 09:33:12.339 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6023. 2017-10-17 09:33:12.340 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6024. 2017-10-17 09:33:12.340 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6025. 2017-10-17 09:33:12.341 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6026. 2017-10-17 09:33:12.341 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6027. 2017-10-17 09:33:12.368 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6028. 2017-10-17 09:33:12.368 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6029. 2017-10-17 09:33:12.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6030. 2017-10-17 09:33:12.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6031. 2017-10-17 09:33:12.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6032. 2017-10-17 09:33:12.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6033. 2017-10-17 09:33:12.373 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6034. 2017-10-17 09:33:12.374 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6035. 2017-10-17 09:33:12.374 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6036. 2017-10-17 09:33:12.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6037. 2017-10-17 09:33:12.417 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6038. 2017-10-17 09:33:12.418 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6039. 2017-10-17 09:33:12.421 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6040. 2017-10-17 09:33:12.432 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6041. 2017-10-17 09:33:12.433 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6042. 2017-10-17 09:33:12.433 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6043. 2017-10-17 09:33:12.434 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6044. 2017-10-17 09:33:12.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6045. 2017-10-17 09:33:12.436 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6046. 2017-10-17 09:33:12.452 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6047. 2017-10-17 09:33:12.454 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6048. 2017-10-17 09:33:12.456 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  6049. 2017-10-17 09:33:12.457 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6050. 2017-10-17 09:33:12.469 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6051. 2017-10-17 09:33:12.474 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6052. 2017-10-17 09:33:12.475 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6053. 2017-10-17 09:33:12.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6054. 2017-10-17 09:33:12.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6055. 2017-10-17 09:33:12.494 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  6056. 2017-10-17 09:33:12.495 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6057. 2017-10-17 09:33:12.496 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6058. 2017-10-17 09:33:12.513 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6059. 2017-10-17 09:33:12.513 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6060. 2017-10-17 09:33:12.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  6061. 2017-10-17 09:33:12.526 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6062. 2017-10-17 09:33:12.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6063. 2017-10-17 09:33:12.584 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6064. 2017-10-17 09:33:12.584 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6065. 2017-10-17 09:33:12.584 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6066. 2017-10-17 09:33:12.636 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6067. 2017-10-17 09:33:12.636 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6068. 2017-10-17 09:33:12.636 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6069. 2017-10-17 09:33:12.637 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6070. 2017-10-17 09:33:12.638 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6071. 2017-10-17 09:33:12.638 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6072. 2017-10-17 09:33:12.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6073. 2017-10-17 09:33:12.667 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6074. 2017-10-17 09:33:12.667 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6075. 2017-10-17 09:33:12.669 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6076. 2017-10-17 09:33:12.670 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6077. 2017-10-17 09:33:12.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6078. 2017-10-17 09:33:12.672 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6079. 2017-10-17 09:33:12.672 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6080. 2017-10-17 09:33:12.672 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6081. 2017-10-17 09:33:12.708 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6082. 2017-10-17 09:33:12.708 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6083. 2017-10-17 09:33:12.709 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6084. 2017-10-17 09:33:12.709 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6085. 2017-10-17 09:33:12.709 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6086. 2017-10-17 09:33:12.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6087. 2017-10-17 09:33:12.710 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6088. 2017-10-17 09:33:12.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6089. 2017-10-17 09:33:12.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6090. 2017-10-17 09:33:12.735 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6091. 2017-10-17 09:33:12.740 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6092. 2017-10-17 09:33:12.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6093. 2017-10-17 09:33:12.769 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6094. 2017-10-17 09:33:12.771 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6095. 2017-10-17 09:33:12.777 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6096. 2017-10-17 09:33:12.778 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6097. 2017-10-17 09:33:12.784 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6098. 2017-10-17 09:33:12.785 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6099. 2017-10-17 09:33:12.795 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6100. 2017-10-17 09:33:12.795 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6101. 2017-10-17 09:33:12.795 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6102. 2017-10-17 09:33:12.796 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6103. 2017-10-17 09:33:12.796 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6104. 2017-10-17 09:33:12.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6105. 2017-10-17 09:33:12.825 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6106. 2017-10-17 09:33:12.826 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6107. 2017-10-17 09:33:12.827 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6108. 2017-10-17 09:33:12.834 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6109. 2017-10-17 09:33:12.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6110. 2017-10-17 09:33:12.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6111. 2017-10-17 09:33:12.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6112. 2017-10-17 09:33:12.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6113. 2017-10-17 09:33:12.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6114. 2017-10-17 09:33:12.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6115. 2017-10-17 09:33:12.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6116. 2017-10-17 09:33:12.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6117. 2017-10-17 09:33:12.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6118. 2017-10-17 09:33:12.999 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6119. 2017-10-17 09:33:13.000 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6120. 2017-10-17 09:33:13.005 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6121. 2017-10-17 09:33:13.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6122. 2017-10-17 09:33:13.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  6123. 2017-10-17 09:33:13.128 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6124. 2017-10-17 09:33:13.172 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6125. 2017-10-17 09:33:13.172 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6126. 2017-10-17 09:33:13.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6127. 2017-10-17 09:33:13.204 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6128. 2017-10-17 09:33:13.204 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6129. 2017-10-17 09:33:13.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6130. 2017-10-17 09:33:13.237 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6131. 2017-10-17 09:33:13.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6132. 2017-10-17 09:33:13.269 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6133. 2017-10-17 09:33:13.303 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6134. 2017-10-17 09:33:13.304 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6135. 2017-10-17 09:33:13.308 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6136. 2017-10-17 09:33:13.308 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6137. 2017-10-17 09:33:13.335 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6138. 2017-10-17 09:33:13.506 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6139. 2017-10-17 09:33:13.538 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6140. 2017-10-17 09:33:13.539 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6141. 2017-10-17 09:33:13.571 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6142. 2017-10-17 09:33:13.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6143. 2017-10-17 09:33:13.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6144. 2017-10-17 09:33:13.605 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6145. 2017-10-17 09:33:13.606 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6146. 2017-10-17 09:33:13.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6147. 2017-10-17 09:33:13.634 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6148. 2017-10-17 09:33:13.665 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6149. 2017-10-17 09:33:13.667 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6150. 2017-10-17 09:33:13.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  6151. 2017-10-17 09:33:13.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  6152. 2017-10-17 09:33:13.749 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  6153. 2017-10-17 09:33:13.752 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  6154. 2017-10-17 09:33:13.752 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  6155. 2017-10-17 09:33:13.793 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  6156. 2017-10-17 09:33:43.845 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6157. 2017-10-17 09:33:43.846 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6158. 2017-10-17 09:33:43.846 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6159. 2017-10-17 09:33:43.847 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6160. 2017-10-17 09:33:43.849 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6161. 2017-10-17 09:33:43.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6162. 2017-10-17 09:33:43.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6163. 2017-10-17 09:33:43.877 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6164. 2017-10-17 09:33:43.877 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6165. 2017-10-17 09:33:43.879 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6166. 2017-10-17 09:33:43.879 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6167. 2017-10-17 09:33:43.882 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6168. 2017-10-17 09:33:43.882 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6169. 2017-10-17 09:33:43.884 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6170. 2017-10-17 09:33:43.884 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6171. 2017-10-17 09:33:43.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6172. 2017-10-17 09:33:43.908 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6173. 2017-10-17 09:33:43.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6174. 2017-10-17 09:33:43.909 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6175. 2017-10-17 09:33:43.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6176. 2017-10-17 09:33:43.909 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6177. 2017-10-17 09:33:43.913 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6178. 2017-10-17 09:33:43.914 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6179. 2017-10-17 09:33:43.914 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6180. 2017-10-17 09:33:43.914 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6181. 2017-10-17 09:33:43.914 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6182. 2017-10-17 09:33:43.915 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6183. 2017-10-17 09:33:43.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6184. 2017-10-17 09:33:43.915 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6185. 2017-10-17 09:33:43.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6186. 2017-10-17 09:33:43.944 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6187. 2017-10-17 09:33:43.945 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6188. 2017-10-17 09:33:43.945 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6189. 2017-10-17 09:33:43.946 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6190. 2017-10-17 09:33:43.947 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6191. 2017-10-17 09:33:43.947 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6192. 2017-10-17 09:33:43.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6193. 2017-10-17 09:33:43.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6194. 2017-10-17 09:33:43.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6195. 2017-10-17 09:33:43.959 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6196. 2017-10-17 09:33:43.959 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6197. 2017-10-17 09:33:43.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6198. 2017-10-17 09:33:43.960 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6199. 2017-10-17 09:33:43.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6200. 2017-10-17 09:33:43.960 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6201. 2017-10-17 09:33:43.972 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6202. 2017-10-17 09:33:43.973 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6203. 2017-10-17 09:33:43.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6204. 2017-10-17 09:33:43.997 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6205. 2017-10-17 09:33:44.001 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6206. 2017-10-17 09:33:44.017 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6207. 2017-10-17 09:33:44.018 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6208. 2017-10-17 09:33:44.019 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6209. 2017-10-17 09:33:44.020 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6210. 2017-10-17 09:33:44.024 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6211. 2017-10-17 09:33:44.025 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6212. 2017-10-17 09:33:44.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6213. 2017-10-17 09:33:44.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6214. 2017-10-17 09:33:44.044 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6215. 2017-10-17 09:33:44.046 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6216. 2017-10-17 09:33:44.046 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6217. 2017-10-17 09:33:44.047 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6218. 2017-10-17 09:33:44.051 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  6219. 2017-10-17 09:33:44.052 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6220. 2017-10-17 09:33:44.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6221. 2017-10-17 09:33:44.081 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6222. 2017-10-17 09:33:44.082 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6223. 2017-10-17 09:33:44.083 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  6224. 2017-10-17 09:33:44.083 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6225. 2017-10-17 09:33:44.083 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6226. 2017-10-17 09:33:44.084 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6227. 2017-10-17 09:33:44.084 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6228. 2017-10-17 09:33:44.113 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  6229. 2017-10-17 09:33:44.119 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6230. 2017-10-17 09:33:44.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6231. 2017-10-17 09:33:44.178 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6232. 2017-10-17 09:33:44.178 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6233. 2017-10-17 09:33:44.178 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6234. 2017-10-17 09:33:44.208 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6235. 2017-10-17 09:33:44.209 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6236. 2017-10-17 09:33:44.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6237. 2017-10-17 09:33:44.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6238. 2017-10-17 09:33:44.211 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6239. 2017-10-17 09:33:44.211 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6240. 2017-10-17 09:33:44.248 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6241. 2017-10-17 09:33:44.248 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6242. 2017-10-17 09:33:44.249 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6243. 2017-10-17 09:33:44.249 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6244. 2017-10-17 09:33:44.249 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6245. 2017-10-17 09:33:44.250 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6246. 2017-10-17 09:33:44.250 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6247. 2017-10-17 09:33:44.250 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6248. 2017-10-17 09:33:44.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6249. 2017-10-17 09:33:44.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6250. 2017-10-17 09:33:44.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6251. 2017-10-17 09:33:44.295 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6252. 2017-10-17 09:33:44.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6253. 2017-10-17 09:33:44.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6254. 2017-10-17 09:33:44.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6255. 2017-10-17 09:33:44.297 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6256. 2017-10-17 09:33:44.297 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6257. 2017-10-17 09:33:44.297 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6258. 2017-10-17 09:33:44.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6259. 2017-10-17 09:33:44.325 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6260. 2017-10-17 09:33:44.325 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6261. 2017-10-17 09:33:44.356 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6262. 2017-10-17 09:33:44.357 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6263. 2017-10-17 09:33:44.357 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6264. 2017-10-17 09:33:44.358 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6265. 2017-10-17 09:33:44.358 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6266. 2017-10-17 09:33:44.359 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6267. 2017-10-17 09:33:44.359 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6268. 2017-10-17 09:33:44.359 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6269. 2017-10-17 09:33:44.360 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6270. 2017-10-17 09:33:44.361 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6271. 2017-10-17 09:33:44.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6272. 2017-10-17 09:33:44.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6273. 2017-10-17 09:33:44.392 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6274. 2017-10-17 09:33:44.393 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6275. 2017-10-17 09:33:44.395 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6276. 2017-10-17 09:33:44.403 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6277. 2017-10-17 09:33:44.432 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6278. 2017-10-17 09:33:44.432 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6279. 2017-10-17 09:33:44.462 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6280. 2017-10-17 09:33:44.463 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6281. 2017-10-17 09:33:44.463 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6282. 2017-10-17 09:33:44.494 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6283. 2017-10-17 09:33:44.495 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6284. 2017-10-17 09:33:44.495 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6285. 2017-10-17 09:33:44.524 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6286. 2017-10-17 09:33:44.561 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6287. 2017-10-17 09:33:44.562 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6288. 2017-10-17 09:33:44.566 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6289. 2017-10-17 09:33:44.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6290. 2017-10-17 09:33:44.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  6291. 2017-10-17 09:33:44.700 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6292. 2017-10-17 09:33:44.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6293. 2017-10-17 09:33:44.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6294. 2017-10-17 09:33:44.778 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6295. 2017-10-17 09:33:44.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6296. 2017-10-17 09:33:44.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6297. 2017-10-17 09:33:44.833 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6298. 2017-10-17 09:33:44.834 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6299. 2017-10-17 09:33:44.835 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6300. 2017-10-17 09:33:44.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6301. 2017-10-17 09:33:44.914 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6302. 2017-10-17 09:33:44.916 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6303. 2017-10-17 09:33:44.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6304. 2017-10-17 09:33:44.921 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6305. 2017-10-17 09:33:44.949 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6306. 2017-10-17 09:33:45.095 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6307. 2017-10-17 09:33:45.126 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6308. 2017-10-17 09:33:45.126 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6309. 2017-10-17 09:33:45.158 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6310. 2017-10-17 09:33:45.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6311. 2017-10-17 09:33:45.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6312. 2017-10-17 09:33:45.199 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6313. 2017-10-17 09:33:45.200 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6314. 2017-10-17 09:33:45.200 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6315. 2017-10-17 09:33:45.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6316. 2017-10-17 09:33:45.262 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6317. 2017-10-17 09:33:45.263 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6318. 2017-10-17 09:33:45.306 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  6319. 2017-10-17 09:33:45.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  6320. 2017-10-17 09:33:45.346 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  6321. 2017-10-17 09:33:45.347 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  6322. 2017-10-17 09:33:45.348 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  6323. 2017-10-17 09:33:45.389 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  6324. 2017-10-17 09:34:08.552 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6325. 2017-10-17 09:34:08.552 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6326. 2017-10-17 09:34:08.552 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6327. 2017-10-17 09:34:08.552 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6328. 2017-10-17 09:34:08.552 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6329. 2017-10-17 09:34:08.583 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6330. 2017-10-17 09:34:08.583 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6331. 2017-10-17 09:34:08.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6332. 2017-10-17 09:34:08.585 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6333. 2017-10-17 09:34:08.589 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6334. 2017-10-17 09:34:08.590 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6335. 2017-10-17 09:34:08.590 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6336. 2017-10-17 09:34:08.590 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6337. 2017-10-17 09:34:08.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6338. 2017-10-17 09:34:08.591 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6339. 2017-10-17 09:34:08.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6340. 2017-10-17 09:34:08.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6341. 2017-10-17 09:34:08.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6342. 2017-10-17 09:34:08.619 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6343. 2017-10-17 09:34:08.619 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6344. 2017-10-17 09:34:08.620 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6345. 2017-10-17 09:34:08.620 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6346. 2017-10-17 09:34:08.620 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6347. 2017-10-17 09:34:08.620 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6348. 2017-10-17 09:34:08.623 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6349. 2017-10-17 09:34:08.623 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6350. 2017-10-17 09:34:08.624 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6351. 2017-10-17 09:34:08.624 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6352. 2017-10-17 09:34:08.624 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6353. 2017-10-17 09:34:08.624 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6354. 2017-10-17 09:34:08.650 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6355. 2017-10-17 09:34:08.651 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6356. 2017-10-17 09:34:08.651 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6357. 2017-10-17 09:34:08.654 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6358. 2017-10-17 09:34:08.654 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6359. 2017-10-17 09:34:08.655 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6360. 2017-10-17 09:34:08.655 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6361. 2017-10-17 09:34:08.655 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6362. 2017-10-17 09:34:08.656 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6363. 2017-10-17 09:34:08.656 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6364. 2017-10-17 09:34:08.656 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6365. 2017-10-17 09:34:08.656 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6366. 2017-10-17 09:34:08.657 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6367. 2017-10-17 09:34:08.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6368. 2017-10-17 09:34:08.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6369. 2017-10-17 09:34:08.679 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6370. 2017-10-17 09:34:08.682 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6371. 2017-10-17 09:34:08.683 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6372. 2017-10-17 09:34:08.686 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6373. 2017-10-17 09:34:08.686 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6374. 2017-10-17 09:34:08.725 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6375. 2017-10-17 09:34:08.726 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6376. 2017-10-17 09:34:08.727 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6377. 2017-10-17 09:34:08.728 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6378. 2017-10-17 09:34:08.728 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6379. 2017-10-17 09:34:08.729 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6380. 2017-10-17 09:34:08.729 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6381. 2017-10-17 09:34:08.729 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6382. 2017-10-17 09:34:08.730 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6383. 2017-10-17 09:34:08.731 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6384. 2017-10-17 09:34:08.732 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6385. 2017-10-17 09:34:08.733 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6386. 2017-10-17 09:34:08.757 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6387. 2017-10-17 09:34:08.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  6388. 2017-10-17 09:34:08.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6389. 2017-10-17 09:34:08.765 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6390. 2017-10-17 09:34:08.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6391. 2017-10-17 09:34:08.766 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6392. 2017-10-17 09:34:08.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6393. 2017-10-17 09:34:08.795 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  6394. 2017-10-17 09:34:08.796 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  6395. 2017-10-17 09:34:08.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6396. 2017-10-17 09:34:08.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6397. 2017-10-17 09:34:08.799 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6398. 2017-10-17 09:34:08.829 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6399. 2017-10-17 09:34:08.886 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6400. 2017-10-17 09:34:08.886 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6401. 2017-10-17 09:34:08.886 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6402. 2017-10-17 09:34:08.917 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6403. 2017-10-17 09:34:08.917 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6404. 2017-10-17 09:34:08.918 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6405. 2017-10-17 09:34:08.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6406. 2017-10-17 09:34:08.922 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6407. 2017-10-17 09:34:08.922 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6408. 2017-10-17 09:34:08.946 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6409. 2017-10-17 09:34:08.947 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6410. 2017-10-17 09:34:08.947 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6411. 2017-10-17 09:34:08.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6412. 2017-10-17 09:34:08.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6413. 2017-10-17 09:34:08.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6414. 2017-10-17 09:34:08.958 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6415. 2017-10-17 09:34:08.958 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6416. 2017-10-17 09:34:08.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6417. 2017-10-17 09:34:08.989 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6418. 2017-10-17 09:34:08.990 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6419. 2017-10-17 09:34:08.991 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6420. 2017-10-17 09:34:09.000 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6421. 2017-10-17 09:34:09.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6422. 2017-10-17 09:34:09.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6423. 2017-10-17 09:34:09.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6424. 2017-10-17 09:34:09.006 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6425. 2017-10-17 09:34:09.006 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6426. 2017-10-17 09:34:09.029 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6427. 2017-10-17 09:34:09.032 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6428. 2017-10-17 09:34:09.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6429. 2017-10-17 09:34:09.062 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6430. 2017-10-17 09:34:09.063 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6431. 2017-10-17 09:34:09.064 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6432. 2017-10-17 09:34:09.064 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6433. 2017-10-17 09:34:09.065 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6434. 2017-10-17 09:34:09.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6435. 2017-10-17 09:34:09.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6436. 2017-10-17 09:34:09.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6437. 2017-10-17 09:34:09.065 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6438. 2017-10-17 09:34:09.066 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6439. 2017-10-17 09:34:09.067 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6440. 2017-10-17 09:34:09.067 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6441. 2017-10-17 09:34:09.096 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6442. 2017-10-17 09:34:09.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6443. 2017-10-17 09:34:09.103 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6444. 2017-10-17 09:34:09.111 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6445. 2017-10-17 09:34:09.140 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6446. 2017-10-17 09:34:09.140 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6447. 2017-10-17 09:34:09.175 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6448. 2017-10-17 09:34:09.176 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6449. 2017-10-17 09:34:09.177 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6450. 2017-10-17 09:34:09.210 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6451. 2017-10-17 09:34:09.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6452. 2017-10-17 09:34:09.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6453. 2017-10-17 09:34:09.238 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6454. 2017-10-17 09:34:09.270 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6455. 2017-10-17 09:34:09.271 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6456. 2017-10-17 09:34:09.276 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6457. 2017-10-17 09:34:09.277 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6458. 2017-10-17 09:34:09.438 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  6459. 2017-10-17 09:34:09.464 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6460. 2017-10-17 09:34:09.494 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6461. 2017-10-17 09:34:09.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6462. 2017-10-17 09:34:09.526 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6463. 2017-10-17 09:34:09.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6464. 2017-10-17 09:34:09.528 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6465. 2017-10-17 09:34:09.564 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6466. 2017-10-17 09:34:09.565 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6467. 2017-10-17 09:34:09.565 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6468. 2017-10-17 09:34:09.598 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6469. 2017-10-17 09:34:09.631 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6470. 2017-10-17 09:34:09.632 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6471. 2017-10-17 09:34:09.636 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6472. 2017-10-17 09:34:09.637 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6473. 2017-10-17 09:34:09.667 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6474. 2017-10-17 09:34:09.804 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6475. 2017-10-17 09:34:09.838 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6476. 2017-10-17 09:34:09.840 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6477. 2017-10-17 09:34:09.872 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6478. 2017-10-17 09:34:09.875 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6479. 2017-10-17 09:34:09.875 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6480. 2017-10-17 09:34:09.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6481. 2017-10-17 09:34:09.910 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6482. 2017-10-17 09:34:09.910 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6483. 2017-10-17 09:34:09.939 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6484. 2017-10-17 09:34:09.976 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6485. 2017-10-17 09:34:09.977 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6486. 2017-10-17 09:34:10.019 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  6487. 2017-10-17 09:34:10.019 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  6488. 2017-10-17 09:34:10.067 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  6489. 2017-10-17 09:34:10.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  6490. 2017-10-17 09:34:10.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  6491. 2017-10-17 09:34:10.119 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  6492. 2017-10-17 09:34:29.238 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6493. 2017-10-17 09:34:29.240 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6494. 2017-10-17 09:34:29.240 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6495. 2017-10-17 09:34:29.240 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6496. 2017-10-17 09:34:29.241 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6497. 2017-10-17 09:34:29.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6498. 2017-10-17 09:34:29.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6499. 2017-10-17 09:34:29.276 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6500. 2017-10-17 09:34:29.277 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6501. 2017-10-17 09:34:29.277 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6502. 2017-10-17 09:34:29.277 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6503. 2017-10-17 09:34:29.277 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6504. 2017-10-17 09:34:29.278 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6505. 2017-10-17 09:34:29.279 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6506. 2017-10-17 09:34:29.280 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6507. 2017-10-17 09:34:29.309 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6508. 2017-10-17 09:34:29.309 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6509. 2017-10-17 09:34:29.310 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6510. 2017-10-17 09:34:29.310 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6511. 2017-10-17 09:34:29.310 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6512. 2017-10-17 09:34:29.310 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6513. 2017-10-17 09:34:29.310 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6514. 2017-10-17 09:34:29.311 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6515. 2017-10-17 09:34:29.311 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6516. 2017-10-17 09:34:29.311 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6517. 2017-10-17 09:34:29.311 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6518. 2017-10-17 09:34:29.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6519. 2017-10-17 09:34:29.312 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6520. 2017-10-17 09:34:29.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6521. 2017-10-17 09:34:29.312 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6522. 2017-10-17 09:34:29.341 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6523. 2017-10-17 09:34:29.341 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6524. 2017-10-17 09:34:29.342 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6525. 2017-10-17 09:34:29.343 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6526. 2017-10-17 09:34:29.343 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6527. 2017-10-17 09:34:29.344 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6528. 2017-10-17 09:34:29.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6529. 2017-10-17 09:34:29.349 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6530. 2017-10-17 09:34:29.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6531. 2017-10-17 09:34:29.350 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6532. 2017-10-17 09:34:29.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6533. 2017-10-17 09:34:29.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6534. 2017-10-17 09:34:29.350 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6535. 2017-10-17 09:34:29.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6536. 2017-10-17 09:34:29.351 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6537. 2017-10-17 09:34:29.367 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6538. 2017-10-17 09:34:29.372 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6539. 2017-10-17 09:34:29.383 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6540. 2017-10-17 09:34:29.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6541. 2017-10-17 09:34:29.384 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6542. 2017-10-17 09:34:29.412 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6543. 2017-10-17 09:34:29.413 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6544. 2017-10-17 09:34:29.417 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6545. 2017-10-17 09:34:29.418 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6546. 2017-10-17 09:34:29.431 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6547. 2017-10-17 09:34:29.431 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6548. 2017-10-17 09:34:29.432 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6549. 2017-10-17 09:34:29.432 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6550. 2017-10-17 09:34:29.433 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6551. 2017-10-17 09:34:29.433 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6552. 2017-10-17 09:34:29.434 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6553. 2017-10-17 09:34:29.435 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6554. 2017-10-17 09:34:29.446 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6555. 2017-10-17 09:34:29.447 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6556. 2017-10-17 09:34:29.452 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6557. 2017-10-17 09:34:29.452 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6558. 2017-10-17 09:34:29.465 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  6559. 2017-10-17 09:34:29.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6560. 2017-10-17 09:34:29.475 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6561. 2017-10-17 09:34:29.478 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  6562. 2017-10-17 09:34:29.492 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6563. 2017-10-17 09:34:29.509 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  6564. 2017-10-17 09:34:29.510 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6565. 2017-10-17 09:34:29.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6566. 2017-10-17 09:34:29.568 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6567. 2017-10-17 09:34:29.624 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6568. 2017-10-17 09:34:29.624 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6569. 2017-10-17 09:34:29.624 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6570. 2017-10-17 09:34:29.655 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6571. 2017-10-17 09:34:29.656 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6572. 2017-10-17 09:34:29.656 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6573. 2017-10-17 09:34:29.657 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6574. 2017-10-17 09:34:29.657 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6575. 2017-10-17 09:34:29.657 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6576. 2017-10-17 09:34:29.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6577. 2017-10-17 09:34:29.686 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6578. 2017-10-17 09:34:29.686 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6579. 2017-10-17 09:34:29.687 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6580. 2017-10-17 09:34:29.688 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6581. 2017-10-17 09:34:29.688 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6582. 2017-10-17 09:34:29.688 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6583. 2017-10-17 09:34:29.689 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6584. 2017-10-17 09:34:29.690 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6585. 2017-10-17 09:34:29.743 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6586. 2017-10-17 09:34:29.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6587. 2017-10-17 09:34:29.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6588. 2017-10-17 09:34:29.745 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6589. 2017-10-17 09:34:29.745 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6590. 2017-10-17 09:34:29.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6591. 2017-10-17 09:34:29.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6592. 2017-10-17 09:34:29.746 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6593. 2017-10-17 09:34:29.747 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6594. 2017-10-17 09:34:29.797 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6595. 2017-10-17 09:34:29.799 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6596. 2017-10-17 09:34:29.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6597. 2017-10-17 09:34:29.829 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6598. 2017-10-17 09:34:29.829 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6599. 2017-10-17 09:34:29.830 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6600. 2017-10-17 09:34:29.830 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6601. 2017-10-17 09:34:29.831 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6602. 2017-10-17 09:34:29.831 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6603. 2017-10-17 09:34:29.832 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6604. 2017-10-17 09:34:29.832 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6605. 2017-10-17 09:34:29.833 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6606. 2017-10-17 09:34:29.833 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6607. 2017-10-17 09:34:29.834 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6608. 2017-10-17 09:34:29.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6609. 2017-10-17 09:34:29.862 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6610. 2017-10-17 09:34:29.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6611. 2017-10-17 09:34:29.864 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6612. 2017-10-17 09:34:29.872 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6613. 2017-10-17 09:34:29.905 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6614. 2017-10-17 09:34:29.906 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6615. 2017-10-17 09:34:29.936 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6616. 2017-10-17 09:34:29.937 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6617. 2017-10-17 09:34:29.938 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6618. 2017-10-17 09:34:30.007 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6619. 2017-10-17 09:34:30.008 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6620. 2017-10-17 09:34:30.008 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6621. 2017-10-17 09:34:30.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6622. 2017-10-17 09:34:30.095 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6623. 2017-10-17 09:34:30.096 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6624. 2017-10-17 09:34:30.100 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6625. 2017-10-17 09:34:30.101 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6626. 2017-10-17 09:34:30.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  6627. 2017-10-17 09:34:30.222 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6628. 2017-10-17 09:34:30.253 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6629. 2017-10-17 09:34:30.253 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6630. 2017-10-17 09:34:30.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6631. 2017-10-17 09:34:30.286 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6632. 2017-10-17 09:34:30.286 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6633. 2017-10-17 09:34:30.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6634. 2017-10-17 09:34:30.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6635. 2017-10-17 09:34:30.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6636. 2017-10-17 09:34:30.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6637. 2017-10-17 09:34:30.381 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6638. 2017-10-17 09:34:30.382 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6639. 2017-10-17 09:34:30.384 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6640. 2017-10-17 09:34:30.385 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6641. 2017-10-17 09:34:30.428 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6642. 2017-10-17 09:34:30.583 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6643. 2017-10-17 09:34:30.613 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6644. 2017-10-17 09:34:30.613 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6645. 2017-10-17 09:34:30.644 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6646. 2017-10-17 09:34:30.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6647. 2017-10-17 09:34:30.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6648. 2017-10-17 09:34:30.708 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6649. 2017-10-17 09:34:30.709 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6650. 2017-10-17 09:34:30.710 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6651. 2017-10-17 09:34:30.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6652. 2017-10-17 09:34:30.806 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6653. 2017-10-17 09:34:30.809 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6654. 2017-10-17 09:34:30.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  6655. 2017-10-17 09:34:30.849 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  6656. 2017-10-17 09:34:30.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  6657. 2017-10-17 09:34:30.905 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  6658. 2017-10-17 09:34:30.905 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  6659. 2017-10-17 09:34:30.986 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  6660. 2017-10-17 09:35:27.511 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6661. 2017-10-17 09:35:27.511 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6662. 2017-10-17 09:35:27.512 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6663. 2017-10-17 09:35:27.512 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6664. 2017-10-17 09:35:27.512 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6665. 2017-10-17 09:35:27.544 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6666. 2017-10-17 09:35:27.545 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6667. 2017-10-17 09:35:27.545 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6668. 2017-10-17 09:35:27.545 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6669. 2017-10-17 09:35:27.547 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6670. 2017-10-17 09:35:27.547 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6671. 2017-10-17 09:35:27.552 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6672. 2017-10-17 09:35:27.553 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6673. 2017-10-17 09:35:27.553 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6674. 2017-10-17 09:35:27.554 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6675. 2017-10-17 09:35:27.575 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6676. 2017-10-17 09:35:27.576 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6677. 2017-10-17 09:35:27.576 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6678. 2017-10-17 09:35:27.577 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6679. 2017-10-17 09:35:27.577 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6680. 2017-10-17 09:35:27.578 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6681. 2017-10-17 09:35:27.581 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6682. 2017-10-17 09:35:27.581 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6683. 2017-10-17 09:35:27.582 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6684. 2017-10-17 09:35:27.582 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6685. 2017-10-17 09:35:27.582 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6686. 2017-10-17 09:35:27.582 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6687. 2017-10-17 09:35:27.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6688. 2017-10-17 09:35:27.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6689. 2017-10-17 09:35:27.584 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6690. 2017-10-17 09:35:27.612 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6691. 2017-10-17 09:35:27.613 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6692. 2017-10-17 09:35:27.614 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6693. 2017-10-17 09:35:27.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6694. 2017-10-17 09:35:27.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6695. 2017-10-17 09:35:27.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6696. 2017-10-17 09:35:27.626 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6697. 2017-10-17 09:35:27.627 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6698. 2017-10-17 09:35:27.627 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6699. 2017-10-17 09:35:27.639 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6700. 2017-10-17 09:35:27.642 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6701. 2017-10-17 09:35:27.668 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6702. 2017-10-17 09:35:27.688 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6703. 2017-10-17 09:35:27.689 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6704. 2017-10-17 09:35:27.691 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6705. 2017-10-17 09:35:27.691 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6706. 2017-10-17 09:35:27.714 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6707. 2017-10-17 09:35:27.715 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6708. 2017-10-17 09:35:27.722 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  6709. 2017-10-17 09:35:27.722 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6710. 2017-10-17 09:35:27.751 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6711. 2017-10-17 09:35:27.752 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6712. 2017-10-17 09:35:27.770 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6713. 2017-10-17 09:35:27.771 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6714. 2017-10-17 09:35:27.771 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6715. 2017-10-17 09:35:27.771 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  6716. 2017-10-17 09:35:27.772 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6717. 2017-10-17 09:35:27.772 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6718. 2017-10-17 09:35:27.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  6719. 2017-10-17 09:35:27.819 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6720. 2017-10-17 09:35:27.821 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6721. 2017-10-17 09:35:27.851 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6722. 2017-10-17 09:35:27.852 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6723. 2017-10-17 09:35:27.853 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6724. 2017-10-17 09:35:27.853 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6725. 2017-10-17 09:35:27.874 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6726. 2017-10-17 09:35:27.874 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6727. 2017-10-17 09:35:27.874 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6728. 2017-10-17 09:35:27.894 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6729. 2017-10-17 09:35:27.905 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6730. 2017-10-17 09:35:27.906 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6731. 2017-10-17 09:35:27.910 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6732. 2017-10-17 09:35:27.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6733. 2017-10-17 09:35:27.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6734. 2017-10-17 09:35:27.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6735. 2017-10-17 09:35:27.934 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6736. 2017-10-17 09:35:27.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6737. 2017-10-17 09:35:27.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6738. 2017-10-17 09:35:27.943 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6739. 2017-10-17 09:35:27.944 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6740. 2017-10-17 09:35:27.944 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6741. 2017-10-17 09:35:27.944 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6742. 2017-10-17 09:35:27.944 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6743. 2017-10-17 09:35:27.945 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6744. 2017-10-17 09:35:27.972 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6745. 2017-10-17 09:35:27.973 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6746. 2017-10-17 09:35:27.973 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6747. 2017-10-17 09:35:27.977 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6748. 2017-10-17 09:35:27.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6749. 2017-10-17 09:35:27.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6750. 2017-10-17 09:35:27.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6751. 2017-10-17 09:35:27.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6752. 2017-10-17 09:35:27.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6753. 2017-10-17 09:35:28.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6754. 2017-10-17 09:35:28.002 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6755. 2017-10-17 09:35:28.003 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6756. 2017-10-17 09:35:28.006 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6757. 2017-10-17 09:35:28.008 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6758. 2017-10-17 09:35:28.012 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6759. 2017-10-17 09:35:28.040 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6760. 2017-10-17 09:35:28.041 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6761. 2017-10-17 09:35:28.042 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6762. 2017-10-17 09:35:28.043 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6763. 2017-10-17 09:35:28.044 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6764. 2017-10-17 09:35:28.044 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6765. 2017-10-17 09:35:28.045 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6766. 2017-10-17 09:35:28.050 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6767. 2017-10-17 09:35:28.051 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6768. 2017-10-17 09:35:28.052 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6769. 2017-10-17 09:35:28.052 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6770. 2017-10-17 09:35:28.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6771. 2017-10-17 09:35:28.075 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6772. 2017-10-17 09:35:28.076 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6773. 2017-10-17 09:35:28.078 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6774. 2017-10-17 09:35:28.078 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6775. 2017-10-17 09:35:28.078 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6776. 2017-10-17 09:35:28.079 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6777. 2017-10-17 09:35:28.080 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6778. 2017-10-17 09:35:28.081 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6779. 2017-10-17 09:35:28.107 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6780. 2017-10-17 09:35:28.111 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6781. 2017-10-17 09:35:28.111 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6782. 2017-10-17 09:35:28.113 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6783. 2017-10-17 09:35:28.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6784. 2017-10-17 09:35:28.142 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6785. 2017-10-17 09:35:28.143 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6786. 2017-10-17 09:35:28.189 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6787. 2017-10-17 09:35:28.190 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6788. 2017-10-17 09:35:28.190 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6789. 2017-10-17 09:35:28.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6790. 2017-10-17 09:35:28.265 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6791. 2017-10-17 09:35:28.266 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6792. 2017-10-17 09:35:28.271 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6793. 2017-10-17 09:35:28.272 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6794. 2017-10-17 09:35:28.358 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  6795. 2017-10-17 09:35:28.383 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6796. 2017-10-17 09:35:28.414 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6797. 2017-10-17 09:35:28.415 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6798. 2017-10-17 09:35:28.441 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6799. 2017-10-17 09:35:28.442 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6800. 2017-10-17 09:35:28.442 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6801. 2017-10-17 09:35:28.492 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6802. 2017-10-17 09:35:28.493 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6803. 2017-10-17 09:35:28.493 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6804. 2017-10-17 09:35:28.545 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6805. 2017-10-17 09:35:28.578 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6806. 2017-10-17 09:35:28.580 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6807. 2017-10-17 09:35:28.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6808. 2017-10-17 09:35:28.585 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6809. 2017-10-17 09:35:28.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6810. 2017-10-17 09:35:28.723 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6811. 2017-10-17 09:35:28.754 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6812. 2017-10-17 09:35:28.754 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6813. 2017-10-17 09:35:28.783 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6814. 2017-10-17 09:35:28.784 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6815. 2017-10-17 09:35:28.784 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6816. 2017-10-17 09:35:28.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6817. 2017-10-17 09:35:28.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6818. 2017-10-17 09:35:28.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6819. 2017-10-17 09:35:28.934 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6820. 2017-10-17 09:35:28.968 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6821. 2017-10-17 09:35:28.970 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6822. 2017-10-17 09:35:29.010 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  6823. 2017-10-17 09:35:29.011 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  6824. 2017-10-17 09:35:29.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  6825. 2017-10-17 09:35:29.062 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  6826. 2017-10-17 09:35:29.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  6827. 2017-10-17 09:35:29.113 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  6828. 2017-10-17 09:36:53.619 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6829. 2017-10-17 09:36:53.619 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6830. 2017-10-17 09:36:53.621 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6831. 2017-10-17 09:36:53.622 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6832. 2017-10-17 09:36:53.622 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6833. 2017-10-17 09:36:54.867 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6834. 2017-10-17 09:36:54.868 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6835. 2017-10-17 09:36:54.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6836. 2017-10-17 09:36:54.873 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6837. 2017-10-17 09:36:54.873 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6838. 2017-10-17 09:36:54.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6839. 2017-10-17 09:36:54.874 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6840. 2017-10-17 09:36:54.874 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6841. 2017-10-17 09:36:54.874 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6842. 2017-10-17 09:36:54.875 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6843. 2017-10-17 09:36:54.895 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6844. 2017-10-17 09:36:54.902 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6845. 2017-10-17 09:36:54.905 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6846. 2017-10-17 09:36:54.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6847. 2017-10-17 09:36:54.908 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6848. 2017-10-17 09:36:54.927 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6849. 2017-10-17 09:36:54.927 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6850. 2017-10-17 09:36:54.934 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6851. 2017-10-17 09:36:54.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6852. 2017-10-17 09:36:54.934 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6853. 2017-10-17 09:36:54.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6854. 2017-10-17 09:36:54.940 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6855. 2017-10-17 09:36:54.940 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6856. 2017-10-17 09:36:54.942 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6857. 2017-10-17 09:36:54.943 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6858. 2017-10-17 09:36:54.967 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6859. 2017-10-17 09:36:54.968 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6860. 2017-10-17 09:36:54.969 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6861. 2017-10-17 09:36:54.969 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6862. 2017-10-17 09:36:54.969 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6863. 2017-10-17 09:36:54.970 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6864. 2017-10-17 09:36:54.972 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6865. 2017-10-17 09:36:54.973 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6866. 2017-10-17 09:36:54.973 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6867. 2017-10-17 09:36:54.989 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6868. 2017-10-17 09:36:54.990 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6869. 2017-10-17 09:36:54.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6870. 2017-10-17 09:36:54.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6871. 2017-10-17 09:36:55.001 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6872. 2017-10-17 09:36:55.035 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6873. 2017-10-17 09:36:55.035 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6874. 2017-10-17 09:36:55.036 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6875. 2017-10-17 09:36:55.036 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6876. 2017-10-17 09:36:55.047 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6877. 2017-10-17 09:36:55.048 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6878. 2017-10-17 09:36:55.049 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6879. 2017-10-17 09:36:55.059 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6880. 2017-10-17 09:36:55.060 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6881. 2017-10-17 09:36:55.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6882. 2017-10-17 09:36:55.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6883. 2017-10-17 09:36:55.096 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6884. 2017-10-17 09:36:55.097 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6885. 2017-10-17 09:36:55.099 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6886. 2017-10-17 09:36:55.101 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6887. 2017-10-17 09:36:55.102 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6888. 2017-10-17 09:36:55.103 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6889. 2017-10-17 09:36:55.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  6890. 2017-10-17 09:36:55.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6891. 2017-10-17 09:36:55.111 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6892. 2017-10-17 09:36:55.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  6893. 2017-10-17 09:36:55.138 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6894. 2017-10-17 09:36:55.138 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6895. 2017-10-17 09:36:55.144 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6896. 2017-10-17 09:36:55.145 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6897. 2017-10-17 09:36:55.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6898. 2017-10-17 09:36:55.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6899. 2017-10-17 09:36:55.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6900. 2017-10-17 09:36:55.176 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6901. 2017-10-17 09:36:55.177 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6902. 2017-10-17 09:36:55.209 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  6903. 2017-10-17 09:36:55.224 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6904. 2017-10-17 09:36:55.224 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6905. 2017-10-17 09:36:55.224 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6906. 2017-10-17 09:36:55.266 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6907. 2017-10-17 09:36:55.267 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6908. 2017-10-17 09:36:55.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6909. 2017-10-17 09:36:55.268 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6910. 2017-10-17 09:36:55.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6911. 2017-10-17 09:36:55.269 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6912. 2017-10-17 09:36:55.299 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6913. 2017-10-17 09:36:55.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6914. 2017-10-17 09:36:55.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6915. 2017-10-17 09:36:55.304 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6916. 2017-10-17 09:36:55.305 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6917. 2017-10-17 09:36:55.305 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6918. 2017-10-17 09:36:55.315 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6919. 2017-10-17 09:36:55.316 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6920. 2017-10-17 09:36:55.317 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6921. 2017-10-17 09:36:55.339 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6922. 2017-10-17 09:36:55.340 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6923. 2017-10-17 09:36:55.340 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6924. 2017-10-17 09:36:55.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6925. 2017-10-17 09:36:55.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6926. 2017-10-17 09:36:55.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6927. 2017-10-17 09:36:55.367 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6928. 2017-10-17 09:36:55.378 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6929. 2017-10-17 09:36:55.379 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6930. 2017-10-17 09:36:55.379 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6931. 2017-10-17 09:36:55.404 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6932. 2017-10-17 09:36:55.405 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6933. 2017-10-17 09:36:55.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6934. 2017-10-17 09:36:55.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6935. 2017-10-17 09:36:55.418 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6936. 2017-10-17 09:36:55.432 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6937. 2017-10-17 09:36:55.451 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6938. 2017-10-17 09:36:55.452 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6939. 2017-10-17 09:36:55.454 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6940. 2017-10-17 09:36:55.455 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6941. 2017-10-17 09:36:55.456 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6942. 2017-10-17 09:36:55.459 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6943. 2017-10-17 09:36:55.475 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6944. 2017-10-17 09:36:55.477 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6945. 2017-10-17 09:36:55.478 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6946. 2017-10-17 09:36:55.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6947. 2017-10-17 09:36:55.495 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6948. 2017-10-17 09:36:55.496 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6949. 2017-10-17 09:36:55.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6950. 2017-10-17 09:36:55.511 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6951. 2017-10-17 09:36:55.528 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6952. 2017-10-17 09:36:55.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6953. 2017-10-17 09:36:55.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6954. 2017-10-17 09:36:55.949 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6955. 2017-10-17 09:36:55.950 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6956. 2017-10-17 09:36:55.951 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6957. 2017-10-17 09:36:55.978 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6958. 2017-10-17 09:36:56.024 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6959. 2017-10-17 09:36:56.026 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6960. 2017-10-17 09:36:56.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6961. 2017-10-17 09:36:56.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6962. 2017-10-17 09:36:56.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  6963. 2017-10-17 09:36:56.168 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6964. 2017-10-17 09:36:56.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6965. 2017-10-17 09:36:56.203 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6966. 2017-10-17 09:36:56.234 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6967. 2017-10-17 09:36:56.235 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6968. 2017-10-17 09:36:56.235 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6969. 2017-10-17 09:36:56.310 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6970. 2017-10-17 09:36:56.311 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6971. 2017-10-17 09:36:56.311 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6972. 2017-10-17 09:36:56.354 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6973. 2017-10-17 09:36:56.387 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6974. 2017-10-17 09:36:56.387 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6975. 2017-10-17 09:36:56.390 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6976. 2017-10-17 09:36:56.390 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6977. 2017-10-17 09:36:56.429 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  6978. 2017-10-17 09:36:56.527 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6979. 2017-10-17 09:36:56.847 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6980. 2017-10-17 09:36:56.847 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6981. 2017-10-17 09:36:56.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6982. 2017-10-17 09:36:56.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6983. 2017-10-17 09:36:56.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6984. 2017-10-17 09:36:56.958 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  6985. 2017-10-17 09:36:56.959 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6986. 2017-10-17 09:36:56.959 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6987. 2017-10-17 09:36:57.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6988. 2017-10-17 09:36:57.063 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6989. 2017-10-17 09:36:57.064 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6990. 2017-10-17 09:36:57.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  6991. 2017-10-17 09:36:57.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  6992. 2017-10-17 09:36:57.203 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  6993. 2017-10-17 09:36:57.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  6994. 2017-10-17 09:36:57.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  6995. 2017-10-17 09:36:57.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  6996. 2017-10-17 09:45:39.327 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6997. 2017-10-17 09:45:39.327 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6998. 2017-10-17 09:45:39.327 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6999. 2017-10-17 09:45:39.327 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7000. 2017-10-17 09:45:39.327 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7001. 2017-10-17 09:45:39.497 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7002. 2017-10-17 09:45:39.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7003. 2017-10-17 09:45:39.504 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7004. 2017-10-17 09:45:39.505 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7005. 2017-10-17 09:45:39.517 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7006. 2017-10-17 09:45:39.518 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7007. 2017-10-17 09:45:39.522 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7008. 2017-10-17 09:45:39.523 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7009. 2017-10-17 09:45:39.523 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7010. 2017-10-17 09:45:39.524 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7011. 2017-10-17 09:45:39.526 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7012. 2017-10-17 09:45:39.534 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7013. 2017-10-17 09:45:39.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7014. 2017-10-17 09:45:39.551 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7015. 2017-10-17 09:45:39.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7016. 2017-10-17 09:45:39.584 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7017. 2017-10-17 09:45:39.585 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7018. 2017-10-17 09:45:39.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7019. 2017-10-17 09:45:39.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7020. 2017-10-17 09:45:39.599 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7021. 2017-10-17 09:45:39.599 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7022. 2017-10-17 09:45:39.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7023. 2017-10-17 09:45:39.614 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7024. 2017-10-17 09:45:39.635 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7025. 2017-10-17 09:45:39.635 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7026. 2017-10-17 09:45:39.646 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7027. 2017-10-17 09:45:39.647 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7028. 2017-10-17 09:45:39.647 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7029. 2017-10-17 09:45:39.648 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7030. 2017-10-17 09:45:39.648 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7031. 2017-10-17 09:45:39.648 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7032. 2017-10-17 09:45:39.674 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7033. 2017-10-17 09:45:39.676 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7034. 2017-10-17 09:45:39.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7035. 2017-10-17 09:45:39.698 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7036. 2017-10-17 09:45:39.698 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7037. 2017-10-17 09:45:39.706 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7038. 2017-10-17 09:45:39.707 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7039. 2017-10-17 09:45:39.707 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7040. 2017-10-17 09:45:39.736 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7041. 2017-10-17 09:45:39.736 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7042. 2017-10-17 09:45:39.738 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7043. 2017-10-17 09:45:39.738 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7044. 2017-10-17 09:45:39.738 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7045. 2017-10-17 09:45:39.739 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7046. 2017-10-17 09:45:39.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7047. 2017-10-17 09:45:39.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7048. 2017-10-17 09:45:39.774 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7049. 2017-10-17 09:45:39.793 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  7050. 2017-10-17 09:45:39.794 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  7051. 2017-10-17 09:45:39.815 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7052. 2017-10-17 09:45:39.816 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7053. 2017-10-17 09:45:39.818 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7054. 2017-10-17 09:45:39.818 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7055. 2017-10-17 09:45:39.819 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7056. 2017-10-17 09:45:39.820 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7057. 2017-10-17 09:45:39.839 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7058. 2017-10-17 09:45:39.853 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7059. 2017-10-17 09:45:39.853 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7060. 2017-10-17 09:45:39.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  7061. 2017-10-17 09:45:39.863 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7062. 2017-10-17 09:45:39.864 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7063. 2017-10-17 09:45:39.873 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7064. 2017-10-17 09:45:39.874 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7065. 2017-10-17 09:45:39.886 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  7066. 2017-10-17 09:45:39.886 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  7067. 2017-10-17 09:45:39.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7068. 2017-10-17 09:45:39.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7069. 2017-10-17 09:45:39.932 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7070. 2017-10-17 09:45:39.979 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7071. 2017-10-17 09:45:39.984 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7072. 2017-10-17 09:45:39.984 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7073. 2017-10-17 09:45:39.984 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7074. 2017-10-17 09:45:40.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7075. 2017-10-17 09:45:40.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7076. 2017-10-17 09:45:40.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7077. 2017-10-17 09:45:40.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7078. 2017-10-17 09:45:40.018 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7079. 2017-10-17 09:45:40.018 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7080. 2017-10-17 09:45:40.046 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7081. 2017-10-17 09:45:40.047 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7082. 2017-10-17 09:45:40.047 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7083. 2017-10-17 09:45:40.047 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7084. 2017-10-17 09:45:40.048 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7085. 2017-10-17 09:45:40.048 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7086. 2017-10-17 09:45:40.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7087. 2017-10-17 09:45:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7088. 2017-10-17 09:45:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7089. 2017-10-17 09:45:40.102 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7090. 2017-10-17 09:45:40.102 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7091. 2017-10-17 09:45:40.102 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7092. 2017-10-17 09:45:40.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7093. 2017-10-17 09:45:40.103 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7094. 2017-10-17 09:45:40.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7095. 2017-10-17 09:45:40.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7096. 2017-10-17 09:45:40.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7097. 2017-10-17 09:45:40.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7098. 2017-10-17 09:45:40.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7099. 2017-10-17 09:45:40.152 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7100. 2017-10-17 09:45:40.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7101. 2017-10-17 09:45:40.199 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7102. 2017-10-17 09:45:40.199 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7103. 2017-10-17 09:45:40.201 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7104. 2017-10-17 09:45:40.201 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7105. 2017-10-17 09:45:40.202 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7106. 2017-10-17 09:45:40.202 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7107. 2017-10-17 09:45:40.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7108. 2017-10-17 09:45:40.203 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7109. 2017-10-17 09:45:40.215 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7110. 2017-10-17 09:45:40.216 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7111. 2017-10-17 09:45:40.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7112. 2017-10-17 09:45:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7113. 2017-10-17 09:45:40.232 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7114. 2017-10-17 09:45:40.235 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  7115. 2017-10-17 09:45:40.242 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7116. 2017-10-17 09:45:40.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7117. 2017-10-17 09:45:40.277 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7118. 2017-10-17 09:45:40.278 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7119. 2017-10-17 09:45:40.304 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7120. 2017-10-17 09:45:40.305 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7121. 2017-10-17 09:45:40.305 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7122. 2017-10-17 09:45:40.404 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7123. 2017-10-17 09:45:40.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7124. 2017-10-17 09:45:40.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7125. 2017-10-17 09:45:40.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7126. 2017-10-17 09:45:40.493 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7127. 2017-10-17 09:45:40.494 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7128. 2017-10-17 09:45:40.499 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7129. 2017-10-17 09:45:40.500 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7130. 2017-10-17 09:45:40.586 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  7131. 2017-10-17 09:45:40.613 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7132. 2017-10-17 09:45:40.643 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7133. 2017-10-17 09:45:40.643 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7134. 2017-10-17 09:45:40.670 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7135. 2017-10-17 09:45:40.671 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7136. 2017-10-17 09:45:40.672 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7137. 2017-10-17 09:45:40.762 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7138. 2017-10-17 09:45:40.764 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7139. 2017-10-17 09:45:40.765 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7140. 2017-10-17 09:45:40.824 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7141. 2017-10-17 09:45:40.855 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7142. 2017-10-17 09:45:40.857 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7143. 2017-10-17 09:45:40.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7144. 2017-10-17 09:45:40.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7145. 2017-10-17 09:45:40.928 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  7146. 2017-10-17 09:45:41.032 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7147. 2017-10-17 09:45:41.063 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7148. 2017-10-17 09:45:41.064 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7149. 2017-10-17 09:45:41.091 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7150. 2017-10-17 09:45:41.092 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7151. 2017-10-17 09:45:41.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7152. 2017-10-17 09:45:41.217 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7153. 2017-10-17 09:45:41.218 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7154. 2017-10-17 09:45:41.218 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7155. 2017-10-17 09:45:41.288 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7156. 2017-10-17 09:45:41.332 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7157. 2017-10-17 09:45:41.333 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7158. 2017-10-17 09:45:41.371 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7159. 2017-10-17 09:45:41.372 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7160. 2017-10-17 09:45:41.458 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7161. 2017-10-17 09:45:41.460 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7162. 2017-10-17 09:45:41.461 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7163. 2017-10-17 09:45:41.532 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7164. 2017-10-17 09:46:12.315 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7165. 2017-10-17 09:46:12.315 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7166. 2017-10-17 09:46:12.315 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7167. 2017-10-17 09:46:12.315 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7168. 2017-10-17 09:46:12.315 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7169. 2017-10-17 09:46:12.352 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7170. 2017-10-17 09:46:12.352 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7171. 2017-10-17 09:46:12.353 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7172. 2017-10-17 09:46:12.353 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7173. 2017-10-17 09:46:12.353 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7174. 2017-10-17 09:46:12.354 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7175. 2017-10-17 09:46:12.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7176. 2017-10-17 09:46:12.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7177. 2017-10-17 09:46:12.357 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7178. 2017-10-17 09:46:12.357 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7179. 2017-10-17 09:46:12.387 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7180. 2017-10-17 09:46:12.389 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7181. 2017-10-17 09:46:12.389 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7182. 2017-10-17 09:46:12.389 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7183. 2017-10-17 09:46:12.390 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7184. 2017-10-17 09:46:12.390 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7185. 2017-10-17 09:46:12.394 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7186. 2017-10-17 09:46:12.394 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7187. 2017-10-17 09:46:12.395 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7188. 2017-10-17 09:46:12.395 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7189. 2017-10-17 09:46:12.395 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7190. 2017-10-17 09:46:12.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7191. 2017-10-17 09:46:12.395 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7192. 2017-10-17 09:46:12.396 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7193. 2017-10-17 09:46:12.396 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7194. 2017-10-17 09:46:12.437 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7195. 2017-10-17 09:46:12.438 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7196. 2017-10-17 09:46:12.438 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7197. 2017-10-17 09:46:12.439 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7198. 2017-10-17 09:46:12.439 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7199. 2017-10-17 09:46:12.440 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7200. 2017-10-17 09:46:12.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7201. 2017-10-17 09:46:12.470 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7202. 2017-10-17 09:46:12.471 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7203. 2017-10-17 09:46:12.471 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7204. 2017-10-17 09:46:12.471 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7205. 2017-10-17 09:46:12.472 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7206. 2017-10-17 09:46:12.472 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7207. 2017-10-17 09:46:12.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7208. 2017-10-17 09:46:12.515 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7209. 2017-10-17 09:46:12.516 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7210. 2017-10-17 09:46:12.522 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7211. 2017-10-17 09:46:12.523 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7212. 2017-10-17 09:46:12.524 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7213. 2017-10-17 09:46:12.525 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7214. 2017-10-17 09:46:12.534 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7215. 2017-10-17 09:46:12.534 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7216. 2017-10-17 09:46:12.535 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7217. 2017-10-17 09:46:12.553 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7218. 2017-10-17 09:46:12.554 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7219. 2017-10-17 09:46:12.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  7220. 2017-10-17 09:46:12.586 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  7221. 2017-10-17 09:46:12.600 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7222. 2017-10-17 09:46:12.632 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7223. 2017-10-17 09:46:12.633 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7224. 2017-10-17 09:46:12.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  7225. 2017-10-17 09:46:12.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  7226. 2017-10-17 09:46:12.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7227. 2017-10-17 09:46:12.786 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7228. 2017-10-17 09:46:12.789 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  7229. 2017-10-17 09:46:12.789 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7230. 2017-10-17 09:46:12.790 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7231. 2017-10-17 09:46:12.818 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7232. 2017-10-17 09:46:12.819 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7233. 2017-10-17 09:46:12.834 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7234. 2017-10-17 09:46:12.835 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7235. 2017-10-17 09:46:12.878 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7236. 2017-10-17 09:46:12.879 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7237. 2017-10-17 09:46:12.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7238. 2017-10-17 09:46:12.942 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7239. 2017-10-17 09:46:12.981 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7240. 2017-10-17 09:46:12.981 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7241. 2017-10-17 09:46:12.981 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7242. 2017-10-17 09:46:13.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7243. 2017-10-17 09:46:13.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7244. 2017-10-17 09:46:13.018 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7245. 2017-10-17 09:46:13.018 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7246. 2017-10-17 09:46:13.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7247. 2017-10-17 09:46:13.019 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7248. 2017-10-17 09:46:13.050 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7249. 2017-10-17 09:46:13.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7250. 2017-10-17 09:46:13.051 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7251. 2017-10-17 09:46:13.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7252. 2017-10-17 09:46:13.052 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7253. 2017-10-17 09:46:13.053 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7254. 2017-10-17 09:46:13.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7255. 2017-10-17 09:46:13.056 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7256. 2017-10-17 09:46:13.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7257. 2017-10-17 09:46:13.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7258. 2017-10-17 09:46:13.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7259. 2017-10-17 09:46:13.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7260. 2017-10-17 09:46:13.179 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7261. 2017-10-17 09:46:13.180 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7262. 2017-10-17 09:46:13.180 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7263. 2017-10-17 09:46:13.181 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7264. 2017-10-17 09:46:13.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7265. 2017-10-17 09:46:13.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7266. 2017-10-17 09:46:13.200 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7267. 2017-10-17 09:46:13.245 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7268. 2017-10-17 09:46:13.247 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7269. 2017-10-17 09:46:13.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7270. 2017-10-17 09:46:13.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7271. 2017-10-17 09:46:13.250 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7272. 2017-10-17 09:46:13.250 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7273. 2017-10-17 09:46:13.282 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7274. 2017-10-17 09:46:13.284 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7275. 2017-10-17 09:46:13.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7276. 2017-10-17 09:46:13.286 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7277. 2017-10-17 09:46:13.287 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7278. 2017-10-17 09:46:13.308 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7279. 2017-10-17 09:46:13.310 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7280. 2017-10-17 09:46:13.312 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7281. 2017-10-17 09:46:13.312 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7282. 2017-10-17 09:46:13.317 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7283. 2017-10-17 09:46:13.357 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  7284. 2017-10-17 09:46:13.364 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7285. 2017-10-17 09:46:13.397 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7286. 2017-10-17 09:46:13.398 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7287. 2017-10-17 09:46:13.450 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7288. 2017-10-17 09:46:13.451 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7289. 2017-10-17 09:46:13.452 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7290. 2017-10-17 09:46:13.582 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7291. 2017-10-17 09:46:13.583 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7292. 2017-10-17 09:46:13.583 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7293. 2017-10-17 09:46:13.654 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7294. 2017-10-17 09:46:13.702 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7295. 2017-10-17 09:46:13.703 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7296. 2017-10-17 09:46:13.708 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7297. 2017-10-17 09:46:13.709 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7298. 2017-10-17 09:46:13.804 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  7299. 2017-10-17 09:46:13.848 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7300. 2017-10-17 09:46:13.881 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7301. 2017-10-17 09:46:13.882 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7302. 2017-10-17 09:46:13.921 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7303. 2017-10-17 09:46:13.922 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7304. 2017-10-17 09:46:13.922 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7305. 2017-10-17 09:46:14.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7306. 2017-10-17 09:46:14.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7307. 2017-10-17 09:46:14.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7308. 2017-10-17 09:46:14.136 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7309. 2017-10-17 09:46:14.184 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7310. 2017-10-17 09:46:14.185 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7311. 2017-10-17 09:46:14.189 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7312. 2017-10-17 09:46:14.190 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7313. 2017-10-17 09:46:14.261 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  7314. 2017-10-17 09:46:14.360 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7315. 2017-10-17 09:46:14.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7316. 2017-10-17 09:46:14.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7317. 2017-10-17 09:46:14.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7318. 2017-10-17 09:46:14.433 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7319. 2017-10-17 09:46:14.434 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7320. 2017-10-17 09:46:14.536 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7321. 2017-10-17 09:46:14.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7322. 2017-10-17 09:46:14.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7323. 2017-10-17 09:46:14.604 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7324. 2017-10-17 09:46:14.652 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7325. 2017-10-17 09:46:14.653 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7326. 2017-10-17 09:46:14.693 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7327. 2017-10-17 09:46:14.694 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7328. 2017-10-17 09:46:14.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7329. 2017-10-17 09:46:14.767 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7330. 2017-10-17 09:46:14.768 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7331. 2017-10-17 09:46:14.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7332. 2017-10-17 09:46:35.671 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7333. 2017-10-17 09:46:35.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7334. 2017-10-17 09:46:35.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7335. 2017-10-17 09:46:35.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7336. 2017-10-17 09:46:35.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7337. 2017-10-17 09:46:35.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7338. 2017-10-17 09:46:35.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7339. 2017-10-17 09:46:35.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7340. 2017-10-17 09:46:35.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7341. 2017-10-17 09:46:35.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7342. 2017-10-17 09:46:35.975 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7343. 2017-10-17 09:46:35.976 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7344. 2017-10-17 09:46:36.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7345. 2017-10-17 09:46:36.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7346. 2017-10-17 09:46:36.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7347. 2017-10-17 09:46:36.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7348. 2017-10-17 09:46:36.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7349. 2017-10-17 09:46:36.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7350. 2017-10-17 09:46:36.796 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7351. 2017-10-17 09:46:36.830 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7352. 2017-10-17 09:46:36.831 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7353. 2017-10-17 09:46:36.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7354. 2017-10-17 09:46:36.877 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7355. 2017-10-17 09:46:36.877 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7356. 2017-10-17 09:46:36.934 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7357. 2017-10-17 09:46:36.935 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7358. 2017-10-17 09:46:36.935 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7359. 2017-10-17 09:46:36.976 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7360. 2017-10-17 09:46:37.023 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7361. 2017-10-17 09:46:37.025 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7362. 2017-10-17 09:46:37.063 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7363. 2017-10-17 09:46:37.064 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  7364. 2017-10-17 09:46:37.381 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7365. 2017-10-17 09:46:37.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7366. 2017-10-17 09:46:37.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  7367. 2017-10-17 09:46:37.791 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7368. 2017-10-17 09:46:39.256 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7369. 2017-10-17 09:46:39.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7370. 2017-10-17 09:46:39.291 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7371. 2017-10-17 09:46:39.321 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7372. 2017-10-17 09:46:39.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7373. 2017-10-17 09:46:39.326 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7374. 2017-10-17 09:46:39.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7375. 2017-10-17 09:46:39.364 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7376. 2017-10-17 09:46:39.364 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7377. 2017-10-17 09:46:39.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7378. 2017-10-17 09:46:39.450 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7379. 2017-10-17 09:46:39.451 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7380. 2017-10-17 09:46:39.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7381. 2017-10-17 09:46:39.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7382. 2017-10-17 09:46:39.543 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7383. 2017-10-17 09:46:39.544 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7384. 2017-10-17 09:46:39.545 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7385. 2017-10-17 09:46:39.598 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7386. 2017-10-17 09:46:41.671 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7387. 2017-10-17 09:46:41.707 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7388. 2017-10-17 09:46:41.708 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7389. 2017-10-17 09:46:41.741 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7390. 2017-10-17 09:46:41.742 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7391. 2017-10-17 09:46:41.743 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7392. 2017-10-17 09:46:41.793 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7393. 2017-10-17 09:46:41.793 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7394. 2017-10-17 09:46:41.794 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7395. 2017-10-17 09:46:41.842 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7396. 2017-10-17 09:46:41.890 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7397. 2017-10-17 09:46:41.891 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7398. 2017-10-17 09:46:41.930 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7399. 2017-10-17 09:46:41.930 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7400. 2017-10-17 09:46:42.003 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7401. 2017-10-17 09:46:42.006 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7402. 2017-10-17 09:46:42.007 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7403. 2017-10-17 09:46:42.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7404. 2017-10-17 09:46:46.051 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7405. 2017-10-17 09:46:46.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7406. 2017-10-17 09:46:46.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7407. 2017-10-17 09:46:46.117 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7408. 2017-10-17 09:46:46.118 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7409. 2017-10-17 09:46:46.119 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7410. 2017-10-17 09:46:46.194 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7411. 2017-10-17 09:46:46.195 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7412. 2017-10-17 09:46:46.195 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7413. 2017-10-17 09:46:46.273 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7414. 2017-10-17 09:46:46.320 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7415. 2017-10-17 09:46:46.326 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7416. 2017-10-17 09:46:46.364 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7417. 2017-10-17 09:46:46.364 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7418. 2017-10-17 09:46:46.440 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7419. 2017-10-17 09:46:46.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7420. 2017-10-17 09:46:46.443 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7421. 2017-10-17 09:46:46.519 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7422. 2017-10-17 09:46:48.903 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7423. 2017-10-17 09:46:48.936 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7424. 2017-10-17 09:46:48.937 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7425. 2017-10-17 09:46:48.966 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7426. 2017-10-17 09:46:48.967 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7427. 2017-10-17 09:46:48.967 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7428. 2017-10-17 09:46:49.042 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7429. 2017-10-17 09:46:49.043 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7430. 2017-10-17 09:46:49.044 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7431. 2017-10-17 09:46:49.119 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7432. 2017-10-17 09:46:49.166 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7433. 2017-10-17 09:46:49.167 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7434. 2017-10-17 09:46:49.208 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7435. 2017-10-17 09:46:49.209 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7436. 2017-10-17 09:46:49.299 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7437. 2017-10-17 09:46:49.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7438. 2017-10-17 09:46:49.301 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7439. 2017-10-17 09:46:49.378 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7440. 2017-10-17 09:46:52.966 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7441. 2017-10-17 09:46:53.002 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7442. 2017-10-17 09:46:53.003 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7443. 2017-10-17 09:46:53.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7444. 2017-10-17 09:46:53.032 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7445. 2017-10-17 09:46:53.032 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7446. 2017-10-17 09:46:53.100 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7447. 2017-10-17 09:46:53.101 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7448. 2017-10-17 09:46:53.101 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7449. 2017-10-17 09:46:53.168 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7450. 2017-10-17 09:46:53.218 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7451. 2017-10-17 09:46:53.219 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7452. 2017-10-17 09:46:53.276 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7453. 2017-10-17 09:46:53.277 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  7454. 2017-10-17 09:46:53.367 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7455. 2017-10-17 09:46:53.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7456. 2017-10-17 09:46:53.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  7457. 2017-10-17 09:46:53.461 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  7458. 2017-10-17 09:47:25.873 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7459. 2017-10-17 09:47:25.905 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7460. 2017-10-17 09:47:25.906 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7461. 2017-10-17 09:47:25.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7462. 2017-10-17 09:47:25.938 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7463. 2017-10-17 09:47:25.938 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7464. 2017-10-17 09:47:25.999 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7465. 2017-10-17 09:47:26.000 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7466. 2017-10-17 09:47:26.001 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7467. 2017-10-17 09:47:26.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7468. 2017-10-17 09:47:26.106 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7469. 2017-10-17 09:47:26.107 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7470. 2017-10-17 09:47:26.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7471. 2017-10-17 09:47:26.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 11(Integer)
  7472. 2017-10-17 09:47:26.218 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7473. 2017-10-17 09:47:26.220 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7474. 2017-10-17 09:47:26.221 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 11(Integer), 0(Integer), 10(Integer)
  7475. 2017-10-17 09:47:26.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 8
  7476. 2017-10-17 09:47:27.681 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7477. 2017-10-17 09:47:27.714 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7478. 2017-10-17 09:47:27.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7479. 2017-10-17 09:47:27.758 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7480. 2017-10-17 09:47:27.759 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7481. 2017-10-17 09:47:27.760 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7482. 2017-10-17 09:47:27.827 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7483. 2017-10-17 09:47:27.828 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7484. 2017-10-17 09:47:27.829 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7485. 2017-10-17 09:47:27.894 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7486. 2017-10-17 09:47:27.942 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7487. 2017-10-17 09:47:27.943 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7488. 2017-10-17 09:47:27.950 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Preparing: SELECT * FROM check_appeal WHERE task_id = ?
  7489. 2017-10-17 09:47:27.950 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Parameters: 16603(Long)
  7490. 2017-10-17 09:47:28.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| <== Total: 3
  7491. 2017-10-17 09:47:28.030 |-ERROR [http-nio-8089-exec-8] com.xintong.visualinspection.controller.BaseController [195] -| 查询结果过多(一般是期望1个)
  7492. org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3
  7493. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:77)
  7494. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  7495. at com.sun.proxy.$Proxy93.selectOne(Unknown Source)
  7496. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:166)
  7497. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:82)
  7498. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  7499. at com.sun.proxy.$Proxy104.getByTaskId(Unknown Source)
  7500. at com.xintong.visualinspection.service.impl.CheckAppealServiceImpl.getByTaskId(CheckAppealServiceImpl.java:74)
  7501. at com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(CheckAppealController.java:121)
  7502. at com.xintong.visualinspection.controller.CheckAppealController$$FastClassBySpringCGLIB$$dc0cb471.invoke(<generated>)
  7503. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  7504. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  7505. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  7506. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  7507. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  7508. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  7509. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  7510. at com.xintong.visualinspection.controller.CheckAppealController$$EnhancerBySpringCGLIB$$4a5c1d36.getByTaskId(<generated>)
  7511. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  7512. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  7513. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  7514. at java.lang.reflect.Method.invoke(Method.java:497)
  7515. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  7516. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  7517. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  7518. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  7519. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  7520. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  7521. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  7522. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  7523. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  7524. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  7525. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  7526. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  7527. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  7528. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  7529. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7530. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  7531. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7532. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7533. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  7534. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7535. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7536. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7537. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  7538. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7539. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7540. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  7541. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7542. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7543. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  7544. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7545. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7546. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7547. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  7548. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7549. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7550. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  7551. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7552. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7553. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7554. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  7555. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  7556. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  7557. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7558. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  7559. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7560. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  7561. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7562. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  7563. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7564. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  7565. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7566. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  7567. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7568. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  7569. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7570. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7571. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  7572. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7573. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  7574. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7575. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7576. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  7577. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7578. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7579. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  7580. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7581. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  7582. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7583. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7584. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  7585. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  7586. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  7587. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  7588. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7589. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7590. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  7591. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7592. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7593. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7594. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  7595. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7596. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7597. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7598. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  7599. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7600. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7601. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7602. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  7603. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7604. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7605. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7606. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  7607. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7608. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7609. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7610. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  7611. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  7612. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  7613. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  7614. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  7615. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  7616. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  7617. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  7618. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  7619. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  7620. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  7621. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  7622. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  7623. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  7624. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  7625. at java.lang.Thread.run(Thread.java:745)
  7626. Caused by: org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3
  7627. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:81)
  7628. at sun.reflect.GeneratedMethodAccessor279.invoke(Unknown Source)
  7629. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  7630. at java.lang.reflect.Method.invoke(Method.java:497)
  7631. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  7632. ... 131 common frames omitted
  7633. 2017-10-17 09:47:28.031 |-WARN [http-nio-8089-exec-8] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3
  7634. 2017-10-17 09:47:30.499 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7635. 2017-10-17 09:47:30.532 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7636. 2017-10-17 09:47:30.532 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7637. 2017-10-17 09:47:30.562 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7638. 2017-10-17 09:47:30.563 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7639. 2017-10-17 09:47:30.564 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7640. 2017-10-17 09:47:30.616 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7641. 2017-10-17 09:47:30.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7642. 2017-10-17 09:47:30.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7643. 2017-10-17 09:47:30.668 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7644. 2017-10-17 09:47:30.715 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7645. 2017-10-17 09:47:30.717 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7646. 2017-10-17 09:47:30.719 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Preparing: SELECT * FROM check_appeal WHERE task_id = ?
  7647. 2017-10-17 09:47:30.719 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Parameters: 16603(Long)
  7648. 2017-10-17 09:47:30.769 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| <== Total: 3
  7649. 2017-10-17 09:47:30.772 |-ERROR [http-nio-8089-exec-3] com.xintong.visualinspection.controller.BaseController [195] -| 查询结果过多(一般是期望1个)
  7650. org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3
  7651. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:77)
  7652. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  7653. at com.sun.proxy.$Proxy93.selectOne(Unknown Source)
  7654. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:166)
  7655. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:82)
  7656. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  7657. at com.sun.proxy.$Proxy104.getByTaskId(Unknown Source)
  7658. at com.xintong.visualinspection.service.impl.CheckAppealServiceImpl.getByTaskId(CheckAppealServiceImpl.java:74)
  7659. at com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(CheckAppealController.java:121)
  7660. at com.xintong.visualinspection.controller.CheckAppealController$$FastClassBySpringCGLIB$$dc0cb471.invoke(<generated>)
  7661. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  7662. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  7663. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  7664. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  7665. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  7666. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  7667. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  7668. at com.xintong.visualinspection.controller.CheckAppealController$$EnhancerBySpringCGLIB$$4a5c1d36.getByTaskId(<generated>)
  7669. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  7670. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  7671. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  7672. at java.lang.reflect.Method.invoke(Method.java:497)
  7673. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  7674. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  7675. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  7676. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  7677. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  7678. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  7679. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  7680. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  7681. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  7682. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  7683. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  7684. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  7685. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  7686. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  7687. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7688. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  7689. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7690. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7691. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  7692. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7693. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7694. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7695. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  7696. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7697. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7698. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  7699. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7700. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7701. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  7702. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7703. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7704. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7705. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  7706. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7707. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7708. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  7709. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7710. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7711. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7712. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  7713. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  7714. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  7715. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7716. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  7717. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7718. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  7719. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7720. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  7721. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7722. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  7723. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7724. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  7725. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7726. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  7727. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7728. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7729. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  7730. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7731. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  7732. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7733. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7734. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  7735. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7736. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7737. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  7738. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7739. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  7740. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7741. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  7742. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  7743. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  7744. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  7745. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  7746. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7747. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7748. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  7749. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7750. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7751. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7752. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  7753. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7754. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7755. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7756. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  7757. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7758. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7759. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7760. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  7761. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7762. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7763. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7764. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  7765. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  7766. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  7767. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  7768. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  7769. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  7770. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  7771. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  7772. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  7773. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  7774. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  7775. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  7776. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  7777. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  7778. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  7779. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  7780. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  7781. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  7782. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  7783. at java.lang.Thread.run(Thread.java:745)
  7784. Caused by: org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3
  7785. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:81)
  7786. at sun.reflect.GeneratedMethodAccessor279.invoke(Unknown Source)
  7787. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  7788. at java.lang.reflect.Method.invoke(Method.java:497)
  7789. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  7790. ... 131 common frames omitted
  7791. 2017-10-17 09:47:30.773 |-WARN [http-nio-8089-exec-3] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3
  7792. 2017-10-17 09:47:33.166 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7793. 2017-10-17 09:47:33.198 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7794. 2017-10-17 09:47:33.199 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7795. 2017-10-17 09:47:33.238 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7796. 2017-10-17 09:47:33.239 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7797. 2017-10-17 09:47:33.239 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7798. 2017-10-17 09:47:33.284 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7799. 2017-10-17 09:47:33.285 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7800. 2017-10-17 09:47:33.286 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7801. 2017-10-17 09:47:33.333 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7802. 2017-10-17 09:47:33.379 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7803. 2017-10-17 09:47:33.381 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7804. 2017-10-17 09:47:33.383 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Preparing: SELECT * FROM check_appeal WHERE task_id = ?
  7805. 2017-10-17 09:47:33.383 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Parameters: 16265(Long)
  7806. 2017-10-17 09:47:33.427 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| <== Total: 1
  7807. 2017-10-17 09:47:33.614 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7808. 2017-10-17 09:47:33.617 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7809. 2017-10-17 09:47:33.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7810. 2017-10-17 09:47:33.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7811. 2017-10-17 09:47:33.677 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7812. 2017-10-17 09:47:33.679 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7813. 2017-10-17 09:47:33.679 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7814. 2017-10-17 09:47:33.727 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7815. 2017-10-17 09:47:33.729 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7816. 2017-10-17 09:47:33.729 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7817. 2017-10-17 09:47:33.760 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7818. 2017-10-17 09:47:33.760 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7819. 2017-10-17 09:47:33.771 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7820. 2017-10-17 09:47:33.790 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7821. 2017-10-17 09:47:33.792 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7822. 2017-10-17 09:47:33.792 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7823. 2017-10-17 09:47:33.817 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7824. 2017-10-17 09:47:33.818 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7825. 2017-10-17 09:47:33.836 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7826. 2017-10-17 09:47:33.837 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7827. 2017-10-17 09:47:33.837 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7828. 2017-10-17 09:47:33.855 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  7829. 2017-10-17 09:47:33.856 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 16265(Long)
  7830. 2017-10-17 09:47:33.874 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7831. 2017-10-17 09:47:33.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  7832. 2017-10-17 09:47:33.922 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7833. 2017-10-17 09:47:33.923 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7834. 2017-10-17 09:47:33.938 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  7835. 2017-10-17 09:47:33.939 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 16265(Long)
  7836. 2017-10-17 09:47:33.977 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 0
  7837. 2017-10-17 09:47:36.928 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7838. 2017-10-17 09:47:36.961 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7839. 2017-10-17 09:47:36.962 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7840. 2017-10-17 09:47:36.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7841. 2017-10-17 09:47:36.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7842. 2017-10-17 09:47:36.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7843. 2017-10-17 09:47:37.089 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7844. 2017-10-17 09:47:37.089 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7845. 2017-10-17 09:47:37.090 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7846. 2017-10-17 09:47:37.144 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7847. 2017-10-17 09:47:37.189 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7848. 2017-10-17 09:47:37.190 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7849. 2017-10-17 09:47:37.230 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT *, CONCAT(substr(start_time, 1, 16), '-', substr(end_time, 11, 6)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = check_status) AS check_status_name FROM check_task WHERE 1 = 1 AND check_status >= ? AND check_status <= ?) table_count
  7850. 2017-10-17 09:47:37.232 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited_COUNT [159] -| ==> Parameters: 11(Integer), 14(Integer)
  7851. 2017-10-17 09:47:37.283 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited_COUNT [159] -| <== Total: 1
  7852. 2017-10-17 09:47:37.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited [159] -| ==> Preparing: SELECT *, CONCAT(substr(start_time,1,16),'-',substr(end_time,11,6)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=check_status) as check_status_name FROM check_task WHERE 1=1 AND check_status >= ? AND check_status <= ? limit ?,?
  7853. 2017-10-17 09:47:37.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited [159] -| ==> Parameters: 11(Integer), 14(Integer), 0(Integer), 10(Integer)
  7854. 2017-10-17 09:47:37.342 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited [159] -| <== Total: 8
  7855. 2017-10-17 09:47:39.072 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7856. 2017-10-17 09:47:39.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7857. 2017-10-17 09:47:39.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7858. 2017-10-17 09:47:39.133 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7859. 2017-10-17 09:47:39.134 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7860. 2017-10-17 09:47:39.134 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7861. 2017-10-17 09:47:39.247 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7862. 2017-10-17 09:47:39.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7863. 2017-10-17 09:47:39.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7864. 2017-10-17 09:47:39.317 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7865. 2017-10-17 09:47:39.361 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7866. 2017-10-17 09:47:39.363 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7867. 2017-10-17 09:47:39.365 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Preparing: SELECT * FROM check_appeal WHERE task_id = ?
  7868. 2017-10-17 09:47:39.365 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Parameters: 15533(Long)
  7869. 2017-10-17 09:47:39.424 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| <== Total: 1
  7870. 2017-10-17 09:47:39.451 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7871. 2017-10-17 09:47:39.452 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7872. 2017-10-17 09:47:39.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7873. 2017-10-17 09:47:39.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7874. 2017-10-17 09:47:39.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7875. 2017-10-17 09:47:39.514 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7876. 2017-10-17 09:47:39.514 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7877. 2017-10-17 09:47:39.514 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7878. 2017-10-17 09:47:39.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7879. 2017-10-17 09:47:39.546 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7880. 2017-10-17 09:47:39.547 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7881. 2017-10-17 09:47:39.548 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7882. 2017-10-17 09:47:39.609 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7883. 2017-10-17 09:47:39.611 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7884. 2017-10-17 09:47:39.611 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7885. 2017-10-17 09:47:39.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7886. 2017-10-17 09:47:39.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7887. 2017-10-17 09:47:39.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7888. 2017-10-17 09:47:39.676 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7889. 2017-10-17 09:47:39.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7890. 2017-10-17 09:47:39.724 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7891. 2017-10-17 09:47:39.725 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7892. 2017-10-17 09:47:39.730 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  7893. 2017-10-17 09:47:39.731 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 15533(Long)
  7894. 2017-10-17 09:47:39.731 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7895. 2017-10-17 09:47:39.732 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7896. 2017-10-17 09:47:39.735 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  7897. 2017-10-17 09:47:39.736 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 15533(Long)
  7898. 2017-10-17 09:47:39.797 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  7899. 2017-10-17 09:47:39.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 7
  7900. 2017-10-17 09:47:45.247 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7901. 2017-10-17 09:47:45.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7902. 2017-10-17 09:47:45.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7903. 2017-10-17 09:47:45.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7904. 2017-10-17 09:47:45.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7905. 2017-10-17 09:47:45.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7906. 2017-10-17 09:47:45.367 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7907. 2017-10-17 09:47:45.368 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7908. 2017-10-17 09:47:45.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7909. 2017-10-17 09:47:45.423 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7910. 2017-10-17 09:47:45.467 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7911. 2017-10-17 09:47:45.469 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7912. 2017-10-17 09:47:45.520 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count
  7913. 2017-10-17 09:47:45.521 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 12(Integer), 13(Integer)
  7914. 2017-10-17 09:47:45.590 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  7915. 2017-10-17 09:47:48.375 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7916. 2017-10-17 09:47:48.407 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7917. 2017-10-17 09:47:48.407 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7918. 2017-10-17 09:47:48.439 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7919. 2017-10-17 09:47:48.440 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7920. 2017-10-17 09:47:48.440 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7921. 2017-10-17 09:47:48.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7922. 2017-10-17 09:47:48.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7923. 2017-10-17 09:47:48.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7924. 2017-10-17 09:47:48.599 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7925. 2017-10-17 09:47:48.645 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7926. 2017-10-17 09:47:48.646 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7927. 2017-10-17 09:47:48.686 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  7928. 2017-10-17 09:47:48.686 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 17(Integer)
  7929. 2017-10-17 09:47:48.757 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  7930. 2017-10-17 09:47:48.759 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  7931. 2017-10-17 09:47:48.760 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 17(Integer), 0(Integer), 10(Integer)
  7932. 2017-10-17 09:47:48.835 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 1
  7933. 2017-10-17 09:47:51.938 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7934. 2017-10-17 09:47:51.969 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7935. 2017-10-17 09:47:51.970 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7936. 2017-10-17 09:47:52.001 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7937. 2017-10-17 09:47:52.002 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7938. 2017-10-17 09:47:52.002 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7939. 2017-10-17 09:47:52.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7940. 2017-10-17 09:47:52.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7941. 2017-10-17 09:47:52.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7942. 2017-10-17 09:47:52.109 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7943. 2017-10-17 09:47:52.153 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7944. 2017-10-17 09:47:52.154 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7945. 2017-10-17 09:47:52.156 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Preparing: SELECT * FROM check_appeal WHERE task_id = ?
  7946. 2017-10-17 09:47:52.156 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| ==> Parameters: 16162(Long)
  7947. 2017-10-17 09:47:52.206 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckAppealDao.getByTaskId [159] -| <== Total: 1
  7948. 2017-10-17 09:47:52.260 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7949. 2017-10-17 09:47:52.260 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7950. 2017-10-17 09:47:52.260 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7951. 2017-10-17 09:47:52.260 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7952. 2017-10-17 09:47:52.290 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7953. 2017-10-17 09:47:52.291 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7954. 2017-10-17 09:47:52.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7955. 2017-10-17 09:47:52.293 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7956. 2017-10-17 09:47:52.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7957. 2017-10-17 09:47:52.333 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7958. 2017-10-17 09:47:52.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7959. 2017-10-17 09:47:52.334 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7960. 2017-10-17 09:47:52.334 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7961. 2017-10-17 09:47:52.334 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7962. 2017-10-17 09:47:52.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7963. 2017-10-17 09:47:52.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7964. 2017-10-17 09:47:52.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7965. 2017-10-17 09:47:52.425 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7966. 2017-10-17 09:47:52.427 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7967. 2017-10-17 09:47:52.427 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7968. 2017-10-17 09:47:52.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7969. 2017-10-17 09:47:52.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7970. 2017-10-17 09:47:52.466 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7971. 2017-10-17 09:47:52.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7972. 2017-10-17 09:47:52.466 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7973. 2017-10-17 09:47:52.484 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7974. 2017-10-17 09:47:52.496 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7975. 2017-10-17 09:47:52.498 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7976. 2017-10-17 09:47:52.498 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7977. 2017-10-17 09:47:52.500 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7978. 2017-10-17 09:47:52.500 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7979. 2017-10-17 09:47:52.501 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7980. 2017-10-17 09:47:52.503 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7981. 2017-10-17 09:47:52.504 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7982. 2017-10-17 09:47:52.561 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7983. 2017-10-17 09:47:52.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7984. 2017-10-17 09:47:52.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7985. 2017-10-17 09:47:52.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? )
  7986. 2017-10-17 09:47:52.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2347(Long), 16162(Long)
  7987. 2017-10-17 09:47:52.583 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7988. 2017-10-17 09:47:52.585 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7989. 2017-10-17 09:47:52.590 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Preparing: SELECT * FROM t_sys_users WHERE id = ?
  7990. 2017-10-17 09:47:52.591 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Parameters: 2347(Integer)
  7991. 2017-10-17 09:47:52.594 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  7992. 2017-10-17 09:47:52.595 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7993. 2017-10-17 09:47:52.596 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7994. 2017-10-17 09:47:52.615 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7995. 2017-10-17 09:47:52.622 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| <== Total: 1
  7996. 2017-10-17 09:47:52.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <== Total: 1
  7997. 2017-10-17 09:47:52.633 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7998. 2017-10-17 09:47:52.647 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7999. 2017-10-17 09:47:52.671 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8000. 2017-10-17 09:47:52.671 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8001. 2017-10-17 09:47:52.671 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8002. 2017-10-17 09:47:52.672 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8003. 2017-10-17 09:47:52.675 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  8004. 2017-10-17 09:47:52.676 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 16162(Long)
  8005. 2017-10-17 09:47:52.702 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8006. 2017-10-17 09:47:52.703 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8007. 2017-10-17 09:47:52.703 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8008. 2017-10-17 09:47:52.736 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  8009. 2017-10-17 09:47:52.744 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8010. 2017-10-17 09:47:52.745 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8011. 2017-10-17 09:47:52.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  8012. 2017-10-17 09:47:52.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 231(String)
  8013. 2017-10-17 09:47:52.764 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8014. 2017-10-17 09:47:52.765 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8015. 2017-10-17 09:47:52.765 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8016. 2017-10-17 09:47:52.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  8017. 2017-10-17 09:47:52.827 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8018. 2017-10-17 09:47:52.888 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8019. 2017-10-17 09:47:52.889 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8020. 2017-10-17 09:47:52.893 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? )
  8021. 2017-10-17 09:47:52.893 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2347(Long), 16162(Long)
  8022. 2017-10-17 09:47:52.975 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <== Total: 1
  8023. 2017-10-17 09:48:38.916 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8024. 2017-10-17 09:48:38.992 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8025. 2017-10-17 09:48:38.992 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8026. 2017-10-17 09:48:39.025 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8027. 2017-10-17 09:48:39.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8028. 2017-10-17 09:48:39.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8029. 2017-10-17 09:48:39.100 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8030. 2017-10-17 09:48:39.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8031. 2017-10-17 09:48:39.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8032. 2017-10-17 09:48:39.170 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8033. 2017-10-17 09:48:39.253 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8034. 2017-10-17 09:48:39.256 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8035. 2017-10-17 09:48:39.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListByChecked [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,11,6)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.period_id = ? AND t.checked_person = ? order by t.start_time desc
  8036. 2017-10-17 09:48:39.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListByChecked [159] -| ==> Parameters: 23(Integer), 2347(Long)
  8037. 2017-10-17 09:48:39.341 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListByChecked [159] -| <== Total: 1
  8038. 2017-10-17 09:48:39.343 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreListByTaskId [159] -| ==> Preparing: SELECT * FROM check_score WHERE task_id = ?
  8039. 2017-10-17 09:48:39.343 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreListByTaskId [159] -| ==> Parameters: 16162(Long)
  8040. 2017-10-17 09:48:39.409 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreListByTaskId [159] -| <== Total: 2
  8041. 2017-10-17 09:48:43.851 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8042. 2017-10-17 09:48:43.924 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8043. 2017-10-17 09:48:43.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8044. 2017-10-17 09:48:43.961 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8045. 2017-10-17 09:48:43.962 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8046. 2017-10-17 09:48:43.962 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8047. 2017-10-17 09:48:44.028 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8048. 2017-10-17 09:48:44.029 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8049. 2017-10-17 09:48:44.029 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8050. 2017-10-17 09:48:44.079 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8051. 2017-10-17 09:48:44.141 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8052. 2017-10-17 09:48:44.142 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8053. 2017-10-17 09:48:44.145 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  8054. 2017-10-17 09:48:44.145 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 233(String)
  8055. 2017-10-17 09:48:44.179 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  8056. 2017-10-17 09:48:44.424 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8057. 2017-10-17 09:48:44.473 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8058. 2017-10-17 09:48:44.474 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8059. 2017-10-17 09:48:44.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8060. 2017-10-17 09:48:44.505 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8061. 2017-10-17 09:48:44.506 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8062. 2017-10-17 09:48:44.550 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8063. 2017-10-17 09:48:44.551 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8064. 2017-10-17 09:48:44.552 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8065. 2017-10-17 09:48:44.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8066. 2017-10-17 09:48:44.647 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8067. 2017-10-17 09:48:44.649 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8068. 2017-10-17 09:48:44.652 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  8069. 2017-10-17 09:48:44.653 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 230(String)
  8070. 2017-10-17 09:48:44.684 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  8071. 2017-10-17 09:48:45.163 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8072. 2017-10-17 09:48:45.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8073. 2017-10-17 09:48:45.202 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8074. 2017-10-17 09:48:45.234 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8075. 2017-10-17 09:48:45.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8076. 2017-10-17 09:48:45.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8077. 2017-10-17 09:48:45.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8078. 2017-10-17 09:48:45.292 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8079. 2017-10-17 09:48:45.292 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8080. 2017-10-17 09:48:45.341 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8081. 2017-10-17 09:48:45.412 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8082. 2017-10-17 09:48:45.413 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8083. 2017-10-17 09:48:45.416 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  8084. 2017-10-17 09:48:45.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 231(String)
  8085. 2017-10-17 09:48:45.449 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  8086. 2017-10-17 09:48:46.197 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8087. 2017-10-17 09:48:46.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8088. 2017-10-17 09:48:46.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8089. 2017-10-17 09:48:46.298 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8090. 2017-10-17 09:48:46.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8091. 2017-10-17 09:48:46.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8092. 2017-10-17 09:48:46.360 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8093. 2017-10-17 09:48:46.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8094. 2017-10-17 09:48:46.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8095. 2017-10-17 09:48:46.423 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8096. 2017-10-17 09:48:46.508 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8097. 2017-10-17 09:48:46.509 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8098. 2017-10-17 09:48:46.512 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  8099. 2017-10-17 09:48:46.513 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 233(String)
  8100. 2017-10-17 09:48:46.547 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  8101. 2017-10-17 09:48:46.701 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8102. 2017-10-17 09:48:46.741 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8103. 2017-10-17 09:48:46.742 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8104. 2017-10-17 09:48:46.774 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8105. 2017-10-17 09:48:46.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8106. 2017-10-17 09:48:46.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8107. 2017-10-17 09:48:46.831 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8108. 2017-10-17 09:48:46.832 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8109. 2017-10-17 09:48:46.832 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8110. 2017-10-17 09:48:46.883 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8111. 2017-10-17 09:48:46.946 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8112. 2017-10-17 09:48:46.947 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8113. 2017-10-17 09:48:46.951 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  8114. 2017-10-17 09:48:46.951 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 230(String)
  8115. 2017-10-17 09:48:46.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  8116. 2017-10-17 09:48:48.201 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8117. 2017-10-17 09:48:48.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8118. 2017-10-17 09:48:48.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8119. 2017-10-17 09:48:48.291 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8120. 2017-10-17 09:48:48.291 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8121. 2017-10-17 09:48:48.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8122. 2017-10-17 09:48:48.357 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8123. 2017-10-17 09:48:48.358 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8124. 2017-10-17 09:48:48.358 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8125. 2017-10-17 09:48:48.424 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8126. 2017-10-17 09:48:48.496 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8127. 2017-10-17 09:48:48.497 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8128. 2017-10-17 09:48:48.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8129. 2017-10-17 09:48:48.635 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 14(Integer)
  8130. 2017-10-17 09:48:48.714 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8131. 2017-10-17 09:48:48.716 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8132. 2017-10-17 09:48:48.716 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 14(Integer), 0(Integer), 10(Integer)
  8133. 2017-10-17 09:48:48.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8134. 2017-10-17 09:48:53.533 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8135. 2017-10-17 09:48:53.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8136. 2017-10-17 09:48:53.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8137. 2017-10-17 09:48:53.664 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8138. 2017-10-17 09:48:53.665 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8139. 2017-10-17 09:48:53.666 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8140. 2017-10-17 09:48:53.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8141. 2017-10-17 09:48:53.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8142. 2017-10-17 09:48:53.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8143. 2017-10-17 09:48:53.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8144. 2017-10-17 09:48:53.886 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8145. 2017-10-17 09:48:53.887 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8146. 2017-10-17 09:48:53.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8147. 2017-10-17 09:48:53.994 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  8148. 2017-10-17 09:48:54.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8149. 2017-10-17 09:48:54.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8150. 2017-10-17 09:48:54.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  8151. 2017-10-17 09:48:54.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8152. 2017-10-17 09:48:54.312 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8153. 2017-10-17 09:48:54.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8154. 2017-10-17 09:48:54.387 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8155. 2017-10-17 09:48:54.418 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8156. 2017-10-17 09:48:54.419 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8157. 2017-10-17 09:48:54.420 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8158. 2017-10-17 09:48:54.496 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8159. 2017-10-17 09:48:54.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8160. 2017-10-17 09:48:54.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8161. 2017-10-17 09:48:54.559 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8162. 2017-10-17 09:48:54.637 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8163. 2017-10-17 09:48:54.641 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8164. 2017-10-17 09:48:54.711 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8165. 2017-10-17 09:48:54.712 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  8166. 2017-10-17 09:48:54.782 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8167. 2017-10-17 09:48:54.783 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8168. 2017-10-17 09:48:54.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  8169. 2017-10-17 09:48:54.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8170. 2017-10-17 09:48:55.433 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8171. 2017-10-17 09:48:55.499 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8172. 2017-10-17 09:48:55.499 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8173. 2017-10-17 09:48:55.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8174. 2017-10-17 09:48:55.531 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8175. 2017-10-17 09:48:55.532 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8176. 2017-10-17 09:48:55.608 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8177. 2017-10-17 09:48:55.609 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8178. 2017-10-17 09:48:55.610 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8179. 2017-10-17 09:48:55.674 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8180. 2017-10-17 09:48:55.759 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8181. 2017-10-17 09:48:55.760 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8182. 2017-10-17 09:48:55.842 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8183. 2017-10-17 09:48:55.843 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  8184. 2017-10-17 09:48:56.236 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8185. 2017-10-17 09:48:56.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8186. 2017-10-17 09:48:56.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  8187. 2017-10-17 09:48:56.646 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8188. 2017-10-17 09:48:57.295 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8189. 2017-10-17 09:48:57.359 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8190. 2017-10-17 09:48:57.360 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8191. 2017-10-17 09:48:57.391 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8192. 2017-10-17 09:48:57.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8193. 2017-10-17 09:48:57.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8194. 2017-10-17 09:48:57.450 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8195. 2017-10-17 09:48:57.451 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8196. 2017-10-17 09:48:57.452 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8197. 2017-10-17 09:48:57.523 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8198. 2017-10-17 09:48:57.617 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8199. 2017-10-17 09:48:57.618 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8200. 2017-10-17 09:48:57.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8201. 2017-10-17 09:48:57.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  8202. 2017-10-17 09:48:57.777 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8203. 2017-10-17 09:48:57.778 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8204. 2017-10-17 09:48:57.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  8205. 2017-10-17 09:48:57.859 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8206. 2017-10-17 09:49:17.610 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8207. 2017-10-17 09:49:17.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8208. 2017-10-17 09:49:17.703 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8209. 2017-10-17 09:49:17.734 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8210. 2017-10-17 09:49:17.735 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8211. 2017-10-17 09:49:17.735 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8212. 2017-10-17 09:49:17.812 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8213. 2017-10-17 09:49:17.813 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8214. 2017-10-17 09:49:17.814 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8215. 2017-10-17 09:49:17.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8216. 2017-10-17 09:49:17.948 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8217. 2017-10-17 09:49:17.949 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8218. 2017-10-17 09:49:18.021 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8219. 2017-10-17 09:49:18.021 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  8220. 2017-10-17 09:49:18.083 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8221. 2017-10-17 09:49:18.085 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8222. 2017-10-17 09:49:18.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  8223. 2017-10-17 09:49:18.315 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8224. 2017-10-17 09:57:37.771 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8225. 2017-10-17 09:57:37.771 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8226. 2017-10-17 09:57:37.771 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8227. 2017-10-17 09:57:37.772 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8228. 2017-10-17 09:57:37.772 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8229. 2017-10-17 09:57:37.948 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8230. 2017-10-17 09:57:37.948 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8231. 2017-10-17 09:57:37.950 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8232. 2017-10-17 09:57:37.950 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8233. 2017-10-17 09:57:37.954 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8234. 2017-10-17 09:57:37.954 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8235. 2017-10-17 09:57:37.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8236. 2017-10-17 09:57:37.972 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8237. 2017-10-17 09:57:37.979 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8238. 2017-10-17 09:57:37.979 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8239. 2017-10-17 09:57:37.980 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8240. 2017-10-17 09:57:37.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8241. 2017-10-17 09:57:38.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8242. 2017-10-17 09:57:38.018 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8243. 2017-10-17 09:57:38.018 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8244. 2017-10-17 09:57:38.018 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8245. 2017-10-17 09:57:38.028 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8246. 2017-10-17 09:57:38.028 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8247. 2017-10-17 09:57:38.028 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8248. 2017-10-17 09:57:38.066 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8249. 2017-10-17 09:57:38.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8250. 2017-10-17 09:57:38.079 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8251. 2017-10-17 09:57:38.080 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8252. 2017-10-17 09:57:38.080 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8253. 2017-10-17 09:57:38.081 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8254. 2017-10-17 09:57:38.098 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8255. 2017-10-17 09:57:38.099 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8256. 2017-10-17 09:57:38.099 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8257. 2017-10-17 09:57:38.102 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8258. 2017-10-17 09:57:38.102 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8259. 2017-10-17 09:57:38.102 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8260. 2017-10-17 09:57:38.104 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8261. 2017-10-17 09:57:38.105 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8262. 2017-10-17 09:57:38.105 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8263. 2017-10-17 09:57:38.139 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8264. 2017-10-17 09:57:38.145 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8265. 2017-10-17 09:57:38.146 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8266. 2017-10-17 09:57:38.146 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8267. 2017-10-17 09:57:38.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8268. 2017-10-17 09:57:38.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8269. 2017-10-17 09:57:38.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8270. 2017-10-17 09:57:38.150 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8271. 2017-10-17 09:57:38.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8272. 2017-10-17 09:57:38.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8273. 2017-10-17 09:57:38.208 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8274. 2017-10-17 09:57:38.232 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8275. 2017-10-17 09:57:38.233 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8276. 2017-10-17 09:57:38.235 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8277. 2017-10-17 09:57:38.235 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8278. 2017-10-17 09:57:38.248 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8279. 2017-10-17 09:57:38.249 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8280. 2017-10-17 09:57:38.255 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8281. 2017-10-17 09:57:38.256 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8282. 2017-10-17 09:57:38.282 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8283. 2017-10-17 09:57:38.283 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8284. 2017-10-17 09:57:38.304 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8285. 2017-10-17 09:57:38.304 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8286. 2017-10-17 09:57:38.306 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8287. 2017-10-17 09:57:38.306 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8288. 2017-10-17 09:57:38.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8289. 2017-10-17 09:57:38.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  8290. 2017-10-17 09:57:38.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8291. 2017-10-17 09:57:38.351 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  8292. 2017-10-17 09:57:38.366 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8293. 2017-10-17 09:57:38.367 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8294. 2017-10-17 09:57:38.391 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  8295. 2017-10-17 09:57:38.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8296. 2017-10-17 09:57:38.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8297. 2017-10-17 09:57:38.407 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8298. 2017-10-17 09:57:38.456 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8299. 2017-10-17 09:57:38.521 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8300. 2017-10-17 09:57:38.521 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8301. 2017-10-17 09:57:38.521 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8302. 2017-10-17 09:57:38.569 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8303. 2017-10-17 09:57:38.570 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8304. 2017-10-17 09:57:38.578 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8305. 2017-10-17 09:57:38.578 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8306. 2017-10-17 09:57:38.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8307. 2017-10-17 09:57:38.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8308. 2017-10-17 09:57:38.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8309. 2017-10-17 09:57:38.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8310. 2017-10-17 09:57:38.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8311. 2017-10-17 09:57:38.618 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8312. 2017-10-17 09:57:38.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8313. 2017-10-17 09:57:38.619 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8314. 2017-10-17 09:57:38.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8315. 2017-10-17 09:57:38.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8316. 2017-10-17 09:57:38.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8317. 2017-10-17 09:57:38.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8318. 2017-10-17 09:57:38.683 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8319. 2017-10-17 09:57:38.683 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8320. 2017-10-17 09:57:38.698 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8321. 2017-10-17 09:57:38.698 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8322. 2017-10-17 09:57:38.698 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8323. 2017-10-17 09:57:38.698 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8324. 2017-10-17 09:57:38.699 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8325. 2017-10-17 09:57:38.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8326. 2017-10-17 09:57:38.728 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8327. 2017-10-17 09:57:38.730 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8328. 2017-10-17 09:57:38.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8329. 2017-10-17 09:57:38.788 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8330. 2017-10-17 09:57:38.788 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8331. 2017-10-17 09:57:38.789 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8332. 2017-10-17 09:57:38.789 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8333. 2017-10-17 09:57:38.791 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8334. 2017-10-17 09:57:38.791 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8335. 2017-10-17 09:57:38.791 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8336. 2017-10-17 09:57:38.791 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8337. 2017-10-17 09:57:38.802 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8338. 2017-10-17 09:57:38.803 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8339. 2017-10-17 09:57:38.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8340. 2017-10-17 09:57:38.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8341. 2017-10-17 09:57:38.827 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8342. 2017-10-17 09:57:38.834 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8343. 2017-10-17 09:57:38.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8344. 2017-10-17 09:57:38.842 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8345. 2017-10-17 09:57:38.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8346. 2017-10-17 09:57:38.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8347. 2017-10-17 09:57:38.913 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8348. 2017-10-17 09:57:38.914 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8349. 2017-10-17 09:57:38.914 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8350. 2017-10-17 09:57:38.958 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8351. 2017-10-17 09:57:38.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8352. 2017-10-17 09:57:38.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8353. 2017-10-17 09:57:38.997 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8354. 2017-10-17 09:57:39.048 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8355. 2017-10-17 09:57:39.049 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8356. 2017-10-17 09:57:39.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8357. 2017-10-17 09:57:39.055 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8358. 2017-10-17 09:57:39.277 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  8359. 2017-10-17 09:57:39.303 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8360. 2017-10-17 09:57:39.381 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8361. 2017-10-17 09:57:39.381 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8362. 2017-10-17 09:57:39.412 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8363. 2017-10-17 09:57:39.413 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8364. 2017-10-17 09:57:39.413 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8365. 2017-10-17 09:57:39.466 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8366. 2017-10-17 09:57:39.466 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8367. 2017-10-17 09:57:39.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8368. 2017-10-17 09:57:39.508 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8369. 2017-10-17 09:57:39.550 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8370. 2017-10-17 09:57:39.551 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8371. 2017-10-17 09:57:39.554 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8372. 2017-10-17 09:57:39.555 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8373. 2017-10-17 09:57:39.587 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8374. 2017-10-17 09:57:39.688 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8375. 2017-10-17 09:57:39.750 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8376. 2017-10-17 09:57:39.750 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8377. 2017-10-17 09:57:39.788 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8378. 2017-10-17 09:57:39.789 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8379. 2017-10-17 09:57:39.789 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8380. 2017-10-17 09:57:39.949 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8381. 2017-10-17 09:57:39.950 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8382. 2017-10-17 09:57:39.951 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8383. 2017-10-17 09:57:39.984 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8384. 2017-10-17 09:57:40.046 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8385. 2017-10-17 09:57:40.047 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8386. 2017-10-17 09:57:40.107 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8387. 2017-10-17 09:57:40.108 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  8388. 2017-10-17 09:57:40.169 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8389. 2017-10-17 09:57:40.171 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8390. 2017-10-17 09:57:40.171 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  8391. 2017-10-17 09:57:40.234 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8392. 2017-10-17 09:58:52.571 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8393. 2017-10-17 09:58:52.571 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8394. 2017-10-17 09:58:52.571 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8395. 2017-10-17 09:58:52.571 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8396. 2017-10-17 09:58:52.571 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8397. 2017-10-17 09:58:52.770 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8398. 2017-10-17 09:58:52.770 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8399. 2017-10-17 09:58:52.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8400. 2017-10-17 09:58:52.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8401. 2017-10-17 09:58:52.794 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8402. 2017-10-17 09:58:52.795 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8403. 2017-10-17 09:58:52.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8404. 2017-10-17 09:58:52.804 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8405. 2017-10-17 09:58:52.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8406. 2017-10-17 09:58:52.804 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8407. 2017-10-17 09:58:52.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8408. 2017-10-17 09:58:52.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8409. 2017-10-17 09:58:52.830 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8410. 2017-10-17 09:58:52.831 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8411. 2017-10-17 09:58:52.831 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8412. 2017-10-17 09:58:52.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8413. 2017-10-17 09:58:52.840 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8414. 2017-10-17 09:58:52.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8415. 2017-10-17 09:58:52.841 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8416. 2017-10-17 09:58:52.860 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8417. 2017-10-17 09:58:52.860 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8418. 2017-10-17 09:58:52.874 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8419. 2017-10-17 09:58:52.874 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8420. 2017-10-17 09:58:52.875 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8421. 2017-10-17 09:58:52.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8422. 2017-10-17 09:58:52.900 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8423. 2017-10-17 09:58:52.901 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8424. 2017-10-17 09:58:52.902 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8425. 2017-10-17 09:58:52.904 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8426. 2017-10-17 09:58:52.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8427. 2017-10-17 09:58:52.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8428. 2017-10-17 09:58:52.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8429. 2017-10-17 09:58:52.910 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8430. 2017-10-17 09:58:52.910 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8431. 2017-10-17 09:58:52.926 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8432. 2017-10-17 09:58:52.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8433. 2017-10-17 09:58:52.928 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8434. 2017-10-17 09:58:52.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8435. 2017-10-17 09:58:52.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8436. 2017-10-17 09:58:52.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8437. 2017-10-17 09:58:52.932 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8438. 2017-10-17 09:58:52.958 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8439. 2017-10-17 09:58:52.958 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8440. 2017-10-17 09:58:52.964 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8441. 2017-10-17 09:58:52.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8442. 2017-10-17 09:58:53.015 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8443. 2017-10-17 09:58:53.016 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8444. 2017-10-17 09:58:53.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8445. 2017-10-17 09:58:53.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8446. 2017-10-17 09:58:53.027 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8447. 2017-10-17 09:58:53.028 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8448. 2017-10-17 09:58:53.037 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8449. 2017-10-17 09:58:53.038 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8450. 2017-10-17 09:58:53.056 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8451. 2017-10-17 09:58:53.057 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8452. 2017-10-17 09:58:53.063 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8453. 2017-10-17 09:58:53.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8454. 2017-10-17 09:58:53.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8455. 2017-10-17 09:58:53.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8456. 2017-10-17 09:58:53.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8457. 2017-10-17 09:58:53.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  8458. 2017-10-17 09:58:53.094 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8459. 2017-10-17 09:58:53.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8460. 2017-10-17 09:58:53.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  8461. 2017-10-17 09:58:53.136 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8462. 2017-10-17 09:58:53.137 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8463. 2017-10-17 09:58:53.142 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  8464. 2017-10-17 09:58:53.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8465. 2017-10-17 09:58:53.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8466. 2017-10-17 09:58:53.189 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8467. 2017-10-17 09:58:53.250 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8468. 2017-10-17 09:58:53.250 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8469. 2017-10-17 09:58:53.250 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8470. 2017-10-17 09:58:53.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8471. 2017-10-17 09:58:53.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8472. 2017-10-17 09:58:53.287 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8473. 2017-10-17 09:58:53.287 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8474. 2017-10-17 09:58:53.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8475. 2017-10-17 09:58:53.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8476. 2017-10-17 09:58:53.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8477. 2017-10-17 09:58:53.323 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8478. 2017-10-17 09:58:53.323 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8479. 2017-10-17 09:58:53.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8480. 2017-10-17 09:58:53.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8481. 2017-10-17 09:58:53.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8482. 2017-10-17 09:58:53.329 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8483. 2017-10-17 09:58:53.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8484. 2017-10-17 09:58:53.330 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8485. 2017-10-17 09:58:53.367 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8486. 2017-10-17 09:58:53.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8487. 2017-10-17 09:58:53.368 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8488. 2017-10-17 09:58:53.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8489. 2017-10-17 09:58:53.368 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8490. 2017-10-17 09:58:53.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8491. 2017-10-17 09:58:53.383 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8492. 2017-10-17 09:58:53.384 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8493. 2017-10-17 09:58:53.384 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8494. 2017-10-17 09:58:53.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8495. 2017-10-17 09:58:53.401 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8496. 2017-10-17 09:58:53.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8497. 2017-10-17 09:58:53.438 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8498. 2017-10-17 09:58:53.439 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8499. 2017-10-17 09:58:53.440 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8500. 2017-10-17 09:58:53.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8501. 2017-10-17 09:58:53.461 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8502. 2017-10-17 09:58:53.461 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8503. 2017-10-17 09:58:53.462 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8504. 2017-10-17 09:58:53.462 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8505. 2017-10-17 09:58:53.463 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8506. 2017-10-17 09:58:53.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8507. 2017-10-17 09:58:53.464 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8508. 2017-10-17 09:58:53.464 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8509. 2017-10-17 09:58:53.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8510. 2017-10-17 09:58:53.495 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8511. 2017-10-17 09:58:53.500 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8512. 2017-10-17 09:58:53.505 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8513. 2017-10-17 09:58:53.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8514. 2017-10-17 09:58:53.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8515. 2017-10-17 09:58:53.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8516. 2017-10-17 09:58:53.600 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8517. 2017-10-17 09:58:53.600 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8518. 2017-10-17 09:58:53.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8519. 2017-10-17 09:58:53.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8520. 2017-10-17 09:58:53.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8521. 2017-10-17 09:58:53.693 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8522. 2017-10-17 09:58:53.765 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8523. 2017-10-17 09:58:53.766 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8524. 2017-10-17 09:58:53.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8525. 2017-10-17 09:58:53.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8526. 2017-10-17 09:58:53.961 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  8527. 2017-10-17 09:58:53.985 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8528. 2017-10-17 09:58:54.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8529. 2017-10-17 09:58:54.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8530. 2017-10-17 09:58:54.086 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8531. 2017-10-17 09:58:54.087 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8532. 2017-10-17 09:58:54.087 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8533. 2017-10-17 09:58:54.176 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8534. 2017-10-17 09:58:54.177 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8535. 2017-10-17 09:58:54.178 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8536. 2017-10-17 09:58:54.213 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8537. 2017-10-17 09:58:54.280 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8538. 2017-10-17 09:58:54.281 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8539. 2017-10-17 09:58:54.284 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8540. 2017-10-17 09:58:54.284 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8541. 2017-10-17 09:58:54.333 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8542. 2017-10-17 09:58:54.431 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8543. 2017-10-17 09:58:54.471 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8544. 2017-10-17 09:58:54.471 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8545. 2017-10-17 09:58:54.515 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8546. 2017-10-17 09:58:54.516 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8547. 2017-10-17 09:58:54.517 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8548. 2017-10-17 09:58:54.579 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8549. 2017-10-17 09:58:54.580 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8550. 2017-10-17 09:58:54.580 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8551. 2017-10-17 09:58:54.621 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8552. 2017-10-17 09:58:54.701 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8553. 2017-10-17 09:58:54.702 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8554. 2017-10-17 09:58:54.749 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8555. 2017-10-17 09:58:54.749 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  8556. 2017-10-17 09:58:54.788 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8557. 2017-10-17 09:58:54.789 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8558. 2017-10-17 09:58:54.790 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  8559. 2017-10-17 09:58:54.833 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8560. 2017-10-17 10:00:24.251 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8561. 2017-10-17 10:00:24.251 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8562. 2017-10-17 10:00:24.251 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8563. 2017-10-17 10:00:24.251 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8564. 2017-10-17 10:00:24.251 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8565. 2017-10-17 10:00:24.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8566. 2017-10-17 10:00:24.397 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8567. 2017-10-17 10:00:24.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8568. 2017-10-17 10:00:24.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8569. 2017-10-17 10:00:24.404 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8570. 2017-10-17 10:00:24.405 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8571. 2017-10-17 10:00:24.409 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8572. 2017-10-17 10:00:24.409 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8573. 2017-10-17 10:00:24.426 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8574. 2017-10-17 10:00:24.431 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8575. 2017-10-17 10:00:24.440 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8576. 2017-10-17 10:00:24.454 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8577. 2017-10-17 10:00:24.455 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8578. 2017-10-17 10:00:24.459 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8579. 2017-10-17 10:00:24.460 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8580. 2017-10-17 10:00:24.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8581. 2017-10-17 10:00:24.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8582. 2017-10-17 10:00:24.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8583. 2017-10-17 10:00:24.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8584. 2017-10-17 10:00:24.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8585. 2017-10-17 10:00:24.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8586. 2017-10-17 10:00:24.499 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8587. 2017-10-17 10:00:24.499 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8588. 2017-10-17 10:00:24.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8589. 2017-10-17 10:00:24.502 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8590. 2017-10-17 10:00:24.502 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8591. 2017-10-17 10:00:24.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8592. 2017-10-17 10:00:24.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8593. 2017-10-17 10:00:24.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8594. 2017-10-17 10:00:24.527 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8595. 2017-10-17 10:00:24.531 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8596. 2017-10-17 10:00:24.539 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8597. 2017-10-17 10:00:24.540 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8598. 2017-10-17 10:00:24.540 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8599. 2017-10-17 10:00:24.542 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8600. 2017-10-17 10:00:24.573 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8601. 2017-10-17 10:00:24.587 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8602. 2017-10-17 10:00:24.588 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8603. 2017-10-17 10:00:24.588 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8604. 2017-10-17 10:00:24.589 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8605. 2017-10-17 10:00:24.591 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8606. 2017-10-17 10:00:24.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8607. 2017-10-17 10:00:24.592 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8608. 2017-10-17 10:00:24.593 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8609. 2017-10-17 10:00:24.616 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8610. 2017-10-17 10:00:24.617 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8611. 2017-10-17 10:00:24.621 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8612. 2017-10-17 10:00:24.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8613. 2017-10-17 10:00:24.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8614. 2017-10-17 10:00:24.660 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8615. 2017-10-17 10:00:24.660 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8616. 2017-10-17 10:00:24.663 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8617. 2017-10-17 10:00:24.694 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  8618. 2017-10-17 10:00:26.272 |-ERROR [http-nio-8089-exec-3] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] [181] -| Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
  8619. org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  8620. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)
  8621. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)
  8622. at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)
  8623. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:92)
  8624. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:79)
  8625. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:194)
  8626. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:169)
  8627. at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:91)
  8628. at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)
  8629. at com.xintong.system.securityTools.RedisCacheUtil.getUserByUserName(RedisCacheUtil.java:19)
  8630. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:60)
  8631. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8632. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  8633. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  8634. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  8635. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  8636. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8637. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  8638. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  8639. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8640. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  8641. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  8642. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  8643. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  8644. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8645. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  8646. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  8647. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  8648. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  8649. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  8650. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  8651. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  8652. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  8653. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8654. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  8655. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  8656. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  8657. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8658. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  8659. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  8660. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  8661. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8662. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  8663. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  8664. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  8665. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8666. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  8667. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  8668. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  8669. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  8670. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  8671. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  8672. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  8673. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  8674. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  8675. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  8676. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  8677. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  8678. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  8679. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  8680. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  8681. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  8682. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  8683. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  8684. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  8685. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  8686. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  8687. at java.lang.Thread.run(Thread.java:745)
  8688. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  8689. at redis.clients.util.Pool.getResource(Pool.java:53)
  8690. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
  8691. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
  8692. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:194)
  8693. ... 67 common frames omitted
  8694. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out
  8695. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202)
  8696. at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40)
  8697. at redis.clients.jedis.Protocol.process(Protocol.java:151)
  8698. at redis.clients.jedis.Protocol.read(Protocol.java:215)
  8699. at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
  8700. at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
  8701. at redis.clients.jedis.BinaryJedis.auth(BinaryJedis.java:2139)
  8702. at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:108)
  8703. at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:868)
  8704. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:435)
  8705. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
  8706. at redis.clients.util.Pool.getResource(Pool.java:49)
  8707. ... 70 common frames omitted
  8708. Caused by: java.net.SocketTimeoutException: Read timed out
  8709. at java.net.SocketInputStream.socketRead0(Native Method)
  8710. at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
  8711. at java.net.SocketInputStream.read(SocketInputStream.java:170)
  8712. at java.net.SocketInputStream.read(SocketInputStream.java:141)
  8713. at java.net.SocketInputStream.read(SocketInputStream.java:127)
  8714. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:196)
  8715. ... 81 common frames omitted
  8716. 2017-10-17 10:00:32.938 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8717. 2017-10-17 10:00:32.938 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8718. 2017-10-17 10:00:32.938 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8719. 2017-10-17 10:00:32.939 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8720. 2017-10-17 10:00:32.939 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8721. 2017-10-17 10:00:32.973 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8722. 2017-10-17 10:00:32.974 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8723. 2017-10-17 10:00:32.978 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8724. 2017-10-17 10:00:32.978 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8725. 2017-10-17 10:00:32.983 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8726. 2017-10-17 10:00:32.983 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8727. 2017-10-17 10:00:32.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8728. 2017-10-17 10:00:32.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8729. 2017-10-17 10:00:33.013 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8730. 2017-10-17 10:00:33.014 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8731. 2017-10-17 10:00:33.015 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8732. 2017-10-17 10:00:33.020 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8733. 2017-10-17 10:00:33.021 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8734. 2017-10-17 10:00:33.022 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8735. 2017-10-17 10:00:33.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8736. 2017-10-17 10:00:33.024 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8737. 2017-10-17 10:00:33.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8738. 2017-10-17 10:00:33.025 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8739. 2017-10-17 10:00:33.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8740. 2017-10-17 10:00:33.025 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8741. 2017-10-17 10:00:33.064 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8742. 2017-10-17 10:00:33.064 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8743. 2017-10-17 10:00:33.064 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8744. 2017-10-17 10:00:33.065 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8745. 2017-10-17 10:00:33.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8746. 2017-10-17 10:00:33.065 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8747. 2017-10-17 10:00:33.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8748. 2017-10-17 10:00:33.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8749. 2017-10-17 10:00:33.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8750. 2017-10-17 10:00:33.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8751. 2017-10-17 10:00:33.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8752. 2017-10-17 10:00:33.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8753. 2017-10-17 10:00:33.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8754. 2017-10-17 10:00:33.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8755. 2017-10-17 10:00:33.095 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8756. 2017-10-17 10:00:33.098 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8757. 2017-10-17 10:00:33.099 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8758. 2017-10-17 10:00:33.099 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8759. 2017-10-17 10:00:33.100 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8760. 2017-10-17 10:00:33.114 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8761. 2017-10-17 10:00:33.121 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8762. 2017-10-17 10:00:33.141 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8763. 2017-10-17 10:00:33.143 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8764. 2017-10-17 10:00:33.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8765. 2017-10-17 10:00:33.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8766. 2017-10-17 10:00:33.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8767. 2017-10-17 10:00:33.153 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8768. 2017-10-17 10:00:33.153 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8769. 2017-10-17 10:00:33.161 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8770. 2017-10-17 10:00:33.162 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8771. 2017-10-17 10:00:33.171 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8772. 2017-10-17 10:00:33.172 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8773. 2017-10-17 10:00:33.173 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8774. 2017-10-17 10:00:33.174 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8775. 2017-10-17 10:00:33.187 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8776. 2017-10-17 10:00:33.191 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8777. 2017-10-17 10:00:33.191 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8778. 2017-10-17 10:00:33.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8779. 2017-10-17 10:00:33.201 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8780. 2017-10-17 10:00:33.203 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8781. 2017-10-17 10:00:33.223 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8782. 2017-10-17 10:00:33.223 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8783. 2017-10-17 10:00:33.224 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8784. 2017-10-17 10:00:33.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  8785. 2017-10-17 10:00:33.266 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  8786. 2017-10-17 10:00:33.267 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8787. 2017-10-17 10:00:33.315 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  8788. 2017-10-17 10:00:33.316 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8789. 2017-10-17 10:00:33.316 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8790. 2017-10-17 10:00:33.361 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8791. 2017-10-17 10:00:33.421 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8792. 2017-10-17 10:00:33.421 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8793. 2017-10-17 10:00:33.421 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8794. 2017-10-17 10:00:33.456 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8795. 2017-10-17 10:00:33.456 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8796. 2017-10-17 10:00:33.457 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8797. 2017-10-17 10:00:33.458 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8798. 2017-10-17 10:00:33.461 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8799. 2017-10-17 10:00:33.461 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8800. 2017-10-17 10:00:33.492 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8801. 2017-10-17 10:00:33.493 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8802. 2017-10-17 10:00:33.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8803. 2017-10-17 10:00:33.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8804. 2017-10-17 10:00:33.498 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8805. 2017-10-17 10:00:33.498 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8806. 2017-10-17 10:00:33.498 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8807. 2017-10-17 10:00:33.498 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8808. 2017-10-17 10:00:33.499 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8809. 2017-10-17 10:00:33.546 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8810. 2017-10-17 10:00:33.546 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8811. 2017-10-17 10:00:33.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8812. 2017-10-17 10:00:33.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8813. 2017-10-17 10:00:33.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8814. 2017-10-17 10:00:33.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8815. 2017-10-17 10:00:33.568 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8816. 2017-10-17 10:00:33.569 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8817. 2017-10-17 10:00:33.569 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8818. 2017-10-17 10:00:33.577 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8819. 2017-10-17 10:00:33.594 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8820. 2017-10-17 10:00:33.607 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8821. 2017-10-17 10:00:33.615 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8822. 2017-10-17 10:00:33.616 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8823. 2017-10-17 10:00:33.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8824. 2017-10-17 10:00:33.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8825. 2017-10-17 10:00:33.640 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8826. 2017-10-17 10:00:33.641 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8827. 2017-10-17 10:00:33.643 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8828. 2017-10-17 10:00:33.643 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8829. 2017-10-17 10:00:33.649 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8830. 2017-10-17 10:00:33.658 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8831. 2017-10-17 10:00:33.659 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8832. 2017-10-17 10:00:33.660 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8833. 2017-10-17 10:00:33.661 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8834. 2017-10-17 10:00:33.676 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8835. 2017-10-17 10:00:33.682 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8836. 2017-10-17 10:00:33.697 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8837. 2017-10-17 10:00:33.719 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8838. 2017-10-17 10:00:33.719 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8839. 2017-10-17 10:00:33.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8840. 2017-10-17 10:00:33.755 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8841. 2017-10-17 10:00:33.755 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8842. 2017-10-17 10:00:33.803 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8843. 2017-10-17 10:00:33.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8844. 2017-10-17 10:00:33.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8845. 2017-10-17 10:00:33.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8846. 2017-10-17 10:00:33.872 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8847. 2017-10-17 10:00:33.873 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8848. 2017-10-17 10:00:33.877 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8849. 2017-10-17 10:00:33.877 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8850. 2017-10-17 10:00:33.993 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  8851. 2017-10-17 10:00:34.016 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8852. 2017-10-17 10:00:34.051 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8853. 2017-10-17 10:00:34.052 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8854. 2017-10-17 10:00:34.085 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8855. 2017-10-17 10:00:34.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8856. 2017-10-17 10:00:34.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8857. 2017-10-17 10:00:34.138 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8858. 2017-10-17 10:00:34.139 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8859. 2017-10-17 10:00:34.140 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8860. 2017-10-17 10:00:34.176 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8861. 2017-10-17 10:00:34.214 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8862. 2017-10-17 10:00:34.215 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8863. 2017-10-17 10:00:34.218 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8864. 2017-10-17 10:00:34.219 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8865. 2017-10-17 10:00:34.254 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  8866. 2017-10-17 10:00:34.349 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8867. 2017-10-17 10:00:34.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8868. 2017-10-17 10:00:34.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8869. 2017-10-17 10:00:34.425 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8870. 2017-10-17 10:00:34.426 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8871. 2017-10-17 10:00:34.426 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8872. 2017-10-17 10:00:34.481 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8873. 2017-10-17 10:00:34.482 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8874. 2017-10-17 10:00:34.482 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8875. 2017-10-17 10:00:34.511 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8876. 2017-10-17 10:00:34.847 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8877. 2017-10-17 10:00:34.849 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8878. 2017-10-17 10:00:34.894 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8879. 2017-10-17 10:00:34.894 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  8880. 2017-10-17 10:00:34.945 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8881. 2017-10-17 10:00:34.946 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8882. 2017-10-17 10:00:34.946 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  8883. 2017-10-17 10:00:34.993 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8884. 2017-10-17 10:00:45.505 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8885. 2017-10-17 10:00:45.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8886. 2017-10-17 10:00:45.545 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8887. 2017-10-17 10:00:45.578 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8888. 2017-10-17 10:00:45.580 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8889. 2017-10-17 10:00:45.580 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8890. 2017-10-17 10:00:45.634 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8891. 2017-10-17 10:00:45.635 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8892. 2017-10-17 10:00:45.636 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8893. 2017-10-17 10:00:45.663 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8894. 2017-10-17 10:00:45.723 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8895. 2017-10-17 10:00:45.724 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8896. 2017-10-17 10:00:45.766 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8897. 2017-10-17 10:00:45.766 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  8898. 2017-10-17 10:00:45.805 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8899. 2017-10-17 10:00:45.806 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8900. 2017-10-17 10:00:45.806 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  8901. 2017-10-17 10:00:45.868 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8902. 2017-10-17 10:00:47.652 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8903. 2017-10-17 10:00:47.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8904. 2017-10-17 10:00:47.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8905. 2017-10-17 10:00:47.719 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8906. 2017-10-17 10:00:47.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8907. 2017-10-17 10:00:47.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8908. 2017-10-17 10:00:47.770 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8909. 2017-10-17 10:00:47.771 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8910. 2017-10-17 10:00:47.771 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8911. 2017-10-17 10:00:47.806 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8912. 2017-10-17 10:00:47.854 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8913. 2017-10-17 10:00:47.855 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8914. 2017-10-17 10:00:47.899 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8915. 2017-10-17 10:00:47.899 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  8916. 2017-10-17 10:00:47.939 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8917. 2017-10-17 10:00:47.940 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8918. 2017-10-17 10:00:47.941 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  8919. 2017-10-17 10:00:47.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8920. 2017-10-17 10:00:49.320 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8921. 2017-10-17 10:00:49.354 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8922. 2017-10-17 10:00:49.354 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8923. 2017-10-17 10:00:49.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8924. 2017-10-17 10:00:49.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8925. 2017-10-17 10:00:49.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8926. 2017-10-17 10:00:49.445 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8927. 2017-10-17 10:00:49.446 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8928. 2017-10-17 10:00:49.446 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8929. 2017-10-17 10:00:49.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8930. 2017-10-17 10:00:49.523 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8931. 2017-10-17 10:00:49.524 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8932. 2017-10-17 10:00:49.567 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8933. 2017-10-17 10:00:49.568 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  8934. 2017-10-17 10:00:49.851 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8935. 2017-10-17 10:00:49.852 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8936. 2017-10-17 10:00:49.853 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  8937. 2017-10-17 10:00:50.149 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8938. 2017-10-17 10:00:50.798 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8939. 2017-10-17 10:00:50.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8940. 2017-10-17 10:00:50.836 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8941. 2017-10-17 10:00:50.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8942. 2017-10-17 10:00:50.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8943. 2017-10-17 10:00:50.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8944. 2017-10-17 10:00:50.961 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8945. 2017-10-17 10:00:50.962 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8946. 2017-10-17 10:00:50.962 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8947. 2017-10-17 10:00:50.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8948. 2017-10-17 10:00:51.052 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8949. 2017-10-17 10:00:51.053 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8950. 2017-10-17 10:00:51.097 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8951. 2017-10-17 10:00:51.098 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  8952. 2017-10-17 10:00:51.146 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8953. 2017-10-17 10:00:51.148 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8954. 2017-10-17 10:00:51.148 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  8955. 2017-10-17 10:00:51.208 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  8956. 2017-10-17 10:00:51.988 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8957. 2017-10-17 10:00:52.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8958. 2017-10-17 10:00:52.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8959. 2017-10-17 10:00:52.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8960. 2017-10-17 10:00:52.066 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8961. 2017-10-17 10:00:52.066 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8962. 2017-10-17 10:00:52.146 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  8963. 2017-10-17 10:00:52.148 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8964. 2017-10-17 10:00:52.148 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8965. 2017-10-17 10:00:52.189 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8966. 2017-10-17 10:00:52.238 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  8967. 2017-10-17 10:00:52.239 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8968. 2017-10-17 10:00:52.280 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  8969. 2017-10-17 10:00:52.281 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  8970. 2017-10-17 10:00:52.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  8971. 2017-10-17 10:00:52.321 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  8972. 2017-10-17 10:00:52.321 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  8973. 2017-10-17 10:00:52.362 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  8974. 2017-10-17 10:01:37.953 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8975. 2017-10-17 10:01:37.953 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8976. 2017-10-17 10:01:37.954 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8977. 2017-10-17 10:01:37.954 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8978. 2017-10-17 10:01:37.954 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  8979. 2017-10-17 10:01:37.990 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8980. 2017-10-17 10:01:37.990 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8981. 2017-10-17 10:01:38.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8982. 2017-10-17 10:01:38.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8983. 2017-10-17 10:01:38.026 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8984. 2017-10-17 10:01:38.040 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8985. 2017-10-17 10:01:38.041 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8986. 2017-10-17 10:01:38.047 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8987. 2017-10-17 10:01:38.047 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8988. 2017-10-17 10:01:38.053 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8989. 2017-10-17 10:01:38.053 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8990. 2017-10-17 10:01:38.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8991. 2017-10-17 10:01:38.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8992. 2017-10-17 10:01:38.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8993. 2017-10-17 10:01:38.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8994. 2017-10-17 10:01:38.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8995. 2017-10-17 10:01:38.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8996. 2017-10-17 10:01:38.107 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8997. 2017-10-17 10:01:38.108 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8998. 2017-10-17 10:01:38.115 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8999. 2017-10-17 10:01:38.116 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9000. 2017-10-17 10:01:38.118 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9001. 2017-10-17 10:01:38.119 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9002. 2017-10-17 10:01:38.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9003. 2017-10-17 10:01:38.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9004. 2017-10-17 10:01:38.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9005. 2017-10-17 10:01:38.146 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9006. 2017-10-17 10:01:38.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9007. 2017-10-17 10:01:38.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9008. 2017-10-17 10:01:38.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9009. 2017-10-17 10:01:38.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9010. 2017-10-17 10:01:38.154 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9011. 2017-10-17 10:01:38.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9012. 2017-10-17 10:01:38.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9013. 2017-10-17 10:01:38.174 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9014. 2017-10-17 10:01:38.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9015. 2017-10-17 10:01:38.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9016. 2017-10-17 10:01:38.208 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9017. 2017-10-17 10:01:38.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9018. 2017-10-17 10:01:38.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9019. 2017-10-17 10:01:38.224 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9020. 2017-10-17 10:01:38.225 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9021. 2017-10-17 10:01:38.228 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9022. 2017-10-17 10:01:38.229 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9023. 2017-10-17 10:01:38.242 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9024. 2017-10-17 10:01:38.244 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9025. 2017-10-17 10:01:38.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9026. 2017-10-17 10:01:38.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9027. 2017-10-17 10:01:38.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9028. 2017-10-17 10:01:38.245 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9029. 2017-10-17 10:01:38.246 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9030. 2017-10-17 10:01:38.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9031. 2017-10-17 10:01:38.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9032. 2017-10-17 10:01:38.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9033. 2017-10-17 10:01:38.270 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  9034. 2017-10-17 10:01:38.271 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9035. 2017-10-17 10:01:38.278 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9036. 2017-10-17 10:01:38.296 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9037. 2017-10-17 10:01:38.297 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9038. 2017-10-17 10:01:38.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9039. 2017-10-17 10:01:38.312 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9040. 2017-10-17 10:01:38.337 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9041. 2017-10-17 10:01:38.338 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9042. 2017-10-17 10:01:38.370 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  9043. 2017-10-17 10:01:38.371 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9044. 2017-10-17 10:01:38.372 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9045. 2017-10-17 10:01:38.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9046. 2017-10-17 10:01:38.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9047. 2017-10-17 10:01:38.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  9048. 2017-10-17 10:01:38.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9049. 2017-10-17 10:01:38.507 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9050. 2017-10-17 10:01:38.507 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9051. 2017-10-17 10:01:38.507 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9052. 2017-10-17 10:01:38.539 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9053. 2017-10-17 10:01:38.539 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9054. 2017-10-17 10:01:38.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9055. 2017-10-17 10:01:38.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9056. 2017-10-17 10:01:38.546 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9057. 2017-10-17 10:01:38.546 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9058. 2017-10-17 10:01:38.572 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9059. 2017-10-17 10:01:38.573 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9060. 2017-10-17 10:01:38.573 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9061. 2017-10-17 10:01:38.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9062. 2017-10-17 10:01:38.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9063. 2017-10-17 10:01:38.577 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9064. 2017-10-17 10:01:38.577 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9065. 2017-10-17 10:01:38.577 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9066. 2017-10-17 10:01:38.578 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9067. 2017-10-17 10:01:38.654 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9068. 2017-10-17 10:01:38.654 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9069. 2017-10-17 10:01:38.654 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9070. 2017-10-17 10:01:38.655 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9071. 2017-10-17 10:01:38.655 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9072. 2017-10-17 10:01:38.655 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9073. 2017-10-17 10:01:38.655 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9074. 2017-10-17 10:01:38.655 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9075. 2017-10-17 10:01:38.656 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9076. 2017-10-17 10:01:38.706 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9077. 2017-10-17 10:01:38.706 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9078. 2017-10-17 10:01:38.706 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9079. 2017-10-17 10:01:38.741 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9080. 2017-10-17 10:01:38.742 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9081. 2017-10-17 10:01:38.743 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  9082. 2017-10-17 10:01:38.744 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9083. 2017-10-17 10:01:38.752 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9084. 2017-10-17 10:01:38.753 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9085. 2017-10-17 10:01:38.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  9086. 2017-10-17 10:01:38.755 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  9087. 2017-10-17 10:01:38.755 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9088. 2017-10-17 10:01:38.756 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9089. 2017-10-17 10:01:38.757 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  9090. 2017-10-17 10:01:38.758 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9091. 2017-10-17 10:01:38.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9092. 2017-10-17 10:01:38.789 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  9093. 2017-10-17 10:01:38.790 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9094. 2017-10-17 10:01:38.797 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9095. 2017-10-17 10:01:38.830 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9096. 2017-10-17 10:01:38.830 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9097. 2017-10-17 10:01:38.874 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9098. 2017-10-17 10:01:38.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9099. 2017-10-17 10:01:38.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9100. 2017-10-17 10:01:38.955 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9101. 2017-10-17 10:01:38.956 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9102. 2017-10-17 10:01:38.956 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9103. 2017-10-17 10:01:39.004 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9104. 2017-10-17 10:01:39.041 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9105. 2017-10-17 10:01:39.042 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9106. 2017-10-17 10:01:39.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9107. 2017-10-17 10:01:39.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9108. 2017-10-17 10:01:39.151 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  9109. 2017-10-17 10:01:39.176 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9110. 2017-10-17 10:01:39.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9111. 2017-10-17 10:01:39.213 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9112. 2017-10-17 10:01:39.248 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9113. 2017-10-17 10:01:39.248 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9114. 2017-10-17 10:01:39.249 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9115. 2017-10-17 10:01:39.323 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9116. 2017-10-17 10:01:39.324 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9117. 2017-10-17 10:01:39.324 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9118. 2017-10-17 10:01:39.359 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9119. 2017-10-17 10:01:39.396 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9120. 2017-10-17 10:01:39.397 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9121. 2017-10-17 10:01:39.401 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  9122. 2017-10-17 10:01:39.402 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9123. 2017-10-17 10:01:39.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9124. 2017-10-17 10:01:39.548 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9125. 2017-10-17 10:01:39.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9126. 2017-10-17 10:01:39.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9127. 2017-10-17 10:01:39.637 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9128. 2017-10-17 10:01:39.638 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9129. 2017-10-17 10:01:39.638 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9130. 2017-10-17 10:01:39.728 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9131. 2017-10-17 10:01:39.729 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9132. 2017-10-17 10:01:39.729 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9133. 2017-10-17 10:01:39.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9134. 2017-10-17 10:01:39.818 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9135. 2017-10-17 10:01:39.820 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9136. 2017-10-17 10:01:39.859 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  9137. 2017-10-17 10:01:39.859 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  9138. 2017-10-17 10:01:39.911 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  9139. 2017-10-17 10:01:39.912 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  9140. 2017-10-17 10:01:39.913 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  9141. 2017-10-17 10:01:39.955 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  9142. 2017-10-17 10:08:15.703 |-INFO [Thread-611] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@518b9e81: startup date [Mon Oct 16 16:50:59 CST 2017]; root of context hierarchy
  9143. 2017-10-17 10:08:15.706 |-INFO [Thread-611] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  9144. 2017-10-17 10:08:15.709 |-INFO [Thread-611] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  9145. 2017-10-17 10:08:15.709 |-INFO [Thread-611] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  9146. 2017-10-17 10:08:15.709 |-INFO [Thread-611] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  9147. 2017-10-17 10:08:15.709 |-INFO [Thread-611] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  9148. 2017-10-17 10:08:15.725 |-INFO [Thread-611] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  9149. 2017-10-17 10:08:15.726 |-INFO [Thread-611] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  9150. 2017-10-17 10:08:21.615 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on wenhongquandeMacBook-Pro.local with PID 20517 (/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes started by wenhongquan in /Users/wenhongquan/VisualInspection/VisualInspection_server)
  9151. 2017-10-17 10:08:21.619 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  9152. 2017-10-17 10:08:21.850 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4ed558e1: startup date [Tue Oct 17 10:08:21 CST 2017]; root of context hierarchy
  9153. 2017-10-17 10:08:21.858 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  9154. 2017-10-17 10:08:23.215 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  9155. 2017-10-17 10:08:23.922 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$1e3b71bc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9156. 2017-10-17 10:08:24.066 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$b6e939f6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9157. 2017-10-17 10:08:24.077 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9158. 2017-10-17 10:08:24.081 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@587971fd' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9159. 2017-10-17 10:08:24.086 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$dbbddca8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9160. 2017-10-17 10:08:24.101 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9161. 2017-10-17 10:08:24.115 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$97ee5b8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9162. 2017-10-17 10:08:24.134 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9163. 2017-10-17 10:08:24.136 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$674da7da] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9164. 2017-10-17 10:08:24.626 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  9165. 2017-10-17 10:08:24.636 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  9166. 2017-10-17 10:08:24.638 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  9167. 2017-10-17 10:08:24.709 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  9168. 2017-10-17 10:08:24.709 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 2859 ms
  9169. 2017-10-17 10:08:25.016 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  9170. 2017-10-17 10:08:27.100 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  9171. 2017-10-17 10:08:27.100 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  9172. 2017-10-17 10:08:27.101 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  9173. 2017-10-17 10:08:27.101 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  9174. 2017-10-17 10:08:27.101 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  9175. 2017-10-17 10:08:27.102 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  9176. 2017-10-17 10:08:27.102 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  9177. 2017-10-17 10:08:27.103 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  9178. 2017-10-17 10:08:27.103 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  9179. 2017-10-17 10:08:27.103 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  9180. 2017-10-17 10:08:27.104 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  9181. 2017-10-17 10:08:27.104 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  9182. 2017-10-17 10:08:27.104 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  9183. 2017-10-17 10:08:27.106 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  9184. 2017-10-17 10:08:28.287 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  9185. 2017-10-17 10:08:28.287 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  9186. 2017-10-17 10:08:28.395 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@707a9961, org.springframework.security.web.context.SecurityContextPersistenceFilter@3b5fd806, org.springframework.security.web.header.HeaderWriterFilter@3ff27da, org.springframework.web.filter.CorsFilter@3cad0bbd, org.springframework.security.web.authentication.logout.LogoutFilter@11e856c6, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@3417d51a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@43b2b98c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@18c8236c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@66ce5fb3, org.springframework.security.web.session.SessionManagementFilter@5f05ac92, org.springframework.security.web.access.ExceptionTranslationFilter@10432203, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@afa2e6c]
  9187. 2017-10-17 10:08:28.420 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@3ced6755, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4ac2ca38, org.springframework.security.web.context.SecurityContextPersistenceFilter@33d00fb3, org.springframework.security.web.header.HeaderWriterFilter@20f920b, org.springframework.security.web.authentication.logout.LogoutFilter@5aeea0a7, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@7f4ce9e7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3f5afae9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@413bb8c3, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@47b527a8, org.springframework.security.web.session.SessionManagementFilter@83a9528, org.springframework.security.web.access.ExceptionTranslationFilter@6eec4d45, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@22c2acf7]
  9188. 2017-10-17 10:08:28.559 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4ed558e1: startup date [Tue Oct 17 10:08:21 CST 2017]; root of context hierarchy
  9189. 2017-10-17 10:08:28.673 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
  9190. 2017-10-17 10:08:28.674 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
  9191. 2017-10-17 10:08:28.676 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
  9192. 2017-10-17 10:08:28.676 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
  9193. 2017-10-17 10:08:28.676 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
  9194. 2017-10-17 10:08:28.677 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
  9195. 2017-10-17 10:08:28.677 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
  9196. 2017-10-17 10:08:28.677 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
  9197. 2017-10-17 10:08:28.677 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  9198. 2017-10-17 10:08:28.681 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  9199. 2017-10-17 10:08:28.682 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
  9200. 2017-10-17 10:08:28.682 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
  9201. 2017-10-17 10:08:28.682 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
  9202. 2017-10-17 10:08:28.683 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
  9203. 2017-10-17 10:08:28.683 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
  9204. 2017-10-17 10:08:28.683 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  9205. 2017-10-17 10:08:28.684 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  9206. 2017-10-17 10:08:28.684 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  9207. 2017-10-17 10:08:28.684 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
  9208. 2017-10-17 10:08:28.686 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
  9209. 2017-10-17 10:08:28.686 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
  9210. 2017-10-17 10:08:28.686 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
  9211. 2017-10-17 10:08:28.687 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
  9212. 2017-10-17 10:08:28.687 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
  9213. 2017-10-17 10:08:28.687 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
  9214. 2017-10-17 10:08:28.688 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
  9215. 2017-10-17 10:08:28.688 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
  9216. 2017-10-17 10:08:28.688 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
  9217. 2017-10-17 10:08:28.689 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
  9218. 2017-10-17 10:08:28.689 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
  9219. 2017-10-17 10:08:28.690 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
  9220. 2017-10-17 10:08:28.690 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
  9221. 2017-10-17 10:08:28.690 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
  9222. 2017-10-17 10:08:28.691 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.add(com.xintong.visualinspection.bean.CheckRule)
  9223. 2017-10-17 10:08:28.692 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.update(com.xintong.visualinspection.bean.CheckRule)
  9224. 2017-10-17 10:08:28.692 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.delete(com.xintong.visualinspection.bean.CheckRule)
  9225. 2017-10-17 10:08:28.692 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getByName]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByName(com.xintong.visualinspection.bean.CheckRule)
  9226. 2017-10-17 10:08:28.693 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getById(com.xintong.visualinspection.bean.CheckRule)
  9227. 2017-10-17 10:08:28.693 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getAllRule/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getAllRules(com.xintong.visualinspection.bean.CheckRule,java.lang.Integer,java.lang.Integer)
  9228. 2017-10-17 10:08:28.693 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getListById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByListId(com.xintong.visualinspection.bean.CheckRule)
  9229. 2017-10-17 10:08:28.694 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
  9230. 2017-10-17 10:08:28.695 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(java.util.List<com.xintong.visualinspection.bean.CheckItem>)
  9231. 2017-10-17 10:08:28.695 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(com.xintong.visualinspection.bean.CheckItem)
  9232. 2017-10-17 10:08:28.696 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.delete(com.xintong.visualinspection.bean.CheckItem)
  9233. 2017-10-17 10:08:28.696 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/comm/getTime]}" onto public java.lang.String com.xintong.visualinspection.controller.CommonController.getTime(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
  9234. 2017-10-17 10:08:28.697 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.add(com.xintong.visualinspection.bean.Constant)
  9235. 2017-10-17 10:08:28.698 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.update(com.xintong.visualinspection.bean.Constant)
  9236. 2017-10-17 10:08:28.698 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.delete(com.xintong.visualinspection.bean.Constant)
  9237. 2017-10-17 10:08:28.698 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlag]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlag(com.xintong.visualinspection.bean.Constant)
  9238. 2017-10-17 10:08:28.699 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlagAndValue]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlagAndValue(com.xintong.visualinspection.bean.Constant)
  9239. 2017-10-17 10:08:28.699 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByName(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Constant)
  9240. 2017-10-17 10:08:28.701 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/addDept],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.addDept(com.xintong.visualinspection.bean.Organ) throws java.lang.Exception
  9241. 2017-10-17 10:08:28.701 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/updateDept/{organid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.updateDept(com.xintong.visualinspection.bean.Organ,int)
  9242. 2017-10-17 10:08:28.702 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/deleteDept/{organid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.deleteDept(java.lang.Integer)
  9243. 2017-10-17 10:08:28.702 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllDept(javax.servlet.http.HttpServletRequest)
  9244. 2017-10-17 10:08:28.702 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptByParent/{pid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptByParent(java.lang.Integer)
  9245. 2017-10-17 10:08:28.703 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptById/{organid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptById(java.lang.Integer)
  9246. 2017-10-17 10:08:28.703 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllFs],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllFs()
  9247. 2017-10-17 10:08:28.703 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllRM],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllRM()
  9248. 2017-10-17 10:08:28.704 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
  9249. 2017-10-17 10:08:28.704 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getFsByDept],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAFsByDeptId(javax.servlet.http.HttpServletRequest)
  9250. 2017-10-17 10:08:28.704 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptInfosByDeptId],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptInfosByDeptId(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Organ)
  9251. 2017-10-17 10:08:28.705 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAll()
  9252. 2017-10-17 10:08:28.706 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/upload]}" onto public java.lang.String com.xintong.visualinspection.controller.FileController.UploadFile(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartHttpServletRequest)
  9253. 2017-10-17 10:08:28.706 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/batch/upload],methods=[POST]}" onto public void com.xintong.visualinspection.controller.FileController.handleFileUpload(javax.servlet.http.HttpServletRequest)
  9254. 2017-10-17 10:08:28.706 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/download/{filename:[a-zA-Z0-9-.]+}],methods=[GET]}" onto public void com.xintong.visualinspection.controller.FileController.Download(javax.servlet.http.HttpServletResponse,java.lang.String)
  9255. 2017-10-17 10:08:28.707 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  9256. 2017-10-17 10:08:28.707 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  9257. 2017-10-17 10:08:28.708 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  9258. 2017-10-17 10:08:28.708 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/item/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreItemInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  9259. 2017-10-17 10:08:28.708 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
  9260. 2017-10-17 10:08:28.708 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/check/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getCheckWorkExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)
  9261. 2017-10-17 10:08:28.709 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  9262. 2017-10-17 10:08:28.709 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/job/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.JobController.add(com.xintong.visualinspection.bean.Job)
  9263. 2017-10-17 10:08:28.710 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/addMenu],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.addMenu(com.xintong.visualinspection.bean.Menu) throws java.lang.Exception
  9264. 2017-10-17 10:08:28.711 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
  9265. 2017-10-17 10:08:28.711 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/deleteMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.deleteMenu(java.lang.Integer)
  9266. 2017-10-17 10:08:28.711 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getAllMenu(javax.servlet.http.HttpServletRequest,java.lang.Integer)
  9267. 2017-10-17 10:08:28.711 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuByParent/{pid}/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuByParent(java.lang.Integer,java.lang.Integer,java.lang.Integer)
  9268. 2017-10-17 10:08:28.712 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuById/{menuid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuById(java.lang.Integer,javax.servlet.http.HttpServletRequest)
  9269. 2017-10-17 10:08:28.713 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addRolePermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
  9270. 2017-10-17 10:08:28.713 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addPermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.bean.Permission) throws java.lang.Exception
  9271. 2017-10-17 10:08:28.714 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deleteRolePermission],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
  9272. 2017-10-17 10:08:28.714 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deletePermission/{permissionid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(java.lang.Integer)
  9273. 2017-10-17 10:08:28.714 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updateRolePermission],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updateRolePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
  9274. 2017-10-17 10:08:28.714 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updatePermission/{permissionid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updatePermission(com.xintong.visualinspection.bean.Permission,int)
  9275. 2017-10-17 10:08:28.715 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getAllPermission()
  9276. 2017-10-17 10:08:28.715 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/getPermissionByRole/{roleid}/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getPermissionByRole(java.lang.Integer,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.User)
  9277. 2017-10-17 10:08:28.717 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
  9278. 2017-10-17 10:08:28.717 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
  9279. 2017-10-17 10:08:28.717 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
  9280. 2017-10-17 10:08:28.717 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRole(javax.servlet.http.HttpServletRequest)
  9281. 2017-10-17 10:08:28.718 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  9282. 2017-10-17 10:08:28.718 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindPermission/{roleId}/{permissions}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindPermission(java.lang.Integer,java.lang.String)
  9283. 2017-10-17 10:08:28.718 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindUser/{roleId}/{users}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindUser(java.lang.Integer,java.lang.String)
  9284. 2017-10-17 10:08:28.718 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByDept/{deptId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByDept(java.lang.Integer)
  9285. 2017-10-17 10:08:28.719 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByUser/{userId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByUser(java.lang.Integer)
  9286. 2017-10-17 10:08:28.719 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPosition/{positionId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPosition(java.lang.Integer)
  9287. 2017-10-17 10:08:28.719 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPermision/{permisionid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPermisionidn(java.lang.Integer)
  9288. 2017-10-17 10:08:28.721 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.add(com.xintong.visualinspection.bean.Score)
  9289. 2017-10-17 10:08:28.721 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
  9290. 2017-10-17 10:08:28.721 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.delete(com.xintong.visualinspection.bean.Score)
  9291. 2017-10-17 10:08:28.722 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getByTaskId(com.xintong.visualinspection.bean.Score)
  9292. 2017-10-17 10:08:28.722 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Score)
  9293. 2017-10-17 10:08:28.722 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getTopRemark()
  9294. 2017-10-17 10:08:28.722 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/updateByTaskIdAndPerson]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.updateByTaskIdAndPerson(com.xintong.visualinspection.bean.Score)
  9295. 2017-10-17 10:08:28.723 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
  9296. 2017-10-17 10:08:28.726 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
  9297. 2017-10-17 10:08:28.726 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(com.xintong.visualinspection.bean.StatisticsBean)
  9298. 2017-10-17 10:08:28.727 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
  9299. 2017-10-17 10:08:28.727 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9300. 2017-10-17 10:08:28.727 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9301. 2017-10-17 10:08:28.727 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9302. 2017-10-17 10:08:28.728 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
  9303. 2017-10-17 10:08:28.728 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  9304. 2017-10-17 10:08:28.728 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  9305. 2017-10-17 10:08:28.728 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  9306. 2017-10-17 10:08:28.729 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/manage/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  9307. 2017-10-17 10:08:28.729 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/score/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
  9308. 2017-10-17 10:08:28.729 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
  9309. 2017-10-17 10:08:28.729 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
  9310. 2017-10-17 10:08:28.730 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/stuff/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9311. 2017-10-17 10:08:28.730 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/up/five]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUp5PersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9312. 2017-10-17 10:08:28.730 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9313. 2017-10-17 10:08:28.730 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
  9314. 2017-10-17 10:08:28.730 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.StatisticsBean,java.lang.Integer,java.lang.Integer)
  9315. 2017-10-17 10:08:28.731 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
  9316. 2017-10-17 10:08:28.731 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
  9317. 2017-10-17 10:08:28.731 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
  9318. 2017-10-17 10:08:28.731 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
  9319. 2017-10-17 10:08:28.732 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
  9320. 2017-10-17 10:08:28.732 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/appeal]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckAppeal(com.xintong.visualinspection.bean.CheckAppealStatistic)
  9321. 2017-10-17 10:08:28.734 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.add(com.xintong.visualinspection.bean.Task)
  9322. 2017-10-17 10:08:28.734 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9323. 2017-10-17 10:08:28.734 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9324. 2017-10-17 10:08:28.734 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.delete(com.xintong.visualinspection.bean.Task)
  9325. 2017-10-17 10:08:28.735 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getById(com.xintong.visualinspection.bean.Task)
  9326. 2017-10-17 10:08:28.735 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  9327. 2017-10-17 10:08:28.735 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9328. 2017-10-17 10:08:28.735 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9329. 2017-10-17 10:08:28.736 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskStart]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskStart(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9330. 2017-10-17 10:08:28.736 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9331. 2017-10-17 10:08:28.736 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9332. 2017-10-17 10:08:28.736 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getStatusById(com.xintong.visualinspection.bean.Task)
  9333. 2017-10-17 10:08:28.737 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/deleteUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.deleteUserCount(com.xintong.visualinspection.bean.Task)
  9334. 2017-10-17 10:08:28.737 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/updateUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.updateUserCount(com.xintong.visualinspection.bean.Task)
  9335. 2017-10-17 10:08:28.737 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
  9336. 2017-10-17 10:08:28.737 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCount(com.xintong.visualinspection.bean.Task)
  9337. 2017-10-17 10:08:28.738 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCheckedTaskByPage/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCheckedTaskByPage(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  9338. 2017-10-17 10:08:28.739 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.add(com.xintong.visualinspection.bean.TeamClass)
  9339. 2017-10-17 10:08:28.739 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(com.xintong.visualinspection.bean.TeamClass)
  9340. 2017-10-17 10:08:28.740 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
  9341. 2017-10-17 10:08:28.740 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.delete(com.xintong.visualinspection.bean.TeamClass)
  9342. 2017-10-17 10:08:28.740 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.addList(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
  9343. 2017-10-17 10:08:28.740 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassById(com.xintong.visualinspection.bean.TeamClass)
  9344. 2017-10-17 10:08:28.741 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getUserClasss]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.pojo.TeamClass)
  9345. 2017-10-17 10:08:28.741 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassList]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
  9346. 2017-10-17 10:08:28.741 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassListAndUsers]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassListAndUsers(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
  9347. 2017-10-17 10:08:28.741 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassCode]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassCodeInfo(com.xintong.visualinspection.bean.ClassCode)
  9348. 2017-10-17 10:08:28.742 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.add(com.xintong.visualinspection.bean.Team)
  9349. 2017-10-17 10:08:28.743 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.update(com.xintong.visualinspection.bean.Team)
  9350. 2017-10-17 10:08:28.743 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.delete(com.xintong.visualinspection.bean.Team)
  9351. 2017-10-17 10:08:28.744 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
  9352. 2017-10-17 10:08:28.744 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getDetailById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsById(com.xintong.visualinspection.bean.Team)
  9353. 2017-10-17 10:08:28.744 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamPersonsByUserClassId/{user_calss_id}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsByUserClassId(java.lang.Long)
  9354. 2017-10-17 10:08:28.744 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByDeptId(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
  9355. 2017-10-17 10:08:28.745 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByName(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer)
  9356. 2017-10-17 10:08:28.745 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  9357. 2017-10-17 10:08:28.745 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
  9358. 2017-10-17 10:08:28.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[PUT]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.update()
  9359. 2017-10-17 10:08:28.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[POST]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.save()
  9360. 2017-10-17 10:08:28.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  9361. 2017-10-17 10:08:28.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  9362. 2017-10-17 10:08:28.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  9363. 2017-10-17 10:08:28.747 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.getList()
  9364. 2017-10-17 10:08:28.748 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getList(com.xintong.visualinspection.bean.UserClass)
  9365. 2017-10-17 10:08:28.748 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/addList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.addList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
  9366. 2017-10-17 10:08:28.748 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/updateList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.updateList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
  9367. 2017-10-17 10:08:28.749 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getUsersByTeamId/{user_class_id}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getUsersByTeamId(java.lang.Integer)
  9368. 2017-10-17 10:08:28.750 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
  9369. 2017-10-17 10:08:28.750 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/logout],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.logout()
  9370. 2017-10-17 10:08:28.751 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/addUser],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.addUser(com.xintong.visualinspection.bean.User) throws java.lang.Exception
  9371. 2017-10-17 10:08:28.751 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/auth/login],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.login(com.xintong.visualinspection.bean.User)
  9372. 2017-10-17 10:08:28.751 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/updateUser/{userid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.updateUser(com.xintong.visualinspection.bean.User,int)
  9373. 2017-10-17 10:08:28.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/deleteUser/{userid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.deleteUser(java.lang.Integer)
  9374. 2017-10-17 10:08:28.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/get/all/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getallUsers(java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
  9375. 2017-10-17 10:08:28.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUsers(com.xintong.visualinspection.bean.User)
  9376. 2017-10-17 10:08:28.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserById/{userid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUser(java.lang.Integer)
  9377. 2017-10-17 10:08:28.753 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getAllCheckman],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getAllCheckman()
  9378. 2017-10-17 10:08:28.753 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getFsUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getFsUsers(com.xintong.visualinspection.bean.User)
  9379. 2017-10-17 10:08:28.753 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
  9380. 2017-10-17 10:08:28.754 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getAllVideo/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getAllVideo(java.lang.Integer,java.lang.Integer)
  9381. 2017-10-17 10:08:28.754 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByDeptAndLane/{page}/{size}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByDeptAndLane(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Webcam)
  9382. 2017-10-17 10:08:28.755 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoById/{webcamid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoById(java.lang.String)
  9383. 2017-10-17 10:08:28.836 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  9384. 2017-10-17 10:08:28.898 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9385. 2017-10-17 10:08:28.899 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9386. 2017-10-17 10:08:28.945 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  9387. 2017-10-17 10:08:28.946 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  9388. 2017-10-17 10:08:28.946 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  9389. 2017-10-17 10:08:28.947 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  9390. 2017-10-17 10:08:28.947 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
  9391. 2017-10-17 10:08:28.948 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  9392. 2017-10-17 10:08:28.948 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  9393. 2017-10-17 10:08:28.948 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  9394. 2017-10-17 10:08:28.948 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  9395. 2017-10-17 10:08:28.949 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  9396. 2017-10-17 10:08:28.949 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  9397. 2017-10-17 10:08:28.950 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  9398. 2017-10-17 10:08:28.950 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  9399. 2017-10-17 10:08:28.950 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  9400. 2017-10-17 10:08:28.951 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  9401. 2017-10-17 10:08:28.951 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  9402. 2017-10-17 10:08:28.952 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  9403. 2017-10-17 10:08:28.953 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  9404. 2017-10-17 10:08:28.954 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  9405. 2017-10-17 10:08:28.954 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  9406. 2017-10-17 10:08:28.955 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  9407. 2017-10-17 10:08:28.956 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  9408. 2017-10-17 10:08:28.957 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  9409. 2017-10-17 10:08:28.957 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  9410. 2017-10-17 10:08:29.014 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9411. 2017-10-17 10:08:29.695 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  9412. 2017-10-17 10:08:29.697 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  9413. 2017-10-17 10:08:29.698 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  9414. 2017-10-17 10:08:29.704 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  9415. 2017-10-17 10:08:29.707 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  9416. 2017-10-17 10:08:29.709 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  9417. 2017-10-17 10:08:29.711 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  9418. 2017-10-17 10:08:29.712 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  9419. 2017-10-17 10:08:29.713 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  9420. 2017-10-17 10:08:29.714 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  9421. 2017-10-17 10:08:29.715 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  9422. 2017-10-17 10:08:29.717 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  9423. 2017-10-17 10:08:29.717 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  9424. 2017-10-17 10:08:29.718 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  9425. 2017-10-17 10:08:29.718 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  9426. 2017-10-17 10:08:29.718 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  9427. 2017-10-17 10:08:29.718 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  9428. 2017-10-17 10:08:29.719 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  9429. 2017-10-17 10:08:29.726 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  9430. 2017-10-17 10:08:29.726 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  9431. 2017-10-17 10:08:29.726 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  9432. 2017-10-17 10:08:29.726 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  9433. 2017-10-17 10:08:29.738 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  9434. 2017-10-17 10:08:29.739 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  9435. 2017-10-17 10:08:29.740 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  9436. 2017-10-17 10:08:29.744 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  9437. 2017-10-17 10:08:29.777 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  9438. 2017-10-17 10:08:30.103 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  9439. 2017-10-17 10:08:30.158 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  9440. 2017-10-17 10:08:30.194 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  9441. 2017-10-17 10:08:30.194 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  9442. 2017-10-17 10:08:30.194 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  9443. 2017-10-17 10:08:30.195 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  9444. 2017-10-17 10:08:30.195 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  9445. 2017-10-17 10:08:30.718 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
  9446. 2017-10-17 10:08:30.719 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9447. 2017-10-17 10:08:30.719 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9448. 2017-10-17 10:08:30.720 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
  9449. 2017-10-17 10:08:30.721 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9450. 2017-10-17 10:08:30.721 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9451. 2017-10-17 10:08:30.722 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9452. 2017-10-17 10:08:30.722 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9453. 2017-10-17 10:08:30.723 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9454. 2017-10-17 10:08:30.723 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
  9455. 2017-10-17 10:08:30.724 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9456. 2017-10-17 10:08:30.724 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
  9457. 2017-10-17 10:08:30.725 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
  9458. 2017-10-17 10:08:30.726 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
  9459. 2017-10-17 10:08:30.726 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
  9460. 2017-10-17 10:08:30.726 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9461. 2017-10-17 10:08:30.727 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  9462. 2017-10-17 10:08:31.248 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  9463. 2017-10-17 10:08:31.256 |-WARN [restartedMain] org.springframework.boot.starter.remote.shell.RemoteShellStarterDeprecatedWarningAutoConfiguration [43] -| spring-boot-starter-remote-shell is deprecated as of Spring Boot 1.5 and will be removed in Spring Boot 2.0
  9464. 2017-10-17 10:08:31.453 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  9465. 2017-10-17 10:08:31.455 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  9466. 2017-10-17 10:08:31.455 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  9467. 2017-10-17 10:08:31.466 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'masterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=masterDataSource,type=DruidDataSource]
  9468. 2017-10-17 10:08:31.469 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'clusterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=clusterDataSource,type=DruidDataSource]
  9469. 2017-10-17 10:08:31.470 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  9470. 2017-10-17 10:08:31.474 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  9471. 2017-10-17 10:08:31.476 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'auditEventsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=auditEventsEndpoint]
  9472. 2017-10-17 10:08:31.493 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'requestMappingEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=requestMappingEndpoint]
  9473. 2017-10-17 10:08:31.502 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'environmentEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=environmentEndpoint]
  9474. 2017-10-17 10:08:31.507 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'healthEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=healthEndpoint]
  9475. 2017-10-17 10:08:31.509 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'beansEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=beansEndpoint]
  9476. 2017-10-17 10:08:31.511 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'infoEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=infoEndpoint]
  9477. 2017-10-17 10:08:31.514 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'loggersEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=loggersEndpoint]
  9478. 2017-10-17 10:08:31.519 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'metricsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=metricsEndpoint]
  9479. 2017-10-17 10:08:31.521 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'traceEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=traceEndpoint]
  9480. 2017-10-17 10:08:31.524 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'dumpEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=dumpEndpoint]
  9481. 2017-10-17 10:08:31.526 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'autoConfigurationReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=autoConfigurationReportEndpoint]
  9482. 2017-10-17 10:08:31.527 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'configurationPropertiesReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=configurationPropertiesReportEndpoint]
  9483. 2017-10-17 10:08:31.584 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  9484. 2017-10-17 10:08:32.128 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  9485. 2017-10-17 10:08:32.144 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  9486. 2017-10-17 10:08:32.193 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 52
  9487. 2017-10-17 10:08:32.195 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  9488. 2017-10-17 10:08:32.197 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  9489. 2017-10-17 10:08:32.575 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a
  9490. 2017-10-17 10:08:32.575 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  9491. 2017-10-17 10:08:32.887 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 804
  9492. 2017-10-17 10:08:32.888 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:804
  9493. 2017-10-17 10:08:32.890 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  9494. 2017-10-17 10:08:32.890 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  9495. 2017-10-17 10:08:32.936 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 41
  9496. 2017-10-17 10:08:32.937 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:41
  9497. 2017-10-17 10:08:32.956 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  9498. 2017-10-17 10:08:32.956 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9499. 2017-10-17 10:08:32.989 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9500. 2017-10-17 10:08:32.989 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:804
  9501. 2017-10-17 10:08:33.009 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  9502. 2017-10-17 10:08:33.019 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  9503. 2017-10-17 10:08:33.027 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  9504. 2017-10-17 10:08:33.042 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  9505. 2017-10-17 10:08:33.049 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 11.702 seconds (JVM running for 12.661)
  9506. 2017-10-17 10:11:31.224 |-INFO [http-nio-8089-exec-3] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  9507. 2017-10-17 10:11:31.224 |-INFO [http-nio-8089-exec-3] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  9508. 2017-10-17 10:11:31.246 |-INFO [http-nio-8089-exec-3] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 22 ms
  9509. 2017-10-17 10:11:31.327 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9510. 2017-10-17 10:11:31.327 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9511. 2017-10-17 10:11:31.327 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9512. 2017-10-17 10:11:31.327 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9513. 2017-10-17 10:11:31.327 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9514. 2017-10-17 10:11:31.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9515. 2017-10-17 10:11:31.545 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9516. 2017-10-17 10:11:31.584 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9517. 2017-10-17 10:11:31.585 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9518. 2017-10-17 10:11:31.586 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9519. 2017-10-17 10:11:31.616 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9520. 2017-10-17 10:11:31.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9521. 2017-10-17 10:11:31.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9522. 2017-10-17 10:11:31.622 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9523. 2017-10-17 10:11:31.623 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9524. 2017-10-17 10:11:31.656 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9525. 2017-10-17 10:11:31.657 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9526. 2017-10-17 10:11:31.657 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9527. 2017-10-17 10:11:31.657 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9528. 2017-10-17 10:11:31.657 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9529. 2017-10-17 10:11:31.658 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9530. 2017-10-17 10:11:31.691 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9531. 2017-10-17 10:11:31.692 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9532. 2017-10-17 10:11:31.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9533. 2017-10-17 10:11:31.695 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9534. 2017-10-17 10:11:31.695 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9535. 2017-10-17 10:11:31.696 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9536. 2017-10-17 10:11:31.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9537. 2017-10-17 10:11:31.734 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9538. 2017-10-17 10:11:31.735 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9539. 2017-10-17 10:11:31.736 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9540. 2017-10-17 10:11:31.773 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9541. 2017-10-17 10:11:31.774 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9542. 2017-10-17 10:11:31.775 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9543. 2017-10-17 10:11:31.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9544. 2017-10-17 10:11:31.818 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9545. 2017-10-17 10:11:31.818 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9546. 2017-10-17 10:11:31.854 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9547. 2017-10-17 10:11:31.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9548. 2017-10-17 10:11:31.861 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9549. 2017-10-17 10:11:31.862 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9550. 2017-10-17 10:11:31.863 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9551. 2017-10-17 10:11:31.895 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9552. 2017-10-17 10:11:31.896 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9553. 2017-10-17 10:11:31.898 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9554. 2017-10-17 10:11:31.898 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9555. 2017-10-17 10:11:31.899 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9556. 2017-10-17 10:11:31.914 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9557. 2017-10-17 10:11:31.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9558. 2017-10-17 10:11:31.926 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9559. 2017-10-17 10:11:31.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9560. 2017-10-17 10:11:31.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9561. 2017-10-17 10:11:31.950 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9562. 2017-10-17 10:11:31.951 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9563. 2017-10-17 10:11:31.952 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9564. 2017-10-17 10:11:31.954 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9565. 2017-10-17 10:11:31.962 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9566. 2017-10-17 10:11:31.964 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9567. 2017-10-17 10:11:31.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9568. 2017-10-17 10:11:32.010 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  9569. 2017-10-17 10:11:32.010 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9570. 2017-10-17 10:11:32.011 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9571. 2017-10-17 10:11:32.012 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9572. 2017-10-17 10:11:32.015 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9573. 2017-10-17 10:11:32.016 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9574. 2017-10-17 10:11:32.043 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  9575. 2017-10-17 10:11:32.045 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9576. 2017-10-17 10:11:32.045 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9577. 2017-10-17 10:11:32.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9578. 2017-10-17 10:11:32.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9579. 2017-10-17 10:11:32.062 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9580. 2017-10-17 10:11:32.062 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9581. 2017-10-17 10:11:32.100 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9582. 2017-10-17 10:11:32.102 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  9583. 2017-10-17 10:11:32.103 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9584. 2017-10-17 10:11:32.171 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9585. 2017-10-17 10:11:32.171 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9586. 2017-10-17 10:11:32.171 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9587. 2017-10-17 10:11:32.204 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9588. 2017-10-17 10:11:32.204 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9589. 2017-10-17 10:11:32.205 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9590. 2017-10-17 10:11:32.205 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9591. 2017-10-17 10:11:32.236 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9592. 2017-10-17 10:11:32.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9593. 2017-10-17 10:11:32.238 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9594. 2017-10-17 10:11:32.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9595. 2017-10-17 10:11:32.238 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9596. 2017-10-17 10:11:32.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9597. 2017-10-17 10:11:32.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9598. 2017-10-17 10:11:32.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9599. 2017-10-17 10:11:32.269 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9600. 2017-10-17 10:11:32.271 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9601. 2017-10-17 10:11:32.272 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9602. 2017-10-17 10:11:32.273 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9603. 2017-10-17 10:11:32.274 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9604. 2017-10-17 10:11:32.274 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9605. 2017-10-17 10:11:32.275 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9606. 2017-10-17 10:11:32.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9607. 2017-10-17 10:11:32.275 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9608. 2017-10-17 10:11:32.304 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9609. 2017-10-17 10:11:32.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9610. 2017-10-17 10:11:32.308 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9611. 2017-10-17 10:11:32.309 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9612. 2017-10-17 10:11:32.310 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9613. 2017-10-17 10:11:32.349 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9614. 2017-10-17 10:11:32.350 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9615. 2017-10-17 10:11:32.350 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9616. 2017-10-17 10:11:32.352 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9617. 2017-10-17 10:11:32.352 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9618. 2017-10-17 10:11:32.355 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  9619. 2017-10-17 10:11:32.355 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  9620. 2017-10-17 10:11:32.355 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  9621. 2017-10-17 10:11:32.355 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9622. 2017-10-17 10:11:32.386 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9623. 2017-10-17 10:11:32.388 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  9624. 2017-10-17 10:11:32.389 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9625. 2017-10-17 10:11:32.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9626. 2017-10-17 10:11:32.392 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  9627. 2017-10-17 10:11:32.393 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9628. 2017-10-17 10:11:32.402 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9629. 2017-10-17 10:11:32.425 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9630. 2017-10-17 10:11:32.436 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9631. 2017-10-17 10:11:32.436 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9632. 2017-10-17 10:11:32.467 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9633. 2017-10-17 10:11:32.468 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9634. 2017-10-17 10:11:32.469 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9635. 2017-10-17 10:11:32.503 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9636. 2017-10-17 10:11:32.505 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9637. 2017-10-17 10:11:32.506 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9638. 2017-10-17 10:11:32.535 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9639. 2017-10-17 10:11:32.573 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9640. 2017-10-17 10:11:32.576 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9641. 2017-10-17 10:11:32.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9642. 2017-10-17 10:11:32.603 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9643. 2017-10-17 10:11:32.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  9644. 2017-10-17 10:11:32.802 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9645. 2017-10-17 10:11:32.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9646. 2017-10-17 10:11:32.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9647. 2017-10-17 10:11:32.871 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9648. 2017-10-17 10:11:32.872 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9649. 2017-10-17 10:11:32.872 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9650. 2017-10-17 10:11:32.925 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9651. 2017-10-17 10:11:32.926 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9652. 2017-10-17 10:11:32.927 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9653. 2017-10-17 10:11:32.955 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9654. 2017-10-17 10:11:32.992 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9655. 2017-10-17 10:11:32.995 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9656. 2017-10-17 10:11:33.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  9657. 2017-10-17 10:11:33.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9658. 2017-10-17 10:11:33.030 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9659. 2017-10-17 10:11:33.130 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9660. 2017-10-17 10:11:33.164 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9661. 2017-10-17 10:11:33.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9662. 2017-10-17 10:11:33.195 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9663. 2017-10-17 10:11:33.196 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9664. 2017-10-17 10:11:33.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9665. 2017-10-17 10:11:33.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9666. 2017-10-17 10:11:33.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9667. 2017-10-17 10:11:33.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9668. 2017-10-17 10:11:33.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9669. 2017-10-17 10:11:33.292 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9670. 2017-10-17 10:11:33.295 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9671. 2017-10-17 10:11:33.658 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  9672. 2017-10-17 10:11:33.658 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  9673. 2017-10-17 10:11:33.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  9674. 2017-10-17 10:11:33.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  9675. 2017-10-17 10:11:33.703 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  9676. 2017-10-17 10:11:33.749 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  9677. 2017-10-17 10:12:18.685 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9678. 2017-10-17 10:12:18.685 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9679. 2017-10-17 10:12:18.685 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9680. 2017-10-17 10:12:18.686 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9681. 2017-10-17 10:12:18.686 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9682. 2017-10-17 10:12:18.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9683. 2017-10-17 10:12:18.720 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9684. 2017-10-17 10:12:18.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9685. 2017-10-17 10:12:18.721 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9686. 2017-10-17 10:12:18.722 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9687. 2017-10-17 10:12:18.723 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9688. 2017-10-17 10:12:18.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9689. 2017-10-17 10:12:18.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9690. 2017-10-17 10:12:18.756 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9691. 2017-10-17 10:12:18.757 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9692. 2017-10-17 10:12:18.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9693. 2017-10-17 10:12:18.757 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9694. 2017-10-17 10:12:18.757 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9695. 2017-10-17 10:12:18.758 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9696. 2017-10-17 10:12:18.758 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9697. 2017-10-17 10:12:18.758 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9698. 2017-10-17 10:12:18.761 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9699. 2017-10-17 10:12:18.762 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9700. 2017-10-17 10:12:18.763 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9701. 2017-10-17 10:12:18.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9702. 2017-10-17 10:12:18.790 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9703. 2017-10-17 10:12:18.793 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9704. 2017-10-17 10:12:18.793 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9705. 2017-10-17 10:12:18.793 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9706. 2017-10-17 10:12:18.793 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9707. 2017-10-17 10:12:18.794 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9708. 2017-10-17 10:12:18.794 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9709. 2017-10-17 10:12:18.797 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9710. 2017-10-17 10:12:18.797 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9711. 2017-10-17 10:12:18.797 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9712. 2017-10-17 10:12:18.827 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9713. 2017-10-17 10:12:18.828 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9714. 2017-10-17 10:12:18.828 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9715. 2017-10-17 10:12:18.828 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9716. 2017-10-17 10:12:18.829 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9717. 2017-10-17 10:12:18.829 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9718. 2017-10-17 10:12:18.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9719. 2017-10-17 10:12:18.829 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9720. 2017-10-17 10:12:18.830 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9721. 2017-10-17 10:12:18.855 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9722. 2017-10-17 10:12:18.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9723. 2017-10-17 10:12:18.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9724. 2017-10-17 10:12:18.857 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9725. 2017-10-17 10:12:18.857 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9726. 2017-10-17 10:12:18.884 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9727. 2017-10-17 10:12:18.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9728. 2017-10-17 10:12:18.886 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9729. 2017-10-17 10:12:18.903 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9730. 2017-10-17 10:12:18.904 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9731. 2017-10-17 10:12:18.905 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9732. 2017-10-17 10:12:18.905 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9733. 2017-10-17 10:12:18.906 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9734. 2017-10-17 10:12:18.908 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9735. 2017-10-17 10:12:18.910 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9736. 2017-10-17 10:12:18.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9737. 2017-10-17 10:12:18.922 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9738. 2017-10-17 10:12:18.923 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9739. 2017-10-17 10:12:18.925 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9740. 2017-10-17 10:12:18.927 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9741. 2017-10-17 10:12:18.941 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9742. 2017-10-17 10:12:18.945 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  9743. 2017-10-17 10:12:18.945 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9744. 2017-10-17 10:12:18.947 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9745. 2017-10-17 10:12:18.947 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9746. 2017-10-17 10:12:18.953 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  9747. 2017-10-17 10:12:18.976 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  9748. 2017-10-17 10:12:18.977 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9749. 2017-10-17 10:12:18.977 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9750. 2017-10-17 10:12:18.998 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9751. 2017-10-17 10:12:19.007 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9752. 2017-10-17 10:12:19.069 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9753. 2017-10-17 10:12:19.069 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9754. 2017-10-17 10:12:19.069 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9755. 2017-10-17 10:12:19.102 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9756. 2017-10-17 10:12:19.103 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9757. 2017-10-17 10:12:19.109 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9758. 2017-10-17 10:12:19.109 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9759. 2017-10-17 10:12:19.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9760. 2017-10-17 10:12:19.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9761. 2017-10-17 10:12:19.148 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9762. 2017-10-17 10:12:19.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9763. 2017-10-17 10:12:19.148 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9764. 2017-10-17 10:12:19.150 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9765. 2017-10-17 10:12:19.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9766. 2017-10-17 10:12:19.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9767. 2017-10-17 10:12:19.150 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9768. 2017-10-17 10:12:19.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9769. 2017-10-17 10:12:19.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9770. 2017-10-17 10:12:19.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9771. 2017-10-17 10:12:19.194 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9772. 2017-10-17 10:12:19.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9773. 2017-10-17 10:12:19.195 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9774. 2017-10-17 10:12:19.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9775. 2017-10-17 10:12:19.196 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9776. 2017-10-17 10:12:19.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9777. 2017-10-17 10:12:19.202 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9778. 2017-10-17 10:12:19.203 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9779. 2017-10-17 10:12:19.224 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9780. 2017-10-17 10:12:19.226 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9781. 2017-10-17 10:12:19.240 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9782. 2017-10-17 10:12:19.262 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9783. 2017-10-17 10:12:19.262 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9784. 2017-10-17 10:12:19.264 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9785. 2017-10-17 10:12:19.264 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9786. 2017-10-17 10:12:19.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  9787. 2017-10-17 10:12:19.266 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  9788. 2017-10-17 10:12:19.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9789. 2017-10-17 10:12:19.267 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9790. 2017-10-17 10:12:19.277 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9791. 2017-10-17 10:12:19.279 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9792. 2017-10-17 10:12:19.280 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  9793. 2017-10-17 10:12:19.281 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  9794. 2017-10-17 10:12:19.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9795. 2017-10-17 10:12:19.300 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9796. 2017-10-17 10:12:19.307 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9797. 2017-10-17 10:12:19.308 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  9798. 2017-10-17 10:12:19.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9799. 2017-10-17 10:12:19.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9800. 2017-10-17 10:12:19.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9801. 2017-10-17 10:12:19.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9802. 2017-10-17 10:12:19.371 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9803. 2017-10-17 10:12:19.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9804. 2017-10-17 10:12:19.402 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9805. 2017-10-17 10:12:19.402 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9806. 2017-10-17 10:12:19.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9807. 2017-10-17 10:12:19.470 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9808. 2017-10-17 10:12:19.472 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9809. 2017-10-17 10:12:19.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9810. 2017-10-17 10:12:19.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9811. 2017-10-17 10:12:19.660 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  9812. 2017-10-17 10:12:19.689 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9813. 2017-10-17 10:12:19.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9814. 2017-10-17 10:12:19.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9815. 2017-10-17 10:12:19.753 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9816. 2017-10-17 10:12:19.754 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9817. 2017-10-17 10:12:19.754 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9818. 2017-10-17 10:12:19.786 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9819. 2017-10-17 10:12:19.787 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9820. 2017-10-17 10:12:19.787 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9821. 2017-10-17 10:12:19.814 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9822. 2017-10-17 10:12:19.864 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9823. 2017-10-17 10:12:19.866 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9824. 2017-10-17 10:12:19.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  9825. 2017-10-17 10:12:19.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9826. 2017-10-17 10:12:19.898 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9827. 2017-10-17 10:12:19.997 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9828. 2017-10-17 10:12:20.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9829. 2017-10-17 10:12:20.031 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9830. 2017-10-17 10:12:20.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9831. 2017-10-17 10:12:20.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9832. 2017-10-17 10:12:20.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9833. 2017-10-17 10:12:20.092 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9834. 2017-10-17 10:12:20.093 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9835. 2017-10-17 10:12:20.093 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9836. 2017-10-17 10:12:20.121 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9837. 2017-10-17 10:12:20.156 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9838. 2017-10-17 10:12:20.158 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9839. 2017-10-17 10:12:20.204 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  9840. 2017-10-17 10:12:20.205 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  9841. 2017-10-17 10:12:20.244 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  9842. 2017-10-17 10:12:20.245 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  9843. 2017-10-17 10:12:20.246 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  9844. 2017-10-17 10:12:20.294 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  9845. 2017-10-17 10:12:56.112 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9846. 2017-10-17 10:12:56.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9847. 2017-10-17 10:12:56.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9848. 2017-10-17 10:12:56.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9849. 2017-10-17 10:12:56.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9850. 2017-10-17 10:12:56.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9851. 2017-10-17 10:12:56.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9852. 2017-10-17 10:12:56.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9853. 2017-10-17 10:12:56.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9854. 2017-10-17 10:12:56.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9855. 2017-10-17 10:12:56.309 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9856. 2017-10-17 10:12:56.312 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9857. 2017-10-17 10:12:56.356 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  9858. 2017-10-17 10:12:56.357 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  9859. 2017-10-17 10:12:56.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  9860. 2017-10-17 10:12:56.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  9861. 2017-10-17 10:12:56.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  9862. 2017-10-17 10:12:56.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  9863. 2017-10-17 10:13:05.870 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9864. 2017-10-17 10:13:05.904 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9865. 2017-10-17 10:13:05.904 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9866. 2017-10-17 10:13:05.932 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9867. 2017-10-17 10:13:05.933 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9868. 2017-10-17 10:13:05.934 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9869. 2017-10-17 10:13:05.965 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9870. 2017-10-17 10:13:05.966 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9871. 2017-10-17 10:13:05.967 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9872. 2017-10-17 10:13:06.003 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9873. 2017-10-17 10:13:06.051 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9874. 2017-10-17 10:13:06.053 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9875. 2017-10-17 10:13:06.095 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  9876. 2017-10-17 10:13:06.096 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  9877. 2017-10-17 10:13:06.395 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  9878. 2017-10-17 10:13:06.396 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  9879. 2017-10-17 10:13:06.397 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  9880. 2017-10-17 10:13:06.700 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  9881. 2017-10-17 10:15:32.728 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9882. 2017-10-17 10:15:32.728 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9883. 2017-10-17 10:15:32.728 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9884. 2017-10-17 10:15:32.728 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9885. 2017-10-17 10:15:32.728 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9886. 2017-10-17 10:15:35.169 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9887. 2017-10-17 10:15:35.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9888. 2017-10-17 10:15:35.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9889. 2017-10-17 10:15:35.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9890. 2017-10-17 10:15:35.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9891. 2017-10-17 10:15:35.177 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9892. 2017-10-17 10:15:35.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9893. 2017-10-17 10:15:35.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9894. 2017-10-17 10:15:35.198 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9895. 2017-10-17 10:15:35.199 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9896. 2017-10-17 10:15:35.199 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9897. 2017-10-17 10:15:35.215 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9898. 2017-10-17 10:15:35.216 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9899. 2017-10-17 10:15:35.218 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9900. 2017-10-17 10:15:35.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9901. 2017-10-17 10:15:35.230 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9902. 2017-10-17 10:15:35.230 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9903. 2017-10-17 10:15:35.245 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9904. 2017-10-17 10:15:35.245 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9905. 2017-10-17 10:15:35.246 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9906. 2017-10-17 10:15:35.247 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9907. 2017-10-17 10:15:35.250 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9908. 2017-10-17 10:15:35.250 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9909. 2017-10-17 10:15:35.262 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9910. 2017-10-17 10:15:35.263 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9911. 2017-10-17 10:15:35.263 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9912. 2017-10-17 10:15:35.279 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9913. 2017-10-17 10:15:35.279 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9914. 2017-10-17 10:15:35.280 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9915. 2017-10-17 10:15:35.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9916. 2017-10-17 10:15:35.283 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9917. 2017-10-17 10:15:35.283 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9918. 2017-10-17 10:15:35.285 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9919. 2017-10-17 10:15:35.286 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9920. 2017-10-17 10:15:35.286 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9921. 2017-10-17 10:15:35.303 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9922. 2017-10-17 10:15:35.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9923. 2017-10-17 10:15:35.304 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9924. 2017-10-17 10:15:35.311 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9925. 2017-10-17 10:15:35.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9926. 2017-10-17 10:15:35.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9927. 2017-10-17 10:15:35.316 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9928. 2017-10-17 10:15:35.316 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9929. 2017-10-17 10:15:35.332 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9930. 2017-10-17 10:15:35.345 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9931. 2017-10-17 10:15:35.363 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9932. 2017-10-17 10:15:35.363 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9933. 2017-10-17 10:15:35.365 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9934. 2017-10-17 10:15:35.365 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9935. 2017-10-17 10:15:35.365 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9936. 2017-10-17 10:15:35.367 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9937. 2017-10-17 10:15:35.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9938. 2017-10-17 10:15:35.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9939. 2017-10-17 10:15:35.386 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9940. 2017-10-17 10:15:35.387 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9941. 2017-10-17 10:15:35.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  9942. 2017-10-17 10:15:35.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9943. 2017-10-17 10:15:35.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9944. 2017-10-17 10:15:35.403 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  9945. 2017-10-17 10:15:35.403 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9946. 2017-10-17 10:15:35.417 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9947. 2017-10-17 10:15:35.418 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9948. 2017-10-17 10:15:35.423 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9949. 2017-10-17 10:15:35.423 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9950. 2017-10-17 10:15:35.432 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9951. 2017-10-17 10:15:35.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  9952. 2017-10-17 10:15:35.435 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9953. 2017-10-17 10:15:35.436 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9954. 2017-10-17 10:15:35.453 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  9955. 2017-10-17 10:15:35.468 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9956. 2017-10-17 10:15:35.531 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9957. 2017-10-17 10:15:35.531 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9958. 2017-10-17 10:15:35.532 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9959. 2017-10-17 10:15:35.566 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9960. 2017-10-17 10:15:35.566 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9961. 2017-10-17 10:15:35.567 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9962. 2017-10-17 10:15:35.567 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9963. 2017-10-17 10:15:35.571 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9964. 2017-10-17 10:15:35.571 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9965. 2017-10-17 10:15:35.597 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9966. 2017-10-17 10:15:35.599 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9967. 2017-10-17 10:15:35.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9968. 2017-10-17 10:15:35.600 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9969. 2017-10-17 10:15:35.601 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9970. 2017-10-17 10:15:35.601 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9971. 2017-10-17 10:15:35.618 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9972. 2017-10-17 10:15:35.619 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9973. 2017-10-17 10:15:35.619 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9974. 2017-10-17 10:15:35.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9975. 2017-10-17 10:15:35.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9976. 2017-10-17 10:15:35.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9977. 2017-10-17 10:15:35.638 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9978. 2017-10-17 10:15:35.638 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9979. 2017-10-17 10:15:35.639 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9980. 2017-10-17 10:15:35.658 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  9981. 2017-10-17 10:15:35.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9982. 2017-10-17 10:15:35.660 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9983. 2017-10-17 10:15:35.667 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9984. 2017-10-17 10:15:35.671 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9985. 2017-10-17 10:15:35.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9986. 2017-10-17 10:15:35.705 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9987. 2017-10-17 10:15:35.706 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9988. 2017-10-17 10:15:35.706 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9989. 2017-10-17 10:15:35.707 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9990. 2017-10-17 10:15:35.708 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  9991. 2017-10-17 10:15:35.708 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9992. 2017-10-17 10:15:35.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  9993. 2017-10-17 10:15:35.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  9994. 2017-10-17 10:15:35.721 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  9995. 2017-10-17 10:15:35.723 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  9996. 2017-10-17 10:15:35.725 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  9997. 2017-10-17 10:15:35.725 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9998. 2017-10-17 10:15:35.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9999. 2017-10-17 10:15:35.740 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10000. 2017-10-17 10:15:35.750 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10001. 2017-10-17 10:15:35.756 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10002. 2017-10-17 10:15:35.785 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10003. 2017-10-17 10:15:35.786 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10004. 2017-10-17 10:15:35.815 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10005. 2017-10-17 10:15:35.816 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10006. 2017-10-17 10:15:35.817 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10007. 2017-10-17 10:15:35.858 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10008. 2017-10-17 10:15:35.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10009. 2017-10-17 10:15:35.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10010. 2017-10-17 10:15:35.892 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10011. 2017-10-17 10:15:35.927 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10012. 2017-10-17 10:15:35.928 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10013. 2017-10-17 10:15:35.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10014. 2017-10-17 10:15:35.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10015. 2017-10-17 10:15:36.042 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  10016. 2017-10-17 10:15:36.068 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10017. 2017-10-17 10:15:36.096 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10018. 2017-10-17 10:15:36.096 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10019. 2017-10-17 10:15:36.128 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10020. 2017-10-17 10:15:36.129 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10021. 2017-10-17 10:15:36.129 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10022. 2017-10-17 10:15:36.163 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10023. 2017-10-17 10:15:36.163 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10024. 2017-10-17 10:15:36.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10025. 2017-10-17 10:15:36.190 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10026. 2017-10-17 10:15:36.222 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10027. 2017-10-17 10:15:36.224 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10028. 2017-10-17 10:15:36.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10029. 2017-10-17 10:15:36.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10030. 2017-10-17 10:15:36.261 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10031. 2017-10-17 10:15:36.355 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10032. 2017-10-17 10:15:36.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10033. 2017-10-17 10:15:36.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10034. 2017-10-17 10:15:36.421 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10035. 2017-10-17 10:15:36.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10036. 2017-10-17 10:15:36.423 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10037. 2017-10-17 10:15:36.459 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10038. 2017-10-17 10:15:36.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10039. 2017-10-17 10:15:36.461 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10040. 2017-10-17 10:15:36.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10041. 2017-10-17 10:15:36.527 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10042. 2017-10-17 10:15:36.528 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10043. 2017-10-17 10:15:36.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ?) table_count
  10044. 2017-10-17 10:15:36.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10045. 2017-10-17 10:15:36.856 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10046. 2017-10-17 10:15:36.858 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? order by t.start_time desc limit ?,?
  10047. 2017-10-17 10:15:36.859 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10048. 2017-10-17 10:15:37.145 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10049. 2017-10-17 10:20:57.252 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10050. 2017-10-17 10:20:57.252 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10051. 2017-10-17 10:20:57.252 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10052. 2017-10-17 10:20:57.252 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10053. 2017-10-17 10:20:57.252 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10054. 2017-10-17 10:20:57.420 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10055. 2017-10-17 10:20:57.420 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10056. 2017-10-17 10:20:57.427 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10057. 2017-10-17 10:20:57.427 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10058. 2017-10-17 10:20:57.429 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10059. 2017-10-17 10:20:57.429 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10060. 2017-10-17 10:20:57.430 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10061. 2017-10-17 10:20:57.430 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10062. 2017-10-17 10:20:57.450 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10063. 2017-10-17 10:20:57.459 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10064. 2017-10-17 10:20:57.460 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10065. 2017-10-17 10:20:57.460 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10066. 2017-10-17 10:20:57.479 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10067. 2017-10-17 10:20:57.480 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10068. 2017-10-17 10:20:57.487 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10069. 2017-10-17 10:20:57.488 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10070. 2017-10-17 10:20:57.489 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10071. 2017-10-17 10:20:57.489 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10072. 2017-10-17 10:20:57.490 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10073. 2017-10-17 10:20:57.490 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10074. 2017-10-17 10:20:57.515 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10075. 2017-10-17 10:20:57.516 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10076. 2017-10-17 10:20:57.517 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10077. 2017-10-17 10:20:57.519 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10078. 2017-10-17 10:20:57.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10079. 2017-10-17 10:20:57.520 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10080. 2017-10-17 10:20:57.520 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10081. 2017-10-17 10:20:57.520 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10082. 2017-10-17 10:20:57.520 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10083. 2017-10-17 10:20:57.523 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10084. 2017-10-17 10:20:57.523 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10085. 2017-10-17 10:20:57.524 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10086. 2017-10-17 10:20:57.545 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10087. 2017-10-17 10:20:57.547 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10088. 2017-10-17 10:20:57.547 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10089. 2017-10-17 10:20:57.554 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10090. 2017-10-17 10:20:57.597 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10091. 2017-10-17 10:20:57.598 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10092. 2017-10-17 10:20:57.599 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10093. 2017-10-17 10:20:57.599 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10094. 2017-10-17 10:20:57.605 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10095. 2017-10-17 10:20:57.606 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10096. 2017-10-17 10:20:57.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10097. 2017-10-17 10:20:57.608 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10098. 2017-10-17 10:20:57.613 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10099. 2017-10-17 10:20:57.614 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10100. 2017-10-17 10:20:57.634 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  10101. 2017-10-17 10:20:57.635 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10102. 2017-10-17 10:20:57.637 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10103. 2017-10-17 10:20:57.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10104. 2017-10-17 10:20:57.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10105. 2017-10-17 10:20:57.668 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  10106. 2017-10-17 10:20:57.669 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10107. 2017-10-17 10:20:57.670 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10108. 2017-10-17 10:20:57.682 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  10109. 2017-10-17 10:20:57.700 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10110. 2017-10-17 10:20:57.760 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10111. 2017-10-17 10:20:57.760 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10112. 2017-10-17 10:20:57.760 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10113. 2017-10-17 10:20:57.790 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10114. 2017-10-17 10:20:57.790 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10115. 2017-10-17 10:20:57.793 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10116. 2017-10-17 10:20:57.793 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10117. 2017-10-17 10:20:57.793 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10118. 2017-10-17 10:20:57.794 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10119. 2017-10-17 10:20:57.834 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10120. 2017-10-17 10:20:57.835 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10121. 2017-10-17 10:20:57.835 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10122. 2017-10-17 10:20:57.835 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10123. 2017-10-17 10:20:57.835 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10124. 2017-10-17 10:20:57.836 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10125. 2017-10-17 10:20:57.836 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10126. 2017-10-17 10:20:57.836 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10127. 2017-10-17 10:20:57.837 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10128. 2017-10-17 10:20:57.867 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10129. 2017-10-17 10:20:57.868 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10130. 2017-10-17 10:20:57.869 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10131. 2017-10-17 10:20:57.870 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10132. 2017-10-17 10:20:57.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10133. 2017-10-17 10:20:57.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10134. 2017-10-17 10:20:57.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10135. 2017-10-17 10:20:57.872 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10136. 2017-10-17 10:20:57.872 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10137. 2017-10-17 10:20:57.898 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10138. 2017-10-17 10:20:57.900 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10139. 2017-10-17 10:20:57.902 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10140. 2017-10-17 10:20:57.929 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10141. 2017-10-17 10:20:57.930 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10142. 2017-10-17 10:20:57.932 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10143. 2017-10-17 10:20:57.932 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10144. 2017-10-17 10:20:57.936 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10145. 2017-10-17 10:20:57.937 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10146. 2017-10-17 10:20:57.938 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  10147. 2017-10-17 10:20:57.939 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  10148. 2017-10-17 10:20:57.946 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10149. 2017-10-17 10:20:57.948 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10150. 2017-10-17 10:20:57.949 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  10151. 2017-10-17 10:20:57.950 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10152. 2017-10-17 10:20:57.968 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10153. 2017-10-17 10:20:57.969 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10154. 2017-10-17 10:20:57.978 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10155. 2017-10-17 10:20:57.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10156. 2017-10-17 10:20:58.009 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10157. 2017-10-17 10:20:58.010 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10158. 2017-10-17 10:20:58.049 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10159. 2017-10-17 10:20:58.049 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10160. 2017-10-17 10:20:58.050 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10161. 2017-10-17 10:20:58.080 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10162. 2017-10-17 10:20:58.081 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10163. 2017-10-17 10:20:58.082 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10164. 2017-10-17 10:20:58.109 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10165. 2017-10-17 10:20:58.153 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10166. 2017-10-17 10:20:58.154 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10167. 2017-10-17 10:20:58.159 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10168. 2017-10-17 10:20:58.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10169. 2017-10-17 10:20:58.262 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  10170. 2017-10-17 10:20:58.289 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10171. 2017-10-17 10:20:58.320 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10172. 2017-10-17 10:20:58.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10173. 2017-10-17 10:20:58.352 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10174. 2017-10-17 10:20:58.353 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10175. 2017-10-17 10:20:58.353 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10176. 2017-10-17 10:20:58.383 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10177. 2017-10-17 10:20:58.384 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10178. 2017-10-17 10:20:58.385 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10179. 2017-10-17 10:20:58.419 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10180. 2017-10-17 10:20:58.465 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10181. 2017-10-17 10:20:58.467 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10182. 2017-10-17 10:20:58.471 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10183. 2017-10-17 10:20:58.471 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10184. 2017-10-17 10:20:58.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10185. 2017-10-17 10:20:58.628 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10186. 2017-10-17 10:20:58.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10187. 2017-10-17 10:20:58.659 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10188. 2017-10-17 10:20:58.689 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10189. 2017-10-17 10:20:58.690 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10190. 2017-10-17 10:20:58.691 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10191. 2017-10-17 10:20:58.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10192. 2017-10-17 10:20:58.727 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10193. 2017-10-17 10:20:58.727 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10194. 2017-10-17 10:20:58.763 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10195. 2017-10-17 10:20:58.805 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10196. 2017-10-17 10:20:58.807 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10197. 2017-10-17 10:20:58.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10198. 2017-10-17 10:20:58.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10199. 2017-10-17 10:20:59.127 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10200. 2017-10-17 10:20:59.128 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10201. 2017-10-17 10:20:59.129 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10202. 2017-10-17 10:20:59.307 |-ERROR [http-nio-8089-exec-2] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] [181] -| Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
  10203. org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  10204. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)
  10205. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)
  10206. at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)
  10207. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:92)
  10208. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:79)
  10209. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:194)
  10210. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:169)
  10211. at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:91)
  10212. at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)
  10213. at com.xintong.system.securityTools.RedisCacheUtil.getUserByUserName(RedisCacheUtil.java:19)
  10214. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:60)
  10215. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10216. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10217. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  10218. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10219. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  10220. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10221. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10222. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  10223. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10224. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10225. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  10226. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10227. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  10228. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10229. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10230. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  10231. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  10232. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  10233. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  10234. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10235. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10236. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  10237. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10238. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10239. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10240. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  10241. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10242. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10243. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10244. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  10245. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10246. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10247. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10248. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  10249. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10250. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10251. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10252. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  10253. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10254. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10255. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10256. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  10257. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  10258. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  10259. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  10260. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  10261. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  10262. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  10263. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  10264. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  10265. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  10266. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  10267. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  10268. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  10269. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  10270. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  10271. at java.lang.Thread.run(Thread.java:745)
  10272. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  10273. at redis.clients.util.Pool.getResource(Pool.java:53)
  10274. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
  10275. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
  10276. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:194)
  10277. ... 67 common frames omitted
  10278. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out
  10279. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202)
  10280. at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40)
  10281. at redis.clients.jedis.Protocol.process(Protocol.java:151)
  10282. at redis.clients.jedis.Protocol.read(Protocol.java:215)
  10283. at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
  10284. at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
  10285. at redis.clients.jedis.BinaryJedis.auth(BinaryJedis.java:2139)
  10286. at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:108)
  10287. at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:868)
  10288. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:435)
  10289. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
  10290. at redis.clients.util.Pool.getResource(Pool.java:49)
  10291. ... 70 common frames omitted
  10292. Caused by: java.net.SocketTimeoutException: Read timed out
  10293. at java.net.SocketInputStream.socketRead0(Native Method)
  10294. at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
  10295. at java.net.SocketInputStream.read(SocketInputStream.java:170)
  10296. at java.net.SocketInputStream.read(SocketInputStream.java:141)
  10297. at java.net.SocketInputStream.read(SocketInputStream.java:127)
  10298. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:196)
  10299. ... 81 common frames omitted
  10300. 2017-10-17 10:20:59.416 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10301. 2017-10-17 10:21:03.583 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10302. 2017-10-17 10:21:03.651 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10303. 2017-10-17 10:21:03.651 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10304. 2017-10-17 10:21:03.685 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10305. 2017-10-17 10:21:03.686 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10306. 2017-10-17 10:21:03.686 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10307. 2017-10-17 10:21:03.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10308. 2017-10-17 10:21:03.723 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10309. 2017-10-17 10:21:03.724 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10310. 2017-10-17 10:21:03.756 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10311. 2017-10-17 10:21:03.819 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10312. 2017-10-17 10:21:03.821 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10313. 2017-10-17 10:21:03.954 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10314. 2017-10-17 10:21:03.954 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10315. 2017-10-17 10:21:04.240 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10316. 2017-10-17 10:21:04.243 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10317. 2017-10-17 10:21:04.244 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10318. 2017-10-17 10:21:04.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10319. 2017-10-17 10:21:09.123 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10320. 2017-10-17 10:21:09.278 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10321. 2017-10-17 10:21:09.279 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10322. 2017-10-17 10:21:09.309 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10323. 2017-10-17 10:21:09.310 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10324. 2017-10-17 10:21:09.310 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10325. 2017-10-17 10:21:09.346 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10326. 2017-10-17 10:21:09.347 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10327. 2017-10-17 10:21:09.347 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10328. 2017-10-17 10:21:09.373 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10329. 2017-10-17 10:21:09.462 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10330. 2017-10-17 10:21:09.463 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10331. 2017-10-17 10:21:09.546 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10332. 2017-10-17 10:21:09.547 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10333. 2017-10-17 10:21:09.836 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10334. 2017-10-17 10:21:09.839 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10335. 2017-10-17 10:21:09.839 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10336. 2017-10-17 10:21:10.145 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10337. 2017-10-17 10:21:12.462 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10338. 2017-10-17 10:21:12.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10339. 2017-10-17 10:21:12.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10340. 2017-10-17 10:21:12.529 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10341. 2017-10-17 10:21:12.531 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10342. 2017-10-17 10:21:12.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10343. 2017-10-17 10:21:12.578 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10344. 2017-10-17 10:21:12.579 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10345. 2017-10-17 10:21:12.579 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10346. 2017-10-17 10:21:12.618 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10347. 2017-10-17 10:21:12.665 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10348. 2017-10-17 10:21:12.667 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10349. 2017-10-17 10:21:12.718 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10350. 2017-10-17 10:21:12.718 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10351. 2017-10-17 10:21:13.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10352. 2017-10-17 10:21:13.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10353. 2017-10-17 10:21:13.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10354. 2017-10-17 10:21:13.293 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10355. 2017-10-17 10:21:16.472 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10356. 2017-10-17 10:21:16.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10357. 2017-10-17 10:21:16.502 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10358. 2017-10-17 10:21:16.533 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10359. 2017-10-17 10:21:16.534 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10360. 2017-10-17 10:21:16.534 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10361. 2017-10-17 10:21:16.565 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10362. 2017-10-17 10:21:16.566 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10363. 2017-10-17 10:21:16.566 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10364. 2017-10-17 10:21:16.595 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10365. 2017-10-17 10:21:16.643 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10366. 2017-10-17 10:21:16.647 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10367. 2017-10-17 10:21:16.683 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10368. 2017-10-17 10:21:16.684 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10369. 2017-10-17 10:21:16.966 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10370. 2017-10-17 10:21:16.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10371. 2017-10-17 10:21:16.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10372. 2017-10-17 10:21:17.257 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10373. 2017-10-17 10:21:21.310 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10374. 2017-10-17 10:21:21.340 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10375. 2017-10-17 10:21:21.341 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10376. 2017-10-17 10:21:21.373 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10377. 2017-10-17 10:21:21.374 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10378. 2017-10-17 10:21:21.375 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10379. 2017-10-17 10:21:21.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10380. 2017-10-17 10:21:21.409 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10381. 2017-10-17 10:21:21.410 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10382. 2017-10-17 10:21:21.438 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10383. 2017-10-17 10:21:21.483 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10384. 2017-10-17 10:21:21.484 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10385. 2017-10-17 10:21:21.519 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10386. 2017-10-17 10:21:21.520 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10387. 2017-10-17 10:21:21.802 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10388. 2017-10-17 10:21:21.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10389. 2017-10-17 10:21:21.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10390. 2017-10-17 10:21:22.091 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10391. 2017-10-17 10:23:07.158 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10392. 2017-10-17 10:23:07.159 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10393. 2017-10-17 10:23:07.158 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10394. 2017-10-17 10:23:07.159 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10395. 2017-10-17 10:23:07.159 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10396. 2017-10-17 10:23:07.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10397. 2017-10-17 10:23:07.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10398. 2017-10-17 10:23:07.301 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10399. 2017-10-17 10:23:07.302 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10400. 2017-10-17 10:23:07.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10401. 2017-10-17 10:23:07.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10402. 2017-10-17 10:23:07.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10403. 2017-10-17 10:23:07.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10404. 2017-10-17 10:23:07.318 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10405. 2017-10-17 10:23:07.319 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10406. 2017-10-17 10:23:07.331 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10407. 2017-10-17 10:23:07.334 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10408. 2017-10-17 10:23:07.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10409. 2017-10-17 10:23:07.334 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10410. 2017-10-17 10:23:07.359 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10411. 2017-10-17 10:23:07.362 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10412. 2017-10-17 10:23:07.362 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10413. 2017-10-17 10:23:07.365 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10414. 2017-10-17 10:23:07.365 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10415. 2017-10-17 10:23:07.365 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10416. 2017-10-17 10:23:07.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10417. 2017-10-17 10:23:07.365 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10418. 2017-10-17 10:23:07.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10419. 2017-10-17 10:23:07.392 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10420. 2017-10-17 10:23:07.393 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10421. 2017-10-17 10:23:07.394 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10422. 2017-10-17 10:23:07.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10423. 2017-10-17 10:23:07.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10424. 2017-10-17 10:23:07.400 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10425. 2017-10-17 10:23:07.400 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10426. 2017-10-17 10:23:07.400 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10427. 2017-10-17 10:23:07.401 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10428. 2017-10-17 10:23:07.401 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10429. 2017-10-17 10:23:07.401 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10430. 2017-10-17 10:23:07.401 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10431. 2017-10-17 10:23:07.402 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10432. 2017-10-17 10:23:07.402 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10433. 2017-10-17 10:23:07.428 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10434. 2017-10-17 10:23:07.433 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10435. 2017-10-17 10:23:07.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10436. 2017-10-17 10:23:07.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10437. 2017-10-17 10:23:07.434 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10438. 2017-10-17 10:23:07.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10439. 2017-10-17 10:23:07.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10440. 2017-10-17 10:23:07.469 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10441. 2017-10-17 10:23:07.480 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10442. 2017-10-17 10:23:07.482 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10443. 2017-10-17 10:23:07.494 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10444. 2017-10-17 10:23:07.496 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10445. 2017-10-17 10:23:07.498 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10446. 2017-10-17 10:23:07.498 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10447. 2017-10-17 10:23:07.505 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10448. 2017-10-17 10:23:07.506 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10449. 2017-10-17 10:23:07.506 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10450. 2017-10-17 10:23:07.507 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10451. 2017-10-17 10:23:07.514 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10452. 2017-10-17 10:23:07.515 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10453. 2017-10-17 10:23:07.521 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10454. 2017-10-17 10:23:07.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10455. 2017-10-17 10:23:07.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10456. 2017-10-17 10:23:07.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10457. 2017-10-17 10:23:07.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10458. 2017-10-17 10:23:07.539 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  10459. 2017-10-17 10:23:07.540 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10460. 2017-10-17 10:23:07.556 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10461. 2017-10-17 10:23:07.571 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  10462. 2017-10-17 10:23:07.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  10463. 2017-10-17 10:23:07.573 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10464. 2017-10-17 10:23:07.573 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10465. 2017-10-17 10:23:07.612 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10466. 2017-10-17 10:23:07.677 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10467. 2017-10-17 10:23:07.677 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10468. 2017-10-17 10:23:07.677 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10469. 2017-10-17 10:23:07.708 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10470. 2017-10-17 10:23:07.708 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10471. 2017-10-17 10:23:07.709 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10472. 2017-10-17 10:23:07.709 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10473. 2017-10-17 10:23:07.711 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10474. 2017-10-17 10:23:07.712 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10475. 2017-10-17 10:23:07.746 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10476. 2017-10-17 10:23:07.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10477. 2017-10-17 10:23:07.747 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10478. 2017-10-17 10:23:07.747 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10479. 2017-10-17 10:23:07.747 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10480. 2017-10-17 10:23:07.747 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10481. 2017-10-17 10:23:07.747 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10482. 2017-10-17 10:23:07.747 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10483. 2017-10-17 10:23:07.748 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10484. 2017-10-17 10:23:07.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10485. 2017-10-17 10:23:07.782 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10486. 2017-10-17 10:23:07.782 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10487. 2017-10-17 10:23:07.782 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10488. 2017-10-17 10:23:07.783 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10489. 2017-10-17 10:23:07.783 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10490. 2017-10-17 10:23:07.783 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10491. 2017-10-17 10:23:07.783 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10492. 2017-10-17 10:23:07.784 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10493. 2017-10-17 10:23:07.814 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10494. 2017-10-17 10:23:07.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10495. 2017-10-17 10:23:07.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10496. 2017-10-17 10:23:07.853 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10497. 2017-10-17 10:23:07.854 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10498. 2017-10-17 10:23:07.855 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10499. 2017-10-17 10:23:07.856 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10500. 2017-10-17 10:23:07.856 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  10501. 2017-10-17 10:23:07.856 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10502. 2017-10-17 10:23:07.857 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10503. 2017-10-17 10:23:07.857 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10504. 2017-10-17 10:23:07.859 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10505. 2017-10-17 10:23:07.860 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10506. 2017-10-17 10:23:07.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  10507. 2017-10-17 10:23:07.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  10508. 2017-10-17 10:23:07.886 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10509. 2017-10-17 10:23:07.888 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10510. 2017-10-17 10:23:07.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10511. 2017-10-17 10:23:07.897 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10512. 2017-10-17 10:23:07.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10513. 2017-10-17 10:23:07.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10514. 2017-10-17 10:23:07.958 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10515. 2017-10-17 10:23:07.959 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10516. 2017-10-17 10:23:07.959 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10517. 2017-10-17 10:23:07.989 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10518. 2017-10-17 10:23:07.990 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10519. 2017-10-17 10:23:07.991 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10520. 2017-10-17 10:23:08.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10521. 2017-10-17 10:23:08.058 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10522. 2017-10-17 10:23:08.060 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10523. 2017-10-17 10:23:08.063 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10524. 2017-10-17 10:23:08.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10525. 2017-10-17 10:23:08.169 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  10526. 2017-10-17 10:23:08.197 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10527. 2017-10-17 10:23:08.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10528. 2017-10-17 10:23:08.231 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10529. 2017-10-17 10:23:08.281 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10530. 2017-10-17 10:23:08.282 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10531. 2017-10-17 10:23:08.282 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10532. 2017-10-17 10:23:08.321 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10533. 2017-10-17 10:23:08.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10534. 2017-10-17 10:23:08.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10535. 2017-10-17 10:23:08.355 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10536. 2017-10-17 10:23:08.387 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10537. 2017-10-17 10:23:08.389 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10538. 2017-10-17 10:23:08.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10539. 2017-10-17 10:23:08.393 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10540. 2017-10-17 10:23:08.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10541. 2017-10-17 10:23:08.547 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10542. 2017-10-17 10:23:08.580 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10543. 2017-10-17 10:23:08.581 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10544. 2017-10-17 10:23:08.610 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10545. 2017-10-17 10:23:08.612 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10546. 2017-10-17 10:23:08.613 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10547. 2017-10-17 10:23:08.657 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10548. 2017-10-17 10:23:08.659 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10549. 2017-10-17 10:23:08.659 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10550. 2017-10-17 10:23:08.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10551. 2017-10-17 10:23:08.731 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10552. 2017-10-17 10:23:08.733 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10553. 2017-10-17 10:23:08.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10554. 2017-10-17 10:23:08.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10555. 2017-10-17 10:23:09.062 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10556. 2017-10-17 10:23:09.063 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10557. 2017-10-17 10:23:09.064 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10558. 2017-10-17 10:23:09.356 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10559. 2017-10-17 10:23:21.862 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10560. 2017-10-17 10:23:21.895 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10561. 2017-10-17 10:23:21.896 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10562. 2017-10-17 10:23:21.927 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10563. 2017-10-17 10:23:21.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10564. 2017-10-17 10:23:21.929 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10565. 2017-10-17 10:23:21.959 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10566. 2017-10-17 10:23:21.960 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10567. 2017-10-17 10:23:21.961 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10568. 2017-10-17 10:23:21.987 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10569. 2017-10-17 10:23:22.034 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10570. 2017-10-17 10:23:22.035 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10571. 2017-10-17 10:23:22.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10572. 2017-10-17 10:23:22.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10573. 2017-10-17 10:23:22.362 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10574. 2017-10-17 10:23:22.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10575. 2017-10-17 10:23:22.364 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10576. 2017-10-17 10:23:22.644 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10577. 2017-10-17 10:24:30.892 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10578. 2017-10-17 10:24:30.893 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10579. 2017-10-17 10:24:30.893 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10580. 2017-10-17 10:24:30.893 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10581. 2017-10-17 10:24:30.893 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10582. 2017-10-17 10:24:31.046 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10583. 2017-10-17 10:24:31.046 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10584. 2017-10-17 10:24:31.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10585. 2017-10-17 10:24:31.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10586. 2017-10-17 10:24:31.074 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10587. 2017-10-17 10:24:31.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10588. 2017-10-17 10:24:31.074 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10589. 2017-10-17 10:24:31.074 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10590. 2017-10-17 10:24:31.075 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10591. 2017-10-17 10:24:31.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10592. 2017-10-17 10:24:31.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10593. 2017-10-17 10:24:31.104 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10594. 2017-10-17 10:24:31.107 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10595. 2017-10-17 10:24:31.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10596. 2017-10-17 10:24:31.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10597. 2017-10-17 10:24:31.110 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10598. 2017-10-17 10:24:31.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10599. 2017-10-17 10:24:31.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10600. 2017-10-17 10:24:31.136 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10601. 2017-10-17 10:24:31.137 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10602. 2017-10-17 10:24:31.137 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10603. 2017-10-17 10:24:31.139 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10604. 2017-10-17 10:24:31.140 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10605. 2017-10-17 10:24:31.140 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10606. 2017-10-17 10:24:31.145 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10607. 2017-10-17 10:24:31.146 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10608. 2017-10-17 10:24:31.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10609. 2017-10-17 10:24:31.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10610. 2017-10-17 10:24:31.169 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10611. 2017-10-17 10:24:31.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10612. 2017-10-17 10:24:31.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10613. 2017-10-17 10:24:31.170 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10614. 2017-10-17 10:24:31.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10615. 2017-10-17 10:24:31.171 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10616. 2017-10-17 10:24:31.174 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10617. 2017-10-17 10:24:31.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10618. 2017-10-17 10:24:31.179 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10619. 2017-10-17 10:24:31.179 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10620. 2017-10-17 10:24:31.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10621. 2017-10-17 10:24:31.182 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10622. 2017-10-17 10:24:31.182 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10623. 2017-10-17 10:24:31.204 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10624. 2017-10-17 10:24:31.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10625. 2017-10-17 10:24:31.207 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10626. 2017-10-17 10:24:31.210 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10627. 2017-10-17 10:24:31.238 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10628. 2017-10-17 10:24:31.239 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10629. 2017-10-17 10:24:31.240 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10630. 2017-10-17 10:24:31.241 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10631. 2017-10-17 10:24:31.251 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10632. 2017-10-17 10:24:31.251 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10633. 2017-10-17 10:24:31.251 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10634. 2017-10-17 10:24:31.252 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10635. 2017-10-17 10:24:31.252 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10636. 2017-10-17 10:24:31.252 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10637. 2017-10-17 10:24:31.267 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10638. 2017-10-17 10:24:31.268 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10639. 2017-10-17 10:24:31.272 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10640. 2017-10-17 10:24:31.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10641. 2017-10-17 10:24:31.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10642. 2017-10-17 10:24:31.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10643. 2017-10-17 10:24:31.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10644. 2017-10-17 10:24:31.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  10645. 2017-10-17 10:24:31.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10646. 2017-10-17 10:24:31.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10647. 2017-10-17 10:24:31.334 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  10648. 2017-10-17 10:24:31.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  10649. 2017-10-17 10:24:31.338 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10650. 2017-10-17 10:24:31.338 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10651. 2017-10-17 10:24:31.369 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10652. 2017-10-17 10:24:31.439 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10653. 2017-10-17 10:24:31.439 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10654. 2017-10-17 10:24:31.439 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10655. 2017-10-17 10:24:31.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10656. 2017-10-17 10:24:31.472 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10657. 2017-10-17 10:24:31.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10658. 2017-10-17 10:24:31.472 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10659. 2017-10-17 10:24:31.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10660. 2017-10-17 10:24:31.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10661. 2017-10-17 10:24:31.505 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10662. 2017-10-17 10:24:31.506 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10663. 2017-10-17 10:24:31.506 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10664. 2017-10-17 10:24:31.507 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10665. 2017-10-17 10:24:31.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10666. 2017-10-17 10:24:31.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10667. 2017-10-17 10:24:31.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10668. 2017-10-17 10:24:31.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10669. 2017-10-17 10:24:31.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10670. 2017-10-17 10:24:31.540 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10671. 2017-10-17 10:24:31.541 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10672. 2017-10-17 10:24:31.542 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10673. 2017-10-17 10:24:31.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10674. 2017-10-17 10:24:31.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10675. 2017-10-17 10:24:31.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10676. 2017-10-17 10:24:31.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10677. 2017-10-17 10:24:31.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10678. 2017-10-17 10:24:31.546 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10679. 2017-10-17 10:24:31.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10680. 2017-10-17 10:24:31.574 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10681. 2017-10-17 10:24:31.574 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10682. 2017-10-17 10:24:31.610 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10683. 2017-10-17 10:24:31.612 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10684. 2017-10-17 10:24:31.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10685. 2017-10-17 10:24:31.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10686. 2017-10-17 10:24:31.622 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10687. 2017-10-17 10:24:31.623 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10688. 2017-10-17 10:24:31.623 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10689. 2017-10-17 10:24:31.623 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10690. 2017-10-17 10:24:31.625 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  10691. 2017-10-17 10:24:31.625 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  10692. 2017-10-17 10:24:31.625 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10693. 2017-10-17 10:24:31.625 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  10694. 2017-10-17 10:24:31.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10695. 2017-10-17 10:24:31.657 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10696. 2017-10-17 10:24:31.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10697. 2017-10-17 10:24:31.668 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10698. 2017-10-17 10:24:31.703 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10699. 2017-10-17 10:24:31.703 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10700. 2017-10-17 10:24:31.739 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10701. 2017-10-17 10:24:31.739 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10702. 2017-10-17 10:24:31.740 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10703. 2017-10-17 10:24:31.771 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10704. 2017-10-17 10:24:31.772 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10705. 2017-10-17 10:24:31.772 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10706. 2017-10-17 10:24:31.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10707. 2017-10-17 10:24:31.836 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10708. 2017-10-17 10:24:31.838 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10709. 2017-10-17 10:24:31.842 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10710. 2017-10-17 10:24:31.843 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10711. 2017-10-17 10:24:32.005 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  10712. 2017-10-17 10:24:32.032 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10713. 2017-10-17 10:24:32.076 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10714. 2017-10-17 10:24:32.077 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10715. 2017-10-17 10:24:32.109 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10716. 2017-10-17 10:24:32.110 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10717. 2017-10-17 10:24:32.110 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10718. 2017-10-17 10:24:32.156 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10719. 2017-10-17 10:24:32.157 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10720. 2017-10-17 10:24:32.157 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10721. 2017-10-17 10:24:32.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10722. 2017-10-17 10:24:32.238 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10723. 2017-10-17 10:24:32.239 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10724. 2017-10-17 10:24:32.242 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10725. 2017-10-17 10:24:32.243 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10726. 2017-10-17 10:24:32.285 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10727. 2017-10-17 10:24:32.434 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10728. 2017-10-17 10:24:32.465 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10729. 2017-10-17 10:24:32.466 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10730. 2017-10-17 10:24:32.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10731. 2017-10-17 10:24:32.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10732. 2017-10-17 10:24:32.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10733. 2017-10-17 10:24:32.554 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10734. 2017-10-17 10:24:32.555 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10735. 2017-10-17 10:24:32.555 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10736. 2017-10-17 10:24:32.597 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10737. 2017-10-17 10:24:32.644 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10738. 2017-10-17 10:24:32.646 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10739. 2017-10-17 10:24:32.682 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10740. 2017-10-17 10:24:32.682 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10741. 2017-10-17 10:24:32.969 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10742. 2017-10-17 10:24:32.971 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10743. 2017-10-17 10:24:32.971 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10744. 2017-10-17 10:24:33.270 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10745. 2017-10-17 10:24:35.322 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10746. 2017-10-17 10:24:35.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10747. 2017-10-17 10:24:35.354 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10748. 2017-10-17 10:24:35.385 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10749. 2017-10-17 10:24:35.386 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10750. 2017-10-17 10:24:35.387 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10751. 2017-10-17 10:24:35.430 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10752. 2017-10-17 10:24:35.431 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10753. 2017-10-17 10:24:35.431 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10754. 2017-10-17 10:24:35.472 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10755. 2017-10-17 10:24:35.517 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10756. 2017-10-17 10:24:35.520 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10757. 2017-10-17 10:24:35.560 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.invalid_from = ?) table_count
  10758. 2017-10-17 10:24:35.560 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer), 0(Integer)
  10759. 2017-10-17 10:24:35.857 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10760. 2017-10-17 10:24:35.859 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.invalid_from = ? order by t.start_time desc limit ?,?
  10761. 2017-10-17 10:24:35.859 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 0(Integer), 10(Integer)
  10762. 2017-10-17 10:24:36.157 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10763. 2017-10-17 10:24:41.326 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10764. 2017-10-17 10:24:41.326 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10765. 2017-10-17 10:24:41.326 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10766. 2017-10-17 10:24:41.326 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10767. 2017-10-17 10:24:41.326 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10768. 2017-10-17 10:24:41.359 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10769. 2017-10-17 10:24:41.359 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10770. 2017-10-17 10:24:41.362 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10771. 2017-10-17 10:24:41.362 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10772. 2017-10-17 10:24:41.362 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10773. 2017-10-17 10:24:41.362 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10774. 2017-10-17 10:24:41.364 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10775. 2017-10-17 10:24:41.365 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10776. 2017-10-17 10:24:41.365 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10777. 2017-10-17 10:24:41.365 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10778. 2017-10-17 10:24:41.397 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10779. 2017-10-17 10:24:41.397 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10780. 2017-10-17 10:24:41.397 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10781. 2017-10-17 10:24:41.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10782. 2017-10-17 10:24:41.398 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10783. 2017-10-17 10:24:41.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10784. 2017-10-17 10:24:41.398 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10785. 2017-10-17 10:24:41.398 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10786. 2017-10-17 10:24:41.399 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10787. 2017-10-17 10:24:41.399 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10788. 2017-10-17 10:24:41.400 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10789. 2017-10-17 10:24:41.400 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10790. 2017-10-17 10:24:41.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10791. 2017-10-17 10:24:41.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10792. 2017-10-17 10:24:41.406 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10793. 2017-10-17 10:24:41.429 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10794. 2017-10-17 10:24:41.430 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10795. 2017-10-17 10:24:41.430 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10796. 2017-10-17 10:24:41.432 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10797. 2017-10-17 10:24:41.432 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10798. 2017-10-17 10:24:41.433 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10799. 2017-10-17 10:24:41.433 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10800. 2017-10-17 10:24:41.434 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10801. 2017-10-17 10:24:41.434 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10802. 2017-10-17 10:24:41.450 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10803. 2017-10-17 10:24:41.451 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10804. 2017-10-17 10:24:41.451 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10805. 2017-10-17 10:24:41.456 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10806. 2017-10-17 10:24:41.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10807. 2017-10-17 10:24:41.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10808. 2017-10-17 10:24:41.458 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10809. 2017-10-17 10:24:41.462 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10810. 2017-10-17 10:24:41.462 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10811. 2017-10-17 10:24:41.489 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10812. 2017-10-17 10:24:41.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10813. 2017-10-17 10:24:41.505 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10814. 2017-10-17 10:24:41.506 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10815. 2017-10-17 10:24:41.506 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10816. 2017-10-17 10:24:41.507 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10817. 2017-10-17 10:24:41.513 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10818. 2017-10-17 10:24:41.514 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10819. 2017-10-17 10:24:41.532 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10820. 2017-10-17 10:24:41.533 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10821. 2017-10-17 10:24:41.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10822. 2017-10-17 10:24:41.536 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10823. 2017-10-17 10:24:41.538 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10824. 2017-10-17 10:24:41.540 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10825. 2017-10-17 10:24:41.541 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  10826. 2017-10-17 10:24:41.542 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10827. 2017-10-17 10:24:41.567 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10828. 2017-10-17 10:24:41.568 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10829. 2017-10-17 10:24:41.575 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10830. 2017-10-17 10:24:41.575 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10831. 2017-10-17 10:24:41.576 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10832. 2017-10-17 10:24:41.582 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 62
  10833. 2017-10-17 10:24:41.583 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10834. 2017-10-17 10:24:41.583 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10835. 2017-10-17 10:24:41.601 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 35
  10836. 2017-10-17 10:24:41.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10837. 2017-10-17 10:24:41.616 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10838. 2017-10-17 10:24:41.682 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10839. 2017-10-17 10:24:41.682 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10840. 2017-10-17 10:24:41.682 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10841. 2017-10-17 10:24:41.717 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10842. 2017-10-17 10:24:41.717 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10843. 2017-10-17 10:24:41.718 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10844. 2017-10-17 10:24:41.718 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10845. 2017-10-17 10:24:41.721 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10846. 2017-10-17 10:24:41.722 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10847. 2017-10-17 10:24:41.750 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10848. 2017-10-17 10:24:41.750 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10849. 2017-10-17 10:24:41.751 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10850. 2017-10-17 10:24:41.751 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10851. 2017-10-17 10:24:41.751 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10852. 2017-10-17 10:24:41.751 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10853. 2017-10-17 10:24:41.758 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10854. 2017-10-17 10:24:41.758 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10855. 2017-10-17 10:24:41.759 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10856. 2017-10-17 10:24:41.783 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10857. 2017-10-17 10:24:41.784 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10858. 2017-10-17 10:24:41.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10859. 2017-10-17 10:24:41.785 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10860. 2017-10-17 10:24:41.785 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10861. 2017-10-17 10:24:41.785 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10862. 2017-10-17 10:24:41.789 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10863. 2017-10-17 10:24:41.789 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10864. 2017-10-17 10:24:41.790 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10865. 2017-10-17 10:24:41.815 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10866. 2017-10-17 10:24:41.817 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10867. 2017-10-17 10:24:41.819 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10868. 2017-10-17 10:24:41.848 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10869. 2017-10-17 10:24:41.848 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10870. 2017-10-17 10:24:41.849 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10871. 2017-10-17 10:24:41.849 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10872. 2017-10-17 10:24:41.850 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10873. 2017-10-17 10:24:41.851 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10874. 2017-10-17 10:24:41.851 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10875. 2017-10-17 10:24:41.851 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  10876. 2017-10-17 10:24:41.852 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10877. 2017-10-17 10:24:41.852 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  10878. 2017-10-17 10:24:41.852 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  10879. 2017-10-17 10:24:41.853 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10880. 2017-10-17 10:24:41.885 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10881. 2017-10-17 10:24:41.886 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10882. 2017-10-17 10:24:41.890 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10883. 2017-10-17 10:24:41.898 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10884. 2017-10-17 10:24:41.927 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10885. 2017-10-17 10:24:41.928 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10886. 2017-10-17 10:24:41.973 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10887. 2017-10-17 10:24:41.974 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10888. 2017-10-17 10:24:41.975 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10889. 2017-10-17 10:24:42.005 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10890. 2017-10-17 10:24:42.006 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10891. 2017-10-17 10:24:42.007 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10892. 2017-10-17 10:24:42.035 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10893. 2017-10-17 10:24:42.066 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10894. 2017-10-17 10:24:42.067 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10895. 2017-10-17 10:24:42.072 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10896. 2017-10-17 10:24:42.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10897. 2017-10-17 10:24:42.186 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 567
  10898. 2017-10-17 10:24:42.211 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10899. 2017-10-17 10:24:42.243 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10900. 2017-10-17 10:24:42.243 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10901. 2017-10-17 10:24:42.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10902. 2017-10-17 10:24:42.276 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10903. 2017-10-17 10:24:42.277 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10904. 2017-10-17 10:24:42.314 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10905. 2017-10-17 10:24:42.315 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10906. 2017-10-17 10:24:42.315 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10907. 2017-10-17 10:24:42.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10908. 2017-10-17 10:24:42.383 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10909. 2017-10-17 10:24:42.384 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10910. 2017-10-17 10:24:42.388 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10911. 2017-10-17 10:24:42.389 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10912. 2017-10-17 10:24:42.426 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 10
  10913. 2017-10-17 10:24:42.520 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10914. 2017-10-17 10:24:42.551 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10915. 2017-10-17 10:24:42.552 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10916. 2017-10-17 10:24:42.614 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10917. 2017-10-17 10:24:42.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10918. 2017-10-17 10:24:42.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10919. 2017-10-17 10:24:42.662 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10920. 2017-10-17 10:24:42.663 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10921. 2017-10-17 10:24:42.664 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10922. 2017-10-17 10:24:42.705 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10923. 2017-10-17 10:24:42.736 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10924. 2017-10-17 10:24:42.738 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10925. 2017-10-17 10:24:42.776 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10926. 2017-10-17 10:24:42.776 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10927. 2017-10-17 10:24:43.063 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10928. 2017-10-17 10:24:43.069 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10929. 2017-10-17 10:24:43.070 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10930. 2017-10-17 10:24:43.370 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10931. 2017-10-17 10:24:45.882 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10932. 2017-10-17 10:24:45.912 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10933. 2017-10-17 10:24:45.913 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10934. 2017-10-17 10:24:45.945 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10935. 2017-10-17 10:24:45.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10936. 2017-10-17 10:24:45.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10937. 2017-10-17 10:24:45.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10938. 2017-10-17 10:24:45.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10939. 2017-10-17 10:24:45.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10940. 2017-10-17 10:24:46.154 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10941. 2017-10-17 10:24:46.201 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10942. 2017-10-17 10:24:46.202 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10943. 2017-10-17 10:24:46.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.invalid_from = ?) table_count
  10944. 2017-10-17 10:24:46.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer), 0(Integer)
  10945. 2017-10-17 10:24:46.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10946. 2017-10-17 10:24:46.524 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.invalid_from = ? order by t.start_time desc limit ?,?
  10947. 2017-10-17 10:24:46.525 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 0(Integer), 10(Integer)
  10948. 2017-10-17 10:24:46.812 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10949. 2017-10-17 10:24:48.149 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10950. 2017-10-17 10:24:48.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10951. 2017-10-17 10:24:48.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10952. 2017-10-17 10:24:48.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10953. 2017-10-17 10:24:48.230 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10954. 2017-10-17 10:24:48.230 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10955. 2017-10-17 10:24:48.262 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10956. 2017-10-17 10:24:48.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10957. 2017-10-17 10:24:48.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10958. 2017-10-17 10:24:48.292 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10959. 2017-10-17 10:24:48.338 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10960. 2017-10-17 10:24:48.339 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10961. 2017-10-17 10:24:48.378 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.invalid_from = ?) table_count
  10962. 2017-10-17 10:24:48.379 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer), -2(Integer)
  10963. 2017-10-17 10:24:48.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10964. 2017-10-17 10:24:50.704 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10965. 2017-10-17 10:24:50.734 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10966. 2017-10-17 10:24:50.734 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10967. 2017-10-17 10:24:50.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10968. 2017-10-17 10:24:50.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10969. 2017-10-17 10:24:50.770 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10970. 2017-10-17 10:24:50.800 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10971. 2017-10-17 10:24:50.802 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10972. 2017-10-17 10:24:50.802 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10973. 2017-10-17 10:24:50.834 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10974. 2017-10-17 10:24:50.880 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10975. 2017-10-17 10:24:50.881 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10976. 2017-10-17 10:24:50.921 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.invalid_from = ?) table_count
  10977. 2017-10-17 10:24:50.922 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer), 0(Integer)
  10978. 2017-10-17 10:24:51.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10979. 2017-10-17 10:24:51.215 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.invalid_from = ? order by t.start_time desc limit ?,?
  10980. 2017-10-17 10:24:51.216 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 0(Integer), 10(Integer)
  10981. 2017-10-17 10:24:51.506 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  10982. 2017-10-17 10:24:52.883 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10983. 2017-10-17 10:24:52.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10984. 2017-10-17 10:24:52.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10985. 2017-10-17 10:24:52.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10986. 2017-10-17 10:24:52.960 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10987. 2017-10-17 10:24:52.960 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10988. 2017-10-17 10:24:52.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  10989. 2017-10-17 10:24:52.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10990. 2017-10-17 10:24:52.995 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10991. 2017-10-17 10:24:53.022 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10992. 2017-10-17 10:24:53.077 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  10993. 2017-10-17 10:24:53.078 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  10994. 2017-10-17 10:24:53.115 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  10995. 2017-10-17 10:24:53.116 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  10996. 2017-10-17 10:24:53.418 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  10997. 2017-10-17 10:24:53.421 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  10998. 2017-10-17 10:24:53.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  10999. 2017-10-17 10:24:53.747 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11000. 2017-10-17 10:24:55.539 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11001. 2017-10-17 10:24:55.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11002. 2017-10-17 10:24:55.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11003. 2017-10-17 10:24:55.607 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11004. 2017-10-17 10:24:55.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11005. 2017-10-17 10:24:55.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11006. 2017-10-17 10:24:55.642 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11007. 2017-10-17 10:24:55.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11008. 2017-10-17 10:24:55.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11009. 2017-10-17 10:24:55.672 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11010. 2017-10-17 10:24:55.717 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11011. 2017-10-17 10:24:55.719 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11012. 2017-10-17 10:24:55.758 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11013. 2017-10-17 10:24:55.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11014. 2017-10-17 10:24:55.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11015. 2017-10-17 10:24:55.798 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11016. 2017-10-17 10:24:55.799 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11017. 2017-10-17 10:24:55.842 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11018. 2017-10-17 10:25:15.763 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11019. 2017-10-17 10:25:15.796 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11020. 2017-10-17 10:25:15.796 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11021. 2017-10-17 10:25:15.829 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11022. 2017-10-17 10:25:15.830 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11023. 2017-10-17 10:25:15.830 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11024. 2017-10-17 10:25:15.861 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11025. 2017-10-17 10:25:15.863 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11026. 2017-10-17 10:25:15.863 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11027. 2017-10-17 10:25:15.889 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11028. 2017-10-17 10:25:15.936 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11029. 2017-10-17 10:25:15.937 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11030. 2017-10-17 10:25:15.986 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11031. 2017-10-17 10:25:15.986 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11032. 2017-10-17 10:25:16.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11033. 2017-10-17 10:25:16.026 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11034. 2017-10-17 10:25:16.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11035. 2017-10-17 10:25:16.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11036. 2017-10-17 10:25:23.885 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11037. 2017-10-17 10:25:23.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11038. 2017-10-17 10:25:23.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11039. 2017-10-17 10:25:23.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11040. 2017-10-17 10:25:23.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11041. 2017-10-17 10:25:23.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11042. 2017-10-17 10:25:24.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11043. 2017-10-17 10:25:24.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11044. 2017-10-17 10:25:24.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11045. 2017-10-17 10:25:24.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11046. 2017-10-17 10:25:24.122 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11047. 2017-10-17 10:25:24.123 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11048. 2017-10-17 10:25:24.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11049. 2017-10-17 10:25:24.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11050. 2017-10-17 10:25:24.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11051. 2017-10-17 10:25:24.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11052. 2017-10-17 10:25:24.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11053. 2017-10-17 10:25:24.315 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11054. 2017-10-17 10:25:26.322 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11055. 2017-10-17 10:25:26.352 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11056. 2017-10-17 10:25:26.352 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11057. 2017-10-17 10:25:26.410 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11058. 2017-10-17 10:25:26.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11059. 2017-10-17 10:25:26.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11060. 2017-10-17 10:25:26.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11061. 2017-10-17 10:25:26.526 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11062. 2017-10-17 10:25:26.527 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11063. 2017-10-17 10:25:26.566 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11064. 2017-10-17 10:25:26.611 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11065. 2017-10-17 10:25:26.612 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11066. 2017-10-17 10:25:26.652 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11067. 2017-10-17 10:25:26.653 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  11068. 2017-10-17 10:25:26.987 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11069. 2017-10-17 10:25:26.988 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11070. 2017-10-17 10:25:26.989 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  11071. 2017-10-17 10:25:27.274 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11072. 2017-10-17 10:25:30.419 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11073. 2017-10-17 10:25:30.450 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11074. 2017-10-17 10:25:30.451 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11075. 2017-10-17 10:25:30.501 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11076. 2017-10-17 10:25:30.502 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11077. 2017-10-17 10:25:30.502 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11078. 2017-10-17 10:25:30.567 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11079. 2017-10-17 10:25:30.568 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11080. 2017-10-17 10:25:30.568 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11081. 2017-10-17 10:25:30.625 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11082. 2017-10-17 10:25:30.671 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11083. 2017-10-17 10:25:30.672 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11084. 2017-10-17 10:25:30.713 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11085. 2017-10-17 10:25:30.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  11086. 2017-10-17 10:25:30.751 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11087. 2017-10-17 10:25:30.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11088. 2017-10-17 10:25:30.753 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  11089. 2017-10-17 10:25:30.795 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  11090. 2017-10-17 10:25:36.339 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11091. 2017-10-17 10:25:36.369 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11092. 2017-10-17 10:25:36.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11093. 2017-10-17 10:25:36.421 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11094. 2017-10-17 10:25:36.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11095. 2017-10-17 10:25:36.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11096. 2017-10-17 10:25:36.492 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11097. 2017-10-17 10:25:36.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11098. 2017-10-17 10:25:36.494 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11099. 2017-10-17 10:25:36.538 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11100. 2017-10-17 10:25:36.584 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11101. 2017-10-17 10:25:36.585 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11102. 2017-10-17 10:25:36.623 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.invalid_from = ?) table_count
  11103. 2017-10-17 10:25:36.624 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer), 1(Integer)
  11104. 2017-10-17 10:25:36.669 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11105. 2017-10-17 10:25:39.110 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11106. 2017-10-17 10:25:39.141 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11107. 2017-10-17 10:25:39.141 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11108. 2017-10-17 10:25:39.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11109. 2017-10-17 10:25:39.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11110. 2017-10-17 10:25:39.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11111. 2017-10-17 10:25:39.233 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11112. 2017-10-17 10:25:39.234 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11113. 2017-10-17 10:25:39.235 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11114. 2017-10-17 10:25:39.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11115. 2017-10-17 10:25:39.319 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11116. 2017-10-17 10:25:39.320 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11117. 2017-10-17 10:25:39.361 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.invalid_from = ?) table_count
  11118. 2017-10-17 10:25:39.362 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer), 0(Integer)
  11119. 2017-10-17 10:25:39.401 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11120. 2017-10-17 10:25:39.402 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.invalid_from = ? order by t.start_time desc limit ?,?
  11121. 2017-10-17 10:25:39.403 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 0(Integer), 10(Integer)
  11122. 2017-10-17 10:25:39.445 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  11123. 2017-10-17 10:25:41.535 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11124. 2017-10-17 10:25:41.566 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11125. 2017-10-17 10:25:41.567 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11126. 2017-10-17 10:25:41.602 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11127. 2017-10-17 10:25:41.603 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11128. 2017-10-17 10:25:41.603 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11129. 2017-10-17 10:25:41.665 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11130. 2017-10-17 10:25:41.666 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11131. 2017-10-17 10:25:41.666 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11132. 2017-10-17 10:25:41.692 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11133. 2017-10-17 10:25:41.738 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11134. 2017-10-17 10:25:41.740 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11135. 2017-10-17 10:25:41.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11136. 2017-10-17 10:25:41.782 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  11137. 2017-10-17 10:25:41.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11138. 2017-10-17 10:25:41.829 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11139. 2017-10-17 10:25:41.830 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  11140. 2017-10-17 10:25:41.870 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  11141. 2017-10-17 10:29:30.412 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11142. 2017-10-17 10:29:32.655 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11143. 2017-10-17 10:29:32.656 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11144. 2017-10-17 10:29:32.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11145. 2017-10-17 10:29:32.725 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11146. 2017-10-17 10:29:32.726 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11147. 2017-10-17 10:29:32.775 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11148. 2017-10-17 10:29:32.776 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11149. 2017-10-17 10:29:32.777 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11150. 2017-10-17 10:29:32.811 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11151. 2017-10-17 10:29:32.860 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11152. 2017-10-17 10:29:32.861 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11153. 2017-10-17 10:29:32.869 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Preparing: SELECT * FROM check_apply WHERE task_id = ?
  11154. 2017-10-17 10:29:32.869 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Parameters: 9155(Long)
  11155. 2017-10-17 10:29:32.905 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| <== Total: 1
  11156. 2017-10-17 10:29:38.729 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11157. 2017-10-17 10:29:38.762 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11158. 2017-10-17 10:29:38.762 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11159. 2017-10-17 10:29:38.795 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11160. 2017-10-17 10:29:38.796 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11161. 2017-10-17 10:29:38.796 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11162. 2017-10-17 10:29:38.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11163. 2017-10-17 10:29:38.859 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11164. 2017-10-17 10:29:38.860 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11165. 2017-10-17 10:29:38.893 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11166. 2017-10-17 10:29:38.939 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11167. 2017-10-17 10:29:38.940 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11168. 2017-10-17 10:29:38.942 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Preparing: SELECT * FROM check_apply WHERE task_id = ?
  11169. 2017-10-17 10:29:38.943 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Parameters: 9155(Long)
  11170. 2017-10-17 10:29:38.971 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| <== Total: 1
  11171. 2017-10-17 10:29:43.024 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11172. 2017-10-17 10:29:43.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11173. 2017-10-17 10:29:43.057 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11174. 2017-10-17 10:29:43.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11175. 2017-10-17 10:29:43.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11176. 2017-10-17 10:29:43.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11177. 2017-10-17 10:29:43.157 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11178. 2017-10-17 10:29:43.159 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11179. 2017-10-17 10:29:43.160 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11180. 2017-10-17 10:29:43.187 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11181. 2017-10-17 10:29:43.239 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11182. 2017-10-17 10:29:43.241 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11183. 2017-10-17 10:29:43.286 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11184. 2017-10-17 10:29:43.286 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  11185. 2017-10-17 10:29:43.574 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11186. 2017-10-17 10:29:43.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11187. 2017-10-17 10:29:43.577 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  11188. 2017-10-17 10:29:43.861 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11189. 2017-10-17 10:29:45.353 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11190. 2017-10-17 10:29:45.384 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11191. 2017-10-17 10:29:45.385 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11192. 2017-10-17 10:29:45.415 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11193. 2017-10-17 10:29:45.416 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11194. 2017-10-17 10:29:45.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11195. 2017-10-17 10:29:45.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11196. 2017-10-17 10:29:45.467 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11197. 2017-10-17 10:29:45.468 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11198. 2017-10-17 10:29:45.500 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11199. 2017-10-17 10:29:45.546 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11200. 2017-10-17 10:29:45.547 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11201. 2017-10-17 10:29:45.584 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11202. 2017-10-17 10:29:45.584 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 23(Integer)
  11203. 2017-10-17 10:29:45.622 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11204. 2017-10-17 10:29:45.624 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11205. 2017-10-17 10:29:45.625 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 23(Integer), 0(Integer), 10(Integer)
  11206. 2017-10-17 10:29:45.666 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 2
  11207. 2017-10-17 10:29:47.707 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11208. 2017-10-17 10:29:47.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11209. 2017-10-17 10:29:47.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11210. 2017-10-17 10:29:47.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11211. 2017-10-17 10:29:47.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11212. 2017-10-17 10:29:47.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11213. 2017-10-17 10:29:47.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11214. 2017-10-17 10:29:47.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11215. 2017-10-17 10:29:47.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11216. 2017-10-17 10:29:47.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11217. 2017-10-17 10:29:47.909 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11218. 2017-10-17 10:29:47.910 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11219. 2017-10-17 10:29:47.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11220. 2017-10-17 10:29:47.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 22(Integer)
  11221. 2017-10-17 10:29:48.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11222. 2017-10-17 10:29:48.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11223. 2017-10-17 10:29:48.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 22(Integer), 0(Integer), 10(Integer)
  11224. 2017-10-17 10:29:48.514 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11225. 2017-10-17 10:29:51.688 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11226. 2017-10-17 10:29:51.722 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11227. 2017-10-17 10:29:51.723 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11228. 2017-10-17 10:29:51.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11229. 2017-10-17 10:29:51.753 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11230. 2017-10-17 10:29:51.753 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11231. 2017-10-17 10:29:51.796 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11232. 2017-10-17 10:29:51.797 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11233. 2017-10-17 10:29:51.797 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11234. 2017-10-17 10:29:51.826 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11235. 2017-10-17 10:29:51.874 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11236. 2017-10-17 10:29:51.877 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11237. 2017-10-17 10:29:51.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Preparing: SELECT * FROM check_apply WHERE task_id = ?
  11238. 2017-10-17 10:29:51.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Parameters: 16650(Long)
  11239. 2017-10-17 10:29:51.910 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| <== Total: 1
  11240. 2017-10-17 10:29:56.167 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11241. 2017-10-17 10:29:56.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11242. 2017-10-17 10:29:56.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11243. 2017-10-17 10:29:56.234 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11244. 2017-10-17 10:29:56.235 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11245. 2017-10-17 10:29:56.236 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11246. 2017-10-17 10:29:56.296 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11247. 2017-10-17 10:29:56.297 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11248. 2017-10-17 10:29:56.297 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11249. 2017-10-17 10:29:56.329 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11250. 2017-10-17 10:29:56.376 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11251. 2017-10-17 10:29:56.377 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11252. 2017-10-17 10:29:56.415 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11253. 2017-10-17 10:29:56.416 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11254. 2017-10-17 10:29:56.465 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11255. 2017-10-17 10:29:56.466 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11256. 2017-10-17 10:29:56.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11257. 2017-10-17 10:29:56.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11258. 2017-10-17 10:30:02.601 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11259. 2017-10-17 10:30:02.635 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11260. 2017-10-17 10:30:02.635 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11261. 2017-10-17 10:30:02.665 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11262. 2017-10-17 10:30:02.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11263. 2017-10-17 10:30:02.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11264. 2017-10-17 10:30:02.710 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11265. 2017-10-17 10:30:02.714 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11266. 2017-10-17 10:30:02.715 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11267. 2017-10-17 10:30:02.748 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11268. 2017-10-17 10:30:02.796 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11269. 2017-10-17 10:30:02.797 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11270. 2017-10-17 10:30:02.837 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11271. 2017-10-17 10:30:02.838 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11272. 2017-10-17 10:30:02.877 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11273. 2017-10-17 10:30:02.879 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11274. 2017-10-17 10:30:02.880 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11275. 2017-10-17 10:30:02.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11276. 2017-10-17 10:30:06.999 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11277. 2017-10-17 10:30:07.002 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11278. 2017-10-17 10:30:07.003 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11279. 2017-10-17 10:30:07.003 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11280. 2017-10-17 10:30:07.004 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11281. 2017-10-17 10:30:07.045 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11282. 2017-10-17 10:30:07.046 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11283. 2017-10-17 10:30:07.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11284. 2017-10-17 10:30:07.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11285. 2017-10-17 10:30:07.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11286. 2017-10-17 10:30:07.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11287. 2017-10-17 10:30:07.135 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11288. 2017-10-17 10:30:07.135 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11289. 2017-10-17 10:30:07.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11290. 2017-10-17 10:30:07.218 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11291. 2017-10-17 10:30:07.218 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11292. 2017-10-17 10:30:07.218 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11293. 2017-10-17 10:30:07.219 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11294. 2017-10-17 10:30:07.251 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11295. 2017-10-17 10:30:07.252 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11296. 2017-10-17 10:30:07.252 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11297. 2017-10-17 10:30:07.253 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11298. 2017-10-17 10:30:07.255 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11299. 2017-10-17 10:30:07.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11300. 2017-10-17 10:30:07.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11301. 2017-10-17 10:30:07.281 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11302. 2017-10-17 10:30:07.283 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11303. 2017-10-17 10:30:07.293 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  11304. 2017-10-17 10:30:07.294 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 16668(Long)
  11305. 2017-10-17 10:30:07.307 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11306. 2017-10-17 10:30:07.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11307. 2017-10-17 10:30:07.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11308. 2017-10-17 10:30:07.312 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11309. 2017-10-17 10:30:07.312 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11310. 2017-10-17 10:30:07.313 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11311. 2017-10-17 10:30:07.313 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11312. 2017-10-17 10:30:07.326 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  11313. 2017-10-17 10:30:07.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ?
  11314. 2017-10-17 10:30:07.330 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 21(Integer), null, 16668(Long)
  11315. 2017-10-17 10:30:07.340 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11316. 2017-10-17 10:30:07.347 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11317. 2017-10-17 10:30:07.348 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11318. 2017-10-17 10:30:07.349 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11319. 2017-10-17 10:30:07.349 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11320. 2017-10-17 10:30:07.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11321. 2017-10-17 10:30:07.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11322. 2017-10-17 10:30:07.382 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11323. 2017-10-17 10:30:07.386 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11324. 2017-10-17 10:30:07.386 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <== Updates: 1
  11325. 2017-10-17 10:30:07.387 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11326. 2017-10-17 10:30:07.388 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.insertStatus [159] -| ==> Preparing: INSERT INTO check_task_status (task_id,update_time,update_user,update_username,check_status, check_status_name ) VALUES (?, now(),?,?,?, ? )
  11327. 2017-10-17 10:30:07.388 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.insertStatus [159] -| ==> Parameters: 16668(Long), 2040(Long), 温红权(String), 21(Integer), 复查(String)
  11328. 2017-10-17 10:30:07.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11329. 2017-10-17 10:30:07.398 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  11330. 2017-10-17 10:30:07.399 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 16668(Long)
  11331. 2017-10-17 10:30:07.423 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11332. 2017-10-17 10:30:07.424 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11333. 2017-10-17 10:30:07.427 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  11334. 2017-10-17 10:30:07.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  11335. 2017-10-17 10:30:07.433 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 194(String)
  11336. 2017-10-17 10:30:07.442 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11337. 2017-10-17 10:30:07.443 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11338. 2017-10-17 10:30:07.444 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.insertStatus [159] -| <== Updates: 1
  11339. 2017-10-17 10:30:07.444 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  11340. 2017-10-17 10:30:07.445 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 16668(Long)
  11341. 2017-10-17 10:30:07.446 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? )
  11342. 2017-10-17 10:30:07.447 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2419(Long), 16668(Long)
  11343. 2017-10-17 10:30:07.465 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  11344. 2017-10-17 10:30:07.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  11345. 2017-10-17 10:30:07.490 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <== Total: 4
  11346. 2017-10-17 10:30:09.126 |-ERROR [http-nio-8089-exec-8] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] [181] -| Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
  11347. org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  11348. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)
  11349. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)
  11350. at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)
  11351. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:92)
  11352. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:79)
  11353. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:194)
  11354. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:169)
  11355. at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:91)
  11356. at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)
  11357. at com.xintong.system.securityTools.RedisCacheUtil.getUserByUserName(RedisCacheUtil.java:19)
  11358. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:60)
  11359. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11360. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  11361. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  11362. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  11363. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  11364. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11365. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  11366. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  11367. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11368. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  11369. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  11370. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  11371. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  11372. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11373. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  11374. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  11375. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  11376. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  11377. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  11378. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  11379. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  11380. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  11381. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11382. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  11383. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  11384. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  11385. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11386. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  11387. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  11388. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  11389. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11390. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  11391. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  11392. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  11393. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11394. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  11395. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  11396. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  11397. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  11398. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  11399. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  11400. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  11401. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  11402. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  11403. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  11404. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  11405. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  11406. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  11407. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  11408. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  11409. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  11410. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  11411. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  11412. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  11413. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  11414. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  11415. at java.lang.Thread.run(Thread.java:745)
  11416. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  11417. at redis.clients.util.Pool.getResource(Pool.java:53)
  11418. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
  11419. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
  11420. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:194)
  11421. ... 67 common frames omitted
  11422. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out
  11423. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202)
  11424. at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40)
  11425. at redis.clients.jedis.Protocol.process(Protocol.java:151)
  11426. at redis.clients.jedis.Protocol.read(Protocol.java:215)
  11427. at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
  11428. at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
  11429. at redis.clients.jedis.BinaryJedis.auth(BinaryJedis.java:2139)
  11430. at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:108)
  11431. at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:868)
  11432. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:435)
  11433. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
  11434. at redis.clients.util.Pool.getResource(Pool.java:49)
  11435. ... 70 common frames omitted
  11436. Caused by: java.net.SocketTimeoutException: Read timed out
  11437. at java.net.SocketInputStream.socketRead0(Native Method)
  11438. at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
  11439. at java.net.SocketInputStream.read(SocketInputStream.java:170)
  11440. at java.net.SocketInputStream.read(SocketInputStream.java:141)
  11441. at java.net.SocketInputStream.read(SocketInputStream.java:127)
  11442. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:196)
  11443. ... 81 common frames omitted
  11444. 2017-10-17 10:30:09.641 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11445. 2017-10-17 10:30:09.694 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11446. 2017-10-17 10:30:09.695 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11447. 2017-10-17 10:30:09.727 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11448. 2017-10-17 10:30:09.732 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11449. 2017-10-17 10:30:09.733 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11450. 2017-10-17 10:30:09.768 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11451. 2017-10-17 10:30:09.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11452. 2017-10-17 10:30:09.770 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11453. 2017-10-17 10:30:09.807 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11454. 2017-10-17 10:30:09.866 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11455. 2017-10-17 10:30:09.868 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11456. 2017-10-17 10:30:09.951 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11457. 2017-10-17 10:30:09.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11458. 2017-10-17 10:30:10.007 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11459. 2017-10-17 10:30:10.008 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11460. 2017-10-17 10:30:10.009 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11461. 2017-10-17 10:30:10.054 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11462. 2017-10-17 10:30:12.208 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11463. 2017-10-17 10:30:12.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11464. 2017-10-17 10:30:12.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11465. 2017-10-17 10:30:12.335 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11466. 2017-10-17 10:30:12.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11467. 2017-10-17 10:30:12.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11468. 2017-10-17 10:30:12.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11469. 2017-10-17 10:30:12.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11470. 2017-10-17 10:30:12.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11471. 2017-10-17 10:30:12.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11472. 2017-10-17 10:30:12.502 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11473. 2017-10-17 10:30:12.503 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11474. 2017-10-17 10:30:12.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Preparing: SELECT * FROM check_apply WHERE task_id = ?
  11475. 2017-10-17 10:30:12.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| ==> Parameters: 16668(Long)
  11476. 2017-10-17 10:30:12.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckApplyDao.getOneByTaskId [159] -| <== Total: 1
  11477. 2017-10-17 10:30:28.840 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11478. 2017-10-17 10:30:28.883 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11479. 2017-10-17 10:30:28.884 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11480. 2017-10-17 10:30:28.916 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11481. 2017-10-17 10:30:28.917 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11482. 2017-10-17 10:30:28.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11483. 2017-10-17 10:30:28.961 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11484. 2017-10-17 10:30:28.962 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11485. 2017-10-17 10:30:28.962 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11486. 2017-10-17 10:30:28.975 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11487. 2017-10-17 10:30:28.976 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11488. 2017-10-17 10:30:28.976 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11489. 2017-10-17 10:30:28.976 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11490. 2017-10-17 10:30:28.989 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11491. 2017-10-17 10:30:29.007 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11492. 2017-10-17 10:30:29.008 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11493. 2017-10-17 10:30:29.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11494. 2017-10-17 10:30:29.009 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11495. 2017-10-17 10:30:29.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11496. 2017-10-17 10:30:29.009 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11497. 2017-10-17 10:30:29.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11498. 2017-10-17 10:30:29.039 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11499. 2017-10-17 10:30:29.040 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11500. 2017-10-17 10:30:29.040 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11501. 2017-10-17 10:30:29.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11502. 2017-10-17 10:30:29.040 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11503. 2017-10-17 10:30:29.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11504. 2017-10-17 10:30:29.041 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11505. 2017-10-17 10:30:29.044 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11506. 2017-10-17 10:30:29.044 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11507. 2017-10-17 10:30:29.044 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11508. 2017-10-17 10:30:29.069 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11509. 2017-10-17 10:30:29.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11510. 2017-10-17 10:30:29.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11511. 2017-10-17 10:30:29.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11512. 2017-10-17 10:30:29.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11513. 2017-10-17 10:30:29.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11514. 2017-10-17 10:30:29.076 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11515. 2017-10-17 10:30:29.077 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11516. 2017-10-17 10:30:29.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11517. 2017-10-17 10:30:29.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11518. 2017-10-17 10:30:29.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11519. 2017-10-17 10:30:29.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11520. 2017-10-17 10:30:29.102 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11521. 2017-10-17 10:30:29.106 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11522. 2017-10-17 10:30:29.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11523. 2017-10-17 10:30:29.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11524. 2017-10-17 10:30:29.124 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11525. 2017-10-17 10:30:29.125 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11526. 2017-10-17 10:30:29.132 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11527. 2017-10-17 10:30:29.134 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11528. 2017-10-17 10:30:29.148 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11529. 2017-10-17 10:30:29.150 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11530. 2017-10-17 10:30:29.151 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11531. 2017-10-17 10:30:29.152 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11532. 2017-10-17 10:30:29.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  11533. 2017-10-17 10:30:29.155 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? )
  11534. 2017-10-17 10:30:29.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 16668(Long)
  11535. 2017-10-17 10:30:29.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2419(Long), 16668(Long)
  11536. 2017-10-17 10:30:29.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11537. 2017-10-17 10:30:29.184 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11538. 2017-10-17 10:30:29.186 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11539. 2017-10-17 10:30:29.188 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11540. 2017-10-17 10:30:29.188 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11541. 2017-10-17 10:30:29.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ?
  11542. 2017-10-17 10:30:29.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 194(String)
  11543. 2017-10-17 10:30:29.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Preparing: SELECT * FROM t_sys_users WHERE id = ?
  11544. 2017-10-17 10:30:29.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Parameters: 2419(Integer)
  11545. 2017-10-17 10:30:29.195 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <== Total: 4
  11546. 2017-10-17 10:30:29.200 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  11547. 2017-10-17 10:30:29.200 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 16668(Long)
  11548. 2017-10-17 10:30:29.208 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  11549. 2017-10-17 10:30:29.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <== Total: 1
  11550. 2017-10-17 10:30:29.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  11551. 2017-10-17 10:30:29.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ?
  11552. 2017-10-17 10:30:29.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 21(Integer), null, 16668(Long)
  11553. 2017-10-17 10:30:29.245 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| <== Total: 1
  11554. 2017-10-17 10:30:29.255 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11555. 2017-10-17 10:30:29.288 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <== Updates: 1
  11556. 2017-10-17 10:30:29.288 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.insertStatus [159] -| ==> Preparing: INSERT INTO check_task_status (task_id,update_time,update_user,update_username,check_status, check_status_name ) VALUES (?, now(),?,?,?, ? )
  11557. 2017-10-17 10:30:29.289 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.insertStatus [159] -| ==> Parameters: 16668(Long), 2040(Long), 温红权(String), 21(Integer), 复查(String)
  11558. 2017-10-17 10:30:29.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11559. 2017-10-17 10:30:29.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11560. 2017-10-17 10:30:29.351 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.insertStatus [159] -| <== Updates: 1
  11561. 2017-10-17 10:30:29.352 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  11562. 2017-10-17 10:30:29.352 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 16668(Long)
  11563. 2017-10-17 10:30:29.383 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  11564. 2017-10-17 10:30:29.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11565. 2017-10-17 10:30:29.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11566. 2017-10-17 10:30:29.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11567. 2017-10-17 10:30:29.434 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11568. 2017-10-17 10:30:29.435 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11569. 2017-10-17 10:30:29.436 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11570. 2017-10-17 10:30:29.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11571. 2017-10-17 10:30:29.540 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11572. 2017-10-17 10:30:29.542 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11573. 2017-10-17 10:30:29.545 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? )
  11574. 2017-10-17 10:30:29.546 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2419(Long), 16668(Long)
  11575. 2017-10-17 10:30:29.595 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <== Total: 4
  11576. 2017-10-17 10:30:38.228 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11577. 2017-10-17 10:30:38.267 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11578. 2017-10-17 10:30:38.267 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11579. 2017-10-17 10:30:38.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11580. 2017-10-17 10:30:38.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11581. 2017-10-17 10:30:38.303 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11582. 2017-10-17 10:30:38.337 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11583. 2017-10-17 10:30:38.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11584. 2017-10-17 10:30:38.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11585. 2017-10-17 10:30:38.369 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11586. 2017-10-17 10:30:38.427 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11587. 2017-10-17 10:30:38.428 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11588. 2017-10-17 10:30:38.470 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11589. 2017-10-17 10:30:38.471 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11590. 2017-10-17 10:30:38.513 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11591. 2017-10-17 10:30:38.517 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11592. 2017-10-17 10:30:38.518 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11593. 2017-10-17 10:30:38.563 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10
  11594. 2017-10-17 10:30:39.260 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11595. 2017-10-17 10:30:39.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11596. 2017-10-17 10:30:39.304 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11597. 2017-10-17 10:30:39.359 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11598. 2017-10-17 10:30:39.360 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11599. 2017-10-17 10:30:39.360 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11600. 2017-10-17 10:30:39.394 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 99
  11601. 2017-10-17 10:30:39.395 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11602. 2017-10-17 10:30:39.395 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11603. 2017-10-17 10:30:39.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11604. 2017-10-17 10:30:39.469 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  11605. 2017-10-17 10:30:39.470 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  11606. 2017-10-17 10:30:39.510 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND (t.invalid_from = 0 OR t.invalid_from = 1)) table_count
  11607. 2017-10-17 10:30:39.511 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 21(Integer)
  11608. 2017-10-17 10:30:39.552 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  11609. 2017-10-17 10:30:39.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND ( t.invalid_from = 0 OR t.invalid_from = 1) order by t.start_time desc limit ?,?
  11610. 2017-10-17 10:30:39.555 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 21(Integer), 0(Integer), 10(Integer)
  11611. 2017-10-17 10:30:39.598 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <== Total: 10