visual.log 2.4 MB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419
  1. 2017-07-27 09:29:07.931 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 8624 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  2. 2017-07-27 09:29:07.946 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  3. 2017-07-27 09:29:08.303 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@79694ff4: startup date [Thu Jul 27 09:29:08 CST 2017]; root of context hierarchy
  4. 2017-07-27 09:29:08.904 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  5. 2017-07-27 09:29:10.876 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  6. 2017-07-27 09:29:12.056 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bcd9427b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7. 2017-07-27 09:29:12.319 |-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$$55870ab5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8. 2017-07-27 09:29:12.337 |-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)
  9. 2017-07-27 09:29:12.341 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@1fa2e44f' 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)
  10. 2017-07-27 09:29:12.355 |-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$$7a5bad67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11. 2017-07-27 09:29:12.385 |-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)
  12. 2017-07-27 09:29:12.417 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$a81cb677] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  13. 2017-07-27 09:29:12.449 |-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)
  14. 2017-07-27 09:29:12.451 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$5eb7899] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  15. 2017-07-27 09:29:13.602 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  16. 2017-07-27 09:29:13.662 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  17. 2017-07-27 09:29:13.664 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  18. 2017-07-27 09:29:13.802 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  19. 2017-07-27 09:29:13.803 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 5500 ms
  20. 2017-07-27 09:29:14.288 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  21. 2017-07-27 09:29:17.586 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  22. 2017-07-27 09:29:17.587 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  23. 2017-07-27 09:29:17.587 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  24. 2017-07-27 09:29:17.588 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  25. 2017-07-27 09:29:17.588 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  26. 2017-07-27 09:29:17.590 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  27. 2017-07-27 09:29:17.590 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  28. 2017-07-27 09:29:17.590 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  29. 2017-07-27 09:29:17.591 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  30. 2017-07-27 09:29:17.591 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  31. 2017-07-27 09:29:17.591 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  32. 2017-07-27 09:29:17.591 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  33. 2017-07-27 09:29:17.591 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  34. 2017-07-27 09:29:17.593 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  35. 2017-07-27 09:29:19.042 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  36. 2017-07-27 09:29:19.043 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  37. 2017-07-27 09:29:19.184 |-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@5b76feea, org.springframework.security.web.context.SecurityContextPersistenceFilter@15abd967, org.springframework.security.web.header.HeaderWriterFilter@40632a11, org.springframework.web.filter.CorsFilter@2e941db2, org.springframework.security.web.authentication.logout.LogoutFilter@630cdb82, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@67f44a41, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5e126e2d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6126d1b9, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@5c396fc0, org.springframework.security.web.session.SessionManagementFilter@64d372b4, org.springframework.security.web.access.ExceptionTranslationFilter@3bb0febf, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@199d2409]
  38. 2017-07-27 09:29:19.219 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@2a721152, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2f898de, org.springframework.security.web.context.SecurityContextPersistenceFilter@213b5cd7, org.springframework.security.web.header.HeaderWriterFilter@4a2df41c, org.springframework.security.web.authentication.logout.LogoutFilter@398dd27d, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@280bd67, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3c174d5e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@193fd3d4, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7885dcae, org.springframework.security.web.session.SessionManagementFilter@39e07e6a, org.springframework.security.web.access.ExceptionTranslationFilter@1691641a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@369e5cc4]
  39. 2017-07-27 09:29:19.393 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@79694ff4: startup date [Thu Jul 27 09:29:08 CST 2017]; root of context hierarchy
  40. 2017-07-27 09:29:19.586 |-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)
  41. 2017-07-27 09:29:19.587 |-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)
  42. 2017-07-27 09:29:19.590 |-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)
  43. 2017-07-27 09:29:19.590 |-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)
  44. 2017-07-27 09:29:19.591 |-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)
  45. 2017-07-27 09:29:19.591 |-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)
  46. 2017-07-27 09:29:19.591 |-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)
  47. 2017-07-27 09:29:19.592 |-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)
  48. 2017-07-27 09:29:19.592 |-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)
  49. 2017-07-27 09:29:19.597 |-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)
  50. 2017-07-27 09:29:19.598 |-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)
  51. 2017-07-27 09:29:19.598 |-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)
  52. 2017-07-27 09:29:19.599 |-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)
  53. 2017-07-27 09:29:19.599 |-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)
  54. 2017-07-27 09:29:19.599 |-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)
  55. 2017-07-27 09:29:19.600 |-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)
  56. 2017-07-27 09:29:19.600 |-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)
  57. 2017-07-27 09:29:19.600 |-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)
  58. 2017-07-27 09:29:19.600 |-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()
  59. 2017-07-27 09:29:19.603 |-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)
  60. 2017-07-27 09:29:19.604 |-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)
  61. 2017-07-27 09:29:19.605 |-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)
  62. 2017-07-27 09:29:19.605 |-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()
  63. 2017-07-27 09:29:19.606 |-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)
  64. 2017-07-27 09:29:19.606 |-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)
  65. 2017-07-27 09:29:19.607 |-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)
  66. 2017-07-27 09:29:19.607 |-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)
  67. 2017-07-27 09:29:19.609 |-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)
  68. 2017-07-27 09:29:19.610 |-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)
  69. 2017-07-27 09:29:19.611 |-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)
  70. 2017-07-27 09:29:19.611 |-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)
  71. 2017-07-27 09:29:19.611 |-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)
  72. 2017-07-27 09:29:19.612 |-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)
  73. 2017-07-27 09:29:19.612 |-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)
  74. 2017-07-27 09:29:19.613 |-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>)
  75. 2017-07-27 09:29:19.613 |-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)
  76. 2017-07-27 09:29:19.614 |-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)
  77. 2017-07-27 09:29:19.614 |-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)
  78. 2017-07-27 09:29:19.616 |-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)
  79. 2017-07-27 09:29:19.617 |-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)
  80. 2017-07-27 09:29:19.617 |-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)
  81. 2017-07-27 09:29:19.617 |-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)
  82. 2017-07-27 09:29:19.618 |-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)
  83. 2017-07-27 09:29:19.618 |-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)
  84. 2017-07-27 09:29:19.622 |-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()
  85. 2017-07-27 09:29:19.623 |-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)
  86. 2017-07-27 09:29:19.623 |-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)
  87. 2017-07-27 09:29:19.624 |-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
  88. 2017-07-27 09:29:19.624 |-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)
  89. 2017-07-27 09:29:19.624 |-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)
  90. 2017-07-27 09:29:19.625 |-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)
  91. 2017-07-27 09:29:19.625 |-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)
  92. 2017-07-27 09:29:19.625 |-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()
  93. 2017-07-27 09:29:19.625 |-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()
  94. 2017-07-27 09:29:19.626 |-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)
  95. 2017-07-27 09:29:19.627 |-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)
  96. 2017-07-27 09:29:19.627 |-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)
  97. 2017-07-27 09:29:19.628 |-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)
  98. 2017-07-27 09:29:19.629 |-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.Integer,java.lang.Integer,java.lang.Integer)
  99. 2017-07-27 09:29:19.630 |-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)
  100. 2017-07-27 09:29:19.630 |-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)
  101. 2017-07-27 09:29:19.631 |-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)
  102. 2017-07-27 09:29:19.631 |-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.String,java.lang.String,java.lang.String,java.lang.String)
  103. 2017-07-27 09:29:19.632 |-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)
  104. 2017-07-27 09:29:19.634 |-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
  105. 2017-07-27 09:29:19.634 |-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)
  106. 2017-07-27 09:29:19.634 |-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)
  107. 2017-07-27 09:29:19.635 |-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)
  108. 2017-07-27 09:29:19.635 |-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)
  109. 2017-07-27 09:29:19.635 |-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)
  110. 2017-07-27 09:29:19.638 |-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()
  111. 2017-07-27 09:29:19.638 |-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
  112. 2017-07-27 09:29:19.639 |-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)
  113. 2017-07-27 09:29:19.639 |-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
  114. 2017-07-27 09:29:19.639 |-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
  115. 2017-07-27 09:29:19.640 |-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
  116. 2017-07-27 09:29:19.640 |-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)
  117. 2017-07-27 09:29:19.640 |-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)
  118. 2017-07-27 09:29:19.643 |-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)
  119. 2017-07-27 09:29:19.643 |-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)
  120. 2017-07-27 09:29:19.644 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  121. 2017-07-27 09:29:19.644 |-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)
  122. 2017-07-27 09:29:19.645 |-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)
  123. 2017-07-27 09:29:19.645 |-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)
  124. 2017-07-27 09:29:19.645 |-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)
  125. 2017-07-27 09:29:19.646 |-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)
  126. 2017-07-27 09:29:19.646 |-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)
  127. 2017-07-27 09:29:19.646 |-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)
  128. 2017-07-27 09:29:19.647 |-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
  129. 2017-07-27 09:29:19.648 |-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)
  130. 2017-07-27 09:29:19.649 |-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(com.xintong.visualinspection.bean.Score)
  131. 2017-07-27 09:29:19.649 |-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)
  132. 2017-07-27 09:29:19.650 |-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()
  133. 2017-07-27 09:29:19.650 |-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)
  134. 2017-07-27 09:29:19.650 |-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)
  135. 2017-07-27 09:29:19.651 |-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)
  136. 2017-07-27 09:29:19.655 |-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)
  137. 2017-07-27 09:29:19.656 |-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)
  138. 2017-07-27 09:29:19.656 |-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)
  139. 2017-07-27 09:29:19.657 |-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)
  140. 2017-07-27 09:29:19.657 |-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)
  141. 2017-07-27 09:29:19.657 |-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)
  142. 2017-07-27 09:29:19.658 |-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)
  143. 2017-07-27 09:29:19.658 |-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)
  144. 2017-07-27 09:29:19.658 |-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)
  145. 2017-07-27 09:29:19.659 |-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)
  146. 2017-07-27 09:29:19.659 |-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)
  147. 2017-07-27 09:29:19.659 |-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)
  148. 2017-07-27 09:29:19.659 |-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)
  149. 2017-07-27 09:29:19.660 |-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)
  150. 2017-07-27 09:29:19.660 |-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)
  151. 2017-07-27 09:29:19.660 |-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)
  152. 2017-07-27 09:29:19.661 |-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)
  153. 2017-07-27 09:29:19.661 |-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)
  154. 2017-07-27 09:29:19.661 |-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)
  155. 2017-07-27 09:29:19.661 |-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)
  156. 2017-07-27 09:29:19.662 |-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)
  157. 2017-07-27 09:29:19.664 |-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)
  158. 2017-07-27 09:29:19.665 |-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)
  159. 2017-07-27 09:29:19.665 |-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)
  160. 2017-07-27 09:29:19.665 |-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)
  161. 2017-07-27 09:29:19.666 |-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)
  162. 2017-07-27 09:29:19.666 |-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)
  163. 2017-07-27 09:29:19.666 |-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)
  164. 2017-07-27 09:29:19.667 |-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)
  165. 2017-07-27 09:29:19.667 |-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)
  166. 2017-07-27 09:29:19.667 |-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)
  167. 2017-07-27 09:29:19.667 |-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)
  168. 2017-07-27 09:29:19.668 |-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)
  169. 2017-07-27 09:29:19.668 |-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)
  170. 2017-07-27 09:29:19.668 |-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)
  171. 2017-07-27 09:29:19.671 |-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)
  172. 2017-07-27 09:29:19.672 |-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)
  173. 2017-07-27 09:29:19.673 |-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)
  174. 2017-07-27 09:29:19.673 |-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)
  175. 2017-07-27 09:29:19.673 |-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)
  176. 2017-07-27 09:29:19.674 |-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)
  177. 2017-07-27 09:29:19.674 |-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)
  178. 2017-07-27 09:29:19.674 |-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)
  179. 2017-07-27 09:29:19.674 |-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)
  180. 2017-07-27 09:29:19.675 |-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)
  181. 2017-07-27 09:29:19.677 |-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)
  182. 2017-07-27 09:29:19.677 |-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)
  183. 2017-07-27 09:29:19.677 |-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)
  184. 2017-07-27 09:29:19.678 |-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)
  185. 2017-07-27 09:29:19.678 |-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)
  186. 2017-07-27 09:29:19.678 |-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)
  187. 2017-07-27 09:29:19.679 |-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)
  188. 2017-07-27 09:29:19.679 |-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)
  189. 2017-07-27 09:29:19.680 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  190. 2017-07-27 09:29:19.680 |-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)
  191. 2017-07-27 09:29:19.680 |-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()
  192. 2017-07-27 09:29:19.680 |-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()
  193. 2017-07-27 09:29:19.681 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  194. 2017-07-27 09:29:19.681 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  195. 2017-07-27 09:29:19.681 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  196. 2017-07-27 09:29:19.681 |-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()
  197. 2017-07-27 09:29:19.682 |-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>)
  198. 2017-07-27 09:29:19.683 |-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>)
  199. 2017-07-27 09:29:19.683 |-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)
  200. 2017-07-27 09:29:19.684 |-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)
  201. 2017-07-27 09:29:19.686 |-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()
  202. 2017-07-27 09:29:19.687 |-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)
  203. 2017-07-27 09:29:19.687 |-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)
  204. 2017-07-27 09:29:19.687 |-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)
  205. 2017-07-27 09:29:19.688 |-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)
  206. 2017-07-27 09:29:19.688 |-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)
  207. 2017-07-27 09:29:19.688 |-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()
  208. 2017-07-27 09:29:19.689 |-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)
  209. 2017-07-27 09:29:19.689 |-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
  210. 2017-07-27 09:29:19.690 |-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)
  211. 2017-07-27 09:29:19.691 |-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)
  212. 2017-07-27 09:29:19.691 |-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)
  213. 2017-07-27 09:29:19.691 |-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)
  214. 2017-07-27 09:29:19.816 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  215. 2017-07-27 09:29:19.932 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  216. 2017-07-27 09:29:19.933 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  217. 2017-07-27 09:29:20.016 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  218. 2017-07-27 09:29:20.017 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  219. 2017-07-27 09:29:20.018 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  220. 2017-07-27 09:29:20.019 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  221. 2017-07-27 09:29:20.020 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  222. 2017-07-27 09:29:20.020 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  223. 2017-07-27 09:29:20.021 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  224. 2017-07-27 09:29:20.021 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  225. 2017-07-27 09:29:20.022 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  226. 2017-07-27 09:29:20.023 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  227. 2017-07-27 09:29:20.024 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  228. 2017-07-27 09:29:20.024 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  229. 2017-07-27 09:29:20.026 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  230. 2017-07-27 09:29:20.027 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  231. 2017-07-27 09:29:20.028 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  232. 2017-07-27 09:29:20.029 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  233. 2017-07-27 09:29:20.030 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  234. 2017-07-27 09:29:20.031 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  235. 2017-07-27 09:29:20.032 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  236. 2017-07-27 09:29:20.033 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  237. 2017-07-27 09:29:20.034 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  238. 2017-07-27 09:29:20.034 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  239. 2017-07-27 09:29:20.035 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  240. 2017-07-27 09:29:20.129 |-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]
  241. 2017-07-27 09:29:21.079 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  242. 2017-07-27 09:29:21.080 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  243. 2017-07-27 09:29:21.082 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  244. 2017-07-27 09:29:21.171 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  245. 2017-07-27 09:29:21.176 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  246. 2017-07-27 09:29:21.178 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  247. 2017-07-27 09:29:21.179 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  248. 2017-07-27 09:29:21.181 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  249. 2017-07-27 09:29:21.182 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  250. 2017-07-27 09:29:21.188 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  251. 2017-07-27 09:29:21.189 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  252. 2017-07-27 09:29:21.192 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  253. 2017-07-27 09:29:21.193 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  254. 2017-07-27 09:29:21.193 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  255. 2017-07-27 09:29:21.193 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  256. 2017-07-27 09:29:21.193 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  257. 2017-07-27 09:29:21.193 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  258. 2017-07-27 09:29:21.193 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  259. 2017-07-27 09:29:21.219 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  260. 2017-07-27 09:29:21.220 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  261. 2017-07-27 09:29:21.220 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  262. 2017-07-27 09:29:21.220 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  263. 2017-07-27 09:29:21.235 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  264. 2017-07-27 09:29:21.248 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  265. 2017-07-27 09:29:21.248 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  266. 2017-07-27 09:29:21.254 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  267. 2017-07-27 09:29:21.440 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  268. 2017-07-27 09:29:30.326 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  269. 2017-07-27 09:29:30.397 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  270. 2017-07-27 09:29:30.446 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  271. 2017-07-27 09:29:30.446 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  272. 2017-07-27 09:29:30.446 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  273. 2017-07-27 09:29:30.447 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  274. 2017-07-27 09:29:30.447 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  275. 2017-07-27 09:29:31.341 |-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)
  276. 2017-07-27 09:29:31.342 |-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()
  277. 2017-07-27 09:29:31.343 |-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()
  278. 2017-07-27 09:29:31.343 |-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()
  279. 2017-07-27 09:29:31.345 |-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
  280. 2017-07-27 09:29:31.346 |-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)
  281. 2017-07-27 09:29:31.346 |-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()
  282. 2017-07-27 09:29:31.347 |-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()
  283. 2017-07-27 09:29:31.349 |-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)
  284. 2017-07-27 09:29:31.350 |-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>)
  285. 2017-07-27 09:29:31.351 |-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()
  286. 2017-07-27 09:29:31.352 |-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()
  287. 2017-07-27 09:29:31.352 |-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)
  288. 2017-07-27 09:29:31.353 |-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()
  289. 2017-07-27 09:29:31.354 |-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)
  290. 2017-07-27 09:29:31.355 |-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()
  291. 2017-07-27 09:29:31.356 |-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()
  292. 2017-07-27 09:29:32.181 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  293. 2017-07-27 09:29:32.195 |-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
  294. 2017-07-27 09:29:32.557 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  295. 2017-07-27 09:29:32.559 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  296. 2017-07-27 09:29:32.559 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  297. 2017-07-27 09:29:32.567 |-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]
  298. 2017-07-27 09:29:32.581 |-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]
  299. 2017-07-27 09:29:32.581 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  300. 2017-07-27 09:29:32.588 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  301. 2017-07-27 09:29:32.591 |-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]
  302. 2017-07-27 09:29:32.613 |-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]
  303. 2017-07-27 09:29:32.629 |-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]
  304. 2017-07-27 09:29:32.636 |-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]
  305. 2017-07-27 09:29:32.639 |-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]
  306. 2017-07-27 09:29:32.642 |-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]
  307. 2017-07-27 09:29:32.646 |-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]
  308. 2017-07-27 09:29:32.665 |-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]
  309. 2017-07-27 09:29:32.675 |-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]
  310. 2017-07-27 09:29:32.678 |-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]
  311. 2017-07-27 09:29:32.683 |-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]
  312. 2017-07-27 09:29:32.688 |-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]
  313. 2017-07-27 09:29:32.831 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  314. 2017-07-27 09:29:33.472 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  315. 2017-07-27 09:29:33.497 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  316. 2017-07-27 09:29:33.557 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 31
  317. 2017-07-27 09:29:33.558 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [36] -| 加载用户信息成功,数据数:0
  318. 2017-07-27 09:29:33.563 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  319. 2017-07-27 09:29:36.860 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  320. 2017-07-27 09:29:36.860 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  321. 2017-07-27 09:29:37.040 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 659
  322. 2017-07-27 09:29:37.042 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:659
  323. 2017-07-27 09:29:37.043 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  324. 2017-07-27 09:29:37.044 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  325. 2017-07-27 09:29:37.085 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  326. 2017-07-27 09:29:37.085 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载部门信息成功,数据数:32
  327. 2017-07-27 09:29:37.116 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  328. 2017-07-27 09:29:37.117 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  329. 2017-07-27 09:29:37.143 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  330. 2017-07-27 09:29:37.144 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [65] -| 加载用户信息成功,数据数:659
  331. 2017-07-27 09:29:37.163 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  332. 2017-07-27 09:29:37.177 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  333. 2017-07-27 09:29:37.403 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  334. 2017-07-27 09:29:37.437 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  335. 2017-07-27 09:29:37.450 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 30.098 seconds (JVM running for 34.002)
  336. 2017-07-27 10:02:21.507 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  337. 2017-07-27 10:02:21.508 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  338. 2017-07-27 10:02:21.539 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 31 ms
  339. 2017-07-27 10:02:25.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  340. 2017-07-27 10:02:25.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  341. 2017-07-27 10:02:25.133 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  342. 2017-07-27 10:02:25.414 |-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
  343. 2017-07-27 10:02:25.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  344. 2017-07-27 10:02:25.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  345. 2017-07-27 10:02:25.456 |-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=?)
  346. 2017-07-27 10:02:25.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  347. 2017-07-27 10:02:25.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  348. 2017-07-27 10:02:25.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  349. 2017-07-27 10:02:25.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  350. 2017-07-27 10:02:25.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  351. 2017-07-27 10:02:25.542 |-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
  352. 2017-07-27 10:02:25.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  353. 2017-07-27 10:02:25.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  354. 2017-07-27 10:02:25.578 |-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=?)
  355. 2017-07-27 10:02:25.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  356. 2017-07-27 10:02:25.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  357. 2017-07-27 10:02:26.267 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  358. 2017-07-27 10:02:26.267 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  359. 2017-07-27 10:02:26.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  360. 2017-07-27 10:02:26.304 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  361. 2017-07-27 10:02:26.335 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  362. 2017-07-27 10:02:26.335 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  363. 2017-07-27 10:02:26.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  364. 2017-07-27 10:02:26.336 |-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
  365. 2017-07-27 10:02:26.337 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  366. 2017-07-27 10:02:26.368 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  367. 2017-07-27 10:02:26.371 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  368. 2017-07-27 10:02:26.372 |-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=?)
  369. 2017-07-27 10:02:26.372 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  370. 2017-07-27 10:02:26.399 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  371. 2017-07-27 10:02:26.400 |-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
  372. 2017-07-27 10:02:26.400 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  373. 2017-07-27 10:02:26.407 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  374. 2017-07-27 10:02:26.412 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  375. 2017-07-27 10:02:26.432 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  376. 2017-07-27 10:02:26.434 |-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=?)
  377. 2017-07-27 10:02:26.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  378. 2017-07-27 10:02:26.462 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  379. 2017-07-27 10:02:26.469 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  380. 2017-07-27 10:02:26.471 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  381. 2017-07-27 10:02:26.503 |-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
  382. 2017-07-27 10:02:26.504 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  383. 2017-07-27 10:02:26.537 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  384. 2017-07-27 10:02:26.539 |-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
  385. 2017-07-27 10:02:26.539 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  386. 2017-07-27 10:02:26.575 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  387. 2017-07-27 10:02:26.651 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  388. 2017-07-27 10:02:26.658 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  389. 2017-07-27 10:02:26.659 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  390. 2017-07-27 10:02:26.673 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  391. 2017-07-27 10:02:26.676 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  392. 2017-07-27 10:02:26.677 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  393. 2017-07-27 10:02:26.720 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  394. 2017-07-27 10:02:26.722 |-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
  395. 2017-07-27 10:02:26.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  396. 2017-07-27 10:02:26.731 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  397. 2017-07-27 10:02:26.759 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  398. 2017-07-27 10:02:26.759 |-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
  399. 2017-07-27 10:02:26.760 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  400. 2017-07-27 10:02:26.806 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  401. 2017-07-27 10:02:26.807 |-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=?)
  402. 2017-07-27 10:02:26.807 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  403. 2017-07-27 10:02:26.869 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  404. 2017-07-27 10:02:26.876 |-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=?)
  405. 2017-07-27 10:02:26.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  406. 2017-07-27 10:02:26.877 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  407. 2017-07-27 10:02:26.881 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  408. 2017-07-27 10:02:26.903 |-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
  409. 2017-07-27 10:02:26.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  410. 2017-07-27 10:02:26.925 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  411. 2017-07-27 10:02:26.936 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  412. 2017-07-27 10:02:26.941 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  413. 2017-07-27 10:02:26.951 |-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
  414. 2017-07-27 10:02:26.952 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  415. 2017-07-27 10:02:26.965 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  416. 2017-07-27 10:02:27.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  417. 2017-07-27 10:02:27.101 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  418. 2017-07-27 10:02:27.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  419. 2017-07-27 10:02:27.105 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  420. 2017-07-27 10:02:27.155 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  421. 2017-07-27 10:02:27.156 |-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
  422. 2017-07-27 10:02:27.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  423. 2017-07-27 10:02:27.221 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  424. 2017-07-27 10:02:27.222 |-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=?)
  425. 2017-07-27 10:02:27.223 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  426. 2017-07-27 10:02:27.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  427. 2017-07-27 10:02:27.280 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  428. 2017-07-27 10:02:27.282 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  429. 2017-07-27 10:02:27.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  430. 2017-07-27 10:02:27.326 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  431. 2017-07-27 10:02:27.534 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  432. 2017-07-27 10:02:27.599 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  433. 2017-07-27 10:02:27.603 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  434. 2017-07-27 10:02:27.603 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  435. 2017-07-27 10:02:27.693 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  436. 2017-07-27 10:02:27.694 |-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
  437. 2017-07-27 10:02:27.694 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  438. 2017-07-27 10:02:27.778 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  439. 2017-07-27 10:02:27.779 |-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=?)
  440. 2017-07-27 10:02:27.780 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  441. 2017-07-27 10:02:27.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  442. 2017-07-27 10:02:27.878 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  443. 2017-07-27 10:02:27.881 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  444. 2017-07-27 10:02:27.919 |-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=?
  445. 2017-07-27 10:02:27.919 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  446. 2017-07-27 10:02:27.998 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  447. 2017-07-27 10:02:28.154 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  448. 2017-07-27 10:02:28.156 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  449. 2017-07-27 10:02:28.157 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  450. 2017-07-27 10:02:28.203 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  451. 2017-07-27 10:02:28.204 |-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
  452. 2017-07-27 10:02:28.205 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  453. 2017-07-27 10:02:28.261 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  454. 2017-07-27 10:02:28.262 |-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=?)
  455. 2017-07-27 10:02:28.262 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  456. 2017-07-27 10:02:28.302 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  457. 2017-07-27 10:02:28.309 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  458. 2017-07-27 10:02:28.311 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  459. 2017-07-27 10:02:28.458 |-DEBUG [http-nio-8089-exec-5] 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 FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count
  460. 2017-07-27 10:02:28.459 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
  461. 2017-07-27 10:02:28.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  462. 2017-07-27 10:02:28.503 |-DEBUG [http-nio-8089-exec-5] 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 FROM check_task t left join t_sys_users u on t.checked_person=u.id WHERE 1=1 AND t.check_status in ( ? , ? ) limit ?,?
  463. 2017-07-27 10:02:28.504 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
  464. 2017-07-27 10:02:28.541 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
  465. 2017-07-27 10:02:35.164 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  466. 2017-07-27 10:02:35.165 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  467. 2017-07-27 10:02:35.166 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  468. 2017-07-27 10:02:35.168 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  469. 2017-07-27 10:02:35.168 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  470. 2017-07-27 10:02:35.168 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  471. 2017-07-27 10:02:35.169 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  472. 2017-07-27 10:02:35.173 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  473. 2017-07-27 10:02:35.200 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  474. 2017-07-27 10:02:35.200 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  475. 2017-07-27 10:02:35.201 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  476. 2017-07-27 10:02:35.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  477. 2017-07-27 10:02:35.202 |-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
  478. 2017-07-27 10:02:35.202 |-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
  479. 2017-07-27 10:02:35.202 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  480. 2017-07-27 10:02:35.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  481. 2017-07-27 10:02:35.202 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  482. 2017-07-27 10:02:35.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  483. 2017-07-27 10:02:35.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  484. 2017-07-27 10:02:35.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  485. 2017-07-27 10:02:35.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=?)
  486. 2017-07-27 10:02:35.237 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  487. 2017-07-27 10:02:35.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  488. 2017-07-27 10:02:35.241 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  489. 2017-07-27 10:02:35.242 |-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=?)
  490. 2017-07-27 10:02:35.242 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  491. 2017-07-27 10:02:35.267 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  492. 2017-07-27 10:02:35.267 |-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
  493. 2017-07-27 10:02:35.268 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  494. 2017-07-27 10:02:35.271 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  495. 2017-07-27 10:02:35.273 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  496. 2017-07-27 10:02:35.273 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  497. 2017-07-27 10:02:35.274 |-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
  498. 2017-07-27 10:02:35.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  499. 2017-07-27 10:02:35.290 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  500. 2017-07-27 10:02:35.292 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  501. 2017-07-27 10:02:35.306 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  502. 2017-07-27 10:02:35.308 |-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=?)
  503. 2017-07-27 10:02:35.308 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  504. 2017-07-27 10:02:35.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  505. 2017-07-27 10:02:35.315 |-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 = ?
  506. 2017-07-27 10:02:35.316 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 1(Long), 1(Long)
  507. 2017-07-27 10:02:35.339 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  508. 2017-07-27 10:02:35.340 |-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=?)
  509. 2017-07-27 10:02:35.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  510. 2017-07-27 10:02:35.342 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
  511. 2017-07-27 10:02:35.343 |-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 ?,?
  512. 2017-07-27 10:02:35.345 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  513. 2017-07-27 10:02:35.344 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 1(Long), 1(Long), 0(Integer), 50(Integer)
  514. 2017-07-27 10:02:35.352 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  515. 2017-07-27 10:02:35.362 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  516. 2017-07-27 10:02:35.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 1(Integer)
  517. 2017-07-27 10:02:35.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  518. 2017-07-27 10:02:35.375 |-DEBUG [http-nio-8089-exec-10] 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
  519. 2017-07-27 10:02:35.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 1(Long), 2017-07-01 00:00:00.0(Timestamp), 2017-07-31 23:59:59.0(Timestamp), 1(Integer)
  520. 2017-07-27 10:02:35.379 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  521. 2017-07-27 10:02:35.382 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  522. 2017-07-27 10:02:35.387 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <== Total: 2
  523. 2017-07-27 10:02:35.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Preparing: SELECT * FROM sys_class_type where 1=1
  524. 2017-07-27 10:02:35.389 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters:
  525. 2017-07-27 10:02:35.409 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  526. 2017-07-27 10:02:35.415 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 4
  527. 2017-07-27 10:02:35.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <== Total: 3
  528. 2017-07-27 10:02:37.975 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  529. 2017-07-27 10:02:37.975 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  530. 2017-07-27 10:02:37.979 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  531. 2017-07-27 10:02: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 from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  532. 2017-07-27 10:02:37.980 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  533. 2017-07-27 10:02:37.980 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  534. 2017-07-27 10:02:38.052 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  535. 2017-07-27 10:02:38.053 |-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
  536. 2017-07-27 10:02:38.053 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  537. 2017-07-27 10:02:38.053 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  538. 2017-07-27 10:02:38.054 |-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
  539. 2017-07-27 10:02:38.054 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  540. 2017-07-27 10:02:38.120 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  541. 2017-07-27 10:02:38.121 |-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=?)
  542. 2017-07-27 10:02:38.122 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  543. 2017-07-27 10:02:38.130 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  544. 2017-07-27 10:02:38.131 |-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=?)
  545. 2017-07-27 10:02:38.132 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  546. 2017-07-27 10:02:38.204 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  547. 2017-07-27 10:02:38.208 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  548. 2017-07-27 10:02:38.210 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  549. 2017-07-27 10:02:38.214 |-DEBUG [http-nio-8089-exec-4] 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
  550. 2017-07-27 10:02:38.214 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 1(Long), 2017-07-01 00:00:00.0(Timestamp), 2017-07-31 00:00:00.0(Timestamp), 2(Integer)
  551. 2017-07-27 10:02:38.222 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  552. 2017-07-27 10:02:38.226 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  553. 2017-07-27 10:02:38.228 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  554. 2017-07-27 10:02:38.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  555. 2017-07-27 10:02:38.239 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 1(Long), 2(Long)
  556. 2017-07-27 10:02:38.270 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 0
  557. 2017-07-27 10:02:38.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
  558. 2017-07-27 10:02:38.291 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,?
  559. 2017-07-27 10:02:38.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 1(Long), 2(Long), 0(Integer), 50(Integer)
  560. 2017-07-27 10:02:38.339 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <== Total: 1
  561. 2017-07-27 10:02:42.646 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  562. 2017-07-27 10:02:42.647 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  563. 2017-07-27 10:02:42.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  564. 2017-07-27 10:02:42.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  565. 2017-07-27 10:02:42.652 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  566. 2017-07-27 10:02:42.653 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  567. 2017-07-27 10:02:42.660 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  568. 2017-07-27 10:02:42.663 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  569. 2017-07-27 10:02:42.667 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  570. 2017-07-27 10:02:42.668 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  571. 2017-07-27 10:02:42.669 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  572. 2017-07-27 10:02:42.672 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  573. 2017-07-27 10:02:42.715 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  574. 2017-07-27 10:02:42.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  575. 2017-07-27 10:02:42.716 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  576. 2017-07-27 10:02:42.716 |-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
  577. 2017-07-27 10:02:42.718 |-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
  578. 2017-07-27 10:02:42.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  579. 2017-07-27 10:02:42.718 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  580. 2017-07-27 10:02:42.718 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  581. 2017-07-27 10:02:42.718 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  582. 2017-07-27 10:02:42.718 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  583. 2017-07-27 10:02:42.719 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  584. 2017-07-27 10:02:42.720 |-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
  585. 2017-07-27 10:02:42.720 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  586. 2017-07-27 10:02:42.720 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  587. 2017-07-27 10:02:42.721 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  588. 2017-07-27 10:02:42.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  589. 2017-07-27 10:02:42.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  590. 2017-07-27 10:02:42.759 |-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=?)
  591. 2017-07-27 10:02:42.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  592. 2017-07-27 10:02:42.759 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  593. 2017-07-27 10:02:42.760 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  594. 2017-07-27 10:02:42.760 |-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
  595. 2017-07-27 10:02:42.761 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  596. 2017-07-27 10:02:42.761 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  597. 2017-07-27 10:02:42.761 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  598. 2017-07-27 10:02:42.761 |-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=?)
  599. 2017-07-27 10:02:42.762 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  600. 2017-07-27 10:02:42.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  601. 2017-07-27 10:02:42.799 |-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
  602. 2017-07-27 10:02:42.800 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  603. 2017-07-27 10:02:42.805 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  604. 2017-07-27 10:02:42.806 |-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=?)
  605. 2017-07-27 10:02:42.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  606. 2017-07-27 10:02:42.810 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  607. 2017-07-27 10:02:42.812 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  608. 2017-07-27 10:02:42.814 |-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=?)
  609. 2017-07-27 10:02:42.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  610. 2017-07-27 10:02:42.823 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  611. 2017-07-27 10:02:42.836 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  612. 2017-07-27 10:02:42.837 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  613. 2017-07-27 10:02:42.845 |-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 parentid = ?
  614. 2017-07-27 10:02:42.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  615. 2017-07-27 10:02:42.845 |-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 parentid = ?
  616. 2017-07-27 10:02:42.847 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  617. 2017-07-27 10:02:42.848 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  618. 2017-07-27 10:02:42.849 |-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
  619. 2017-07-27 10:02:42.849 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  620. 2017-07-27 10:02:42.861 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  621. 2017-07-27 10:02:42.864 |-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=?)
  622. 2017-07-27 10:02:42.865 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  623. 2017-07-27 10:02:42.866 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  624. 2017-07-27 10:02:42.869 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  625. 2017-07-27 10:02:42.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  626. 2017-07-27 10:02:42.872 |-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 parentid = ?
  627. 2017-07-27 10:02:42.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  628. 2017-07-27 10:02:42.873 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  629. 2017-07-27 10:02:42.876 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  630. 2017-07-27 10:02:42.882 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  631. 2017-07-27 10:02:42.883 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  632. 2017-07-27 10:02:42.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  633. 2017-07-27 10:02:42.889 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  634. 2017-07-27 10:02:42.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  635. 2017-07-27 10:02:42.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  636. 2017-07-27 10:02:42.893 |-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=?)
  637. 2017-07-27 10:02:42.894 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  638. 2017-07-27 10:02:42.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  639. 2017-07-27 10:02:42.910 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  640. 2017-07-27 10:02:42.911 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  641. 2017-07-27 10:02:42.914 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  642. 2017-07-27 10:02:42.916 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  643. 2017-07-27 10:02:42.918 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  644. 2017-07-27 10:02:42.923 |-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 parentid = ?
  645. 2017-07-27 10:02:42.923 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  646. 2017-07-27 10:02:42.924 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  647. 2017-07-27 10:02:42.926 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  648. 2017-07-27 10:02:42.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  649. 2017-07-27 10:02:42.935 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  650. 2017-07-27 10:02:42.936 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  651. 2017-07-27 10:02:42.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  652. 2017-07-27 10:02:42.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  653. 2017-07-27 10:02:42.941 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  654. 2017-07-27 10:02:42.943 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  655. 2017-07-27 10:02:42.946 |-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 parentid = ?
  656. 2017-07-27 10:02:42.947 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  657. 2017-07-27 10:02:42.960 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  658. 2017-07-27 10:02:42.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  659. 2017-07-27 10:02:42.974 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  660. 2017-07-27 10:02:42.975 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  661. 2017-07-27 10:02:42.975 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  662. 2017-07-27 10:02:42.994 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  663. 2017-07-27 10:02:42.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  664. 2017-07-27 10:02:42.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  665. 2017-07-27 10:02:43.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  666. 2017-07-27 10:02:43.006 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY tab.mth
  667. 2017-07-27 10:02:43.007 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  668. 2017-07-27 10:02:43.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  669. 2017-07-27 10:02:43.013 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  670. 2017-07-27 10:02:43.029 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  671. 2017-07-27 10:02:43.041 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  672. 2017-07-27 10:02:43.043 |-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 parentid = ?
  673. 2017-07-27 10:02:43.043 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  674. 2017-07-27 10:02:43.070 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  675. 2017-07-27 10:02:43.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  676. 2017-07-27 10:02:43.081 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  677. 2017-07-27 10:02:43.082 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  678. 2017-07-27 10:02:43.104 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  679. 2017-07-27 10:02:43.123 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  680. 2017-07-27 10:02:43.125 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  681. 2017-07-27 10:02:43.126 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  682. 2017-07-27 10:02:43.133 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  683. 2017-07-27 10:02:43.136 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  684. 2017-07-27 10:02:43.137 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/06(String)
  685. 2017-07-27 10:02:43.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  686. 2017-07-27 10:02:43.210 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 190
  687. 2017-07-27 10:02:55.360 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  688. 2017-07-27 10:02:55.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  689. 2017-07-27 10:02:55.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  690. 2017-07-27 10:02:55.370 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  691. 2017-07-27 10:02:55.372 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  692. 2017-07-27 10:02:55.373 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  693. 2017-07-27 10:02:55.374 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  694. 2017-07-27 10:02:55.374 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  695. 2017-07-27 10:02:55.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  696. 2017-07-27 10:02:55.377 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  697. 2017-07-27 10:02:55.380 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  698. 2017-07-27 10:02:55.380 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  699. 2017-07-27 10:02:55.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  700. 2017-07-27 10:02:55.391 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  701. 2017-07-27 10:02:55.392 |-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
  702. 2017-07-27 10:02:55.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  703. 2017-07-27 10:02:55.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  704. 2017-07-27 10:02:55.403 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  705. 2017-07-27 10:02:55.403 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  706. 2017-07-27 10:02:55.404 |-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
  707. 2017-07-27 10:02:55.404 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  708. 2017-07-27 10:02:55.404 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  709. 2017-07-27 10:02:55.405 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  710. 2017-07-27 10:02:55.406 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  711. 2017-07-27 10:02:55.406 |-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
  712. 2017-07-27 10:02:55.406 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  713. 2017-07-27 10:02:55.406 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  714. 2017-07-27 10:02:55.420 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  715. 2017-07-27 10:02:55.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  716. 2017-07-27 10:02:55.421 |-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
  717. 2017-07-27 10:02:55.421 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  718. 2017-07-27 10:02:55.421 |-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=?)
  719. 2017-07-27 10:02:55.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  720. 2017-07-27 10:02:55.432 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  721. 2017-07-27 10:02:55.435 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  722. 2017-07-27 10:02:55.435 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  723. 2017-07-27 10:02:55.435 |-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
  724. 2017-07-27 10:02:55.436 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  725. 2017-07-27 10:02:55.443 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  726. 2017-07-27 10:02:55.444 |-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
  727. 2017-07-27 10:02:55.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  728. 2017-07-27 10:02:55.446 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  729. 2017-07-27 10:02:55.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=?)
  730. 2017-07-27 10:02:55.446 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  731. 2017-07-27 10:02:55.449 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  732. 2017-07-27 10:02:55.450 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  733. 2017-07-27 10:02:55.451 |-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=?)
  734. 2017-07-27 10:02:55.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  735. 2017-07-27 10:02:55.452 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  736. 2017-07-27 10:02:55.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  737. 2017-07-27 10:02:55.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  738. 2017-07-27 10:02:55.465 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  739. 2017-07-27 10:02:55.466 |-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=?)
  740. 2017-07-27 10:02:55.466 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  741. 2017-07-27 10:02:55.507 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  742. 2017-07-27 10:02:55.508 |-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=?)
  743. 2017-07-27 10:02:55.508 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  744. 2017-07-27 10:02:55.509 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  745. 2017-07-27 10:02:55.510 |-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=?)
  746. 2017-07-27 10:02:55.510 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  747. 2017-07-27 10:02:55.511 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  748. 2017-07-27 10:02:55.511 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  749. 2017-07-27 10:02:55.512 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  750. 2017-07-27 10:02:55.514 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  751. 2017-07-27 10:02:55.516 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  752. 2017-07-27 10:02:55.517 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  753. 2017-07-27 10:02:55.517 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  754. 2017-07-27 10:02:55.518 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  755. 2017-07-27 10:02:55.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  756. 2017-07-27 10:02:55.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  757. 2017-07-27 10:02:55.523 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  758. 2017-07-27 10:02:55.524 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  759. 2017-07-27 10:02:55.528 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  760. 2017-07-27 10:02:55.531 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  761. 2017-07-27 10:02:55.531 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  762. 2017-07-27 10:02:55.576 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  763. 2017-07-27 10:02:55.577 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  764. 2017-07-27 10:02:55.577 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  765. 2017-07-27 10:02:55.580 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  766. 2017-07-27 10:02:55.581 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  767. 2017-07-27 10:02:55.582 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  768. 2017-07-27 10:02:55.582 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  769. 2017-07-27 10:02:55.584 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  770. 2017-07-27 10:02:55.585 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  771. 2017-07-27 10:02:55.582 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  772. 2017-07-27 10:02:55.588 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  773. 2017-07-27 10:02:55.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  774. 2017-07-27 10:02:55.617 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  775. 2017-07-27 10:02:55.661 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  776. 2017-07-27 10:02:55.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  777. 2017-07-27 10:02:55.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  778. 2017-07-27 10:02:55.663 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  779. 2017-07-27 10:02:55.664 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  780. 2017-07-27 10:02:55.664 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  781. 2017-07-27 10:02:55.691 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  782. 2017-07-27 10:02:55.692 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1
  783. 2017-07-27 10:02:55.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  784. 2017-07-27 10:02:55.693 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  785. 2017-07-27 10:02:55.715 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  786. 2017-07-27 10:02:55.725 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  787. 2017-07-27 10:02:55.728 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  788. 2017-07-27 10:02:55.729 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/06(String)
  789. 2017-07-27 10:02:55.754 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  790. 2017-07-27 10:02:55.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  791. 2017-07-27 10:02:55.756 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  792. 2017-07-27 10:02:55.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  793. 2017-07-27 10:02:55.784 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  794. 2017-07-27 10:02:55.787 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  795. 2017-07-27 10:02:55.787 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  796. 2017-07-27 10:02:55.810 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 220
  797. 2017-07-27 10:02:55.816 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  798. 2017-07-27 10:03:03.713 |-ERROR [Druid-ConnectionPool-Create-1914736410] com.alibaba.druid.pool.DruidDataSource [2103] -| create connection error, url: jdbc:mysql://git.topm.win:6381/visualinspection?useUnicode=true&characterEncoding=utf8, errorCode 0, state 08S01
  799. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
  800. The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
  801. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  802. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  803. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  804. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  805. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  806. at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:989)
  807. at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:341)
  808. at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2203)
  809. at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2236)
  810. at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2035)
  811. at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:790)
  812. at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)
  813. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  814. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  815. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  816. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  817. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  818. at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:400)
  819. at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:330)
  820. at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1461)
  821. at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1525)
  822. at com.alibaba.druid.pool.DruidDataSource$CreateConnectionThread.run(DruidDataSource.java:2100)
  823. Caused by: java.net.ConnectException: Connection timed out: connect
  824. at java.net.DualStackPlainSocketImpl.connect0(Native Method)
  825. at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:79)
  826. at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:345)
  827. at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
  828. at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
  829. at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
  830. at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
  831. at java.net.Socket.connect(Socket.java:589)
  832. at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:211)
  833. at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:300)
  834. ... 15 common frames omitted
  835. 2017-07-27 10:03:47.691 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  836. 2017-07-27 10:03:47.695 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  837. 2017-07-27 10:03:47.696 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  838. 2017-07-27 10:03:47.863 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  839. 2017-07-27 10:03:47.864 |-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
  840. 2017-07-27 10:03:47.865 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  841. 2017-07-27 10:03:48.000 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  842. 2017-07-27 10:03:48.001 |-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=?)
  843. 2017-07-27 10:03:48.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  844. 2017-07-27 10:03:48.130 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  845. 2017-07-27 10:03:48.136 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  846. 2017-07-27 10:03:48.138 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  847. 2017-07-27 10:03:48.143 |-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
  848. 2017-07-27 10:03:48.144 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  849. 2017-07-27 10:03:48.260 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  850. 2017-07-27 10:03:48.280 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  851. 2017-07-27 10:03:48.282 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  852. 2017-07-27 10:03:48.283 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  853. 2017-07-27 10:03:48.414 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  854. 2017-07-27 10:03:48.415 |-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
  855. 2017-07-27 10:03:48.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  856. 2017-07-27 10:03:48.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  857. 2017-07-27 10:03:48.552 |-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=?)
  858. 2017-07-27 10:03:48.553 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  859. 2017-07-27 10:03:48.688 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  860. 2017-07-27 10:03:48.692 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  861. 2017-07-27 10:03:48.693 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  862. 2017-07-27 10:03:48.696 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  863. 2017-07-27 10:03:48.697 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  864. 2017-07-27 10:03:49.912 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  865. 2017-07-27 10:03:49.974 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  866. 2017-07-27 10:03:49.978 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  867. 2017-07-27 10:03:49.978 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  868. 2017-07-27 10:03:50.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  869. 2017-07-27 10:03:50.008 |-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
  870. 2017-07-27 10:03:50.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  871. 2017-07-27 10:03:50.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  872. 2017-07-27 10:03:50.040 |-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=?)
  873. 2017-07-27 10:03:50.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  874. 2017-07-27 10:03:50.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  875. 2017-07-27 10:03:50.073 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  876. 2017-07-27 10:03:50.075 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  877. 2017-07-27 10:03:50.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  878. 2017-07-27 10:03:50.082 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  879. 2017-07-27 10:03:50.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  880. 2017-07-27 10:03:50.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class t LEFT JOIN check_task ct ON t.id = ct.user_class_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date , t.user_id
  881. 2017-07-27 10:03:50.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  882. 2017-07-27 10:03:58.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| <== Total: 5206
  883. 2017-07-27 10:03:58.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id
  884. 2017-07-27 10:03:58.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  885. 2017-07-27 10:03:58.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| <== Total: 449
  886. 2017-07-27 10:08:32.493 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  887. 2017-07-27 10:08:32.497 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  888. 2017-07-27 10:08:32.498 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  889. 2017-07-27 10:08:32.500 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  890. 2017-07-27 10:08:32.501 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  891. 2017-07-27 10:08:32.507 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  892. 2017-07-27 10:08:32.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  893. 2017-07-27 10:08:32.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  894. 2017-07-27 10:08:32.850 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  895. 2017-07-27 10:08:32.851 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  896. 2017-07-27 10:08:32.852 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  897. 2017-07-27 10:08:32.882 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  898. 2017-07-27 10:08:32.883 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  899. 2017-07-27 10:08:32.883 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  900. 2017-07-27 10:08:32.912 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  901. 2017-07-27 10:08:33.528 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  902. 2017-07-27 10:08:33.528 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  903. 2017-07-27 10:08:33.529 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  904. 2017-07-27 10:08:33.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  905. 2017-07-27 10:08:33.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  906. 2017-07-27 10:08:33.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  907. 2017-07-27 10:08:33.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  908. 2017-07-27 10:08:33.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  909. 2017-07-27 10:08:33.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  910. 2017-07-27 10:08:33.890 |-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
  911. 2017-07-27 10:08:33.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  912. 2017-07-27 10:08:33.922 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  913. 2017-07-27 10:08:33.923 |-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
  914. 2017-07-27 10:08:33.923 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  915. 2017-07-27 10:08:33.954 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  916. 2017-07-27 10:08:33.956 |-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=?)
  917. 2017-07-27 10:08:33.957 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  918. 2017-07-27 10:08:33.983 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  919. 2017-07-27 10:08:33.989 |-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
  920. 2017-07-27 10:08:33.990 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  921. 2017-07-27 10:08:33.990 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  922. 2017-07-27 10:08:33.991 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  923. 2017-07-27 10:08:33.994 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  924. 2017-07-27 10:08:33.995 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  925. 2017-07-27 10:08:34.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  926. 2017-07-27 10:08:34.021 |-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=?)
  927. 2017-07-27 10:08:34.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  928. 2017-07-27 10:08:34.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  929. 2017-07-27 10:08:34.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  930. 2017-07-27 10:08:34.053 |-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
  931. 2017-07-27 10:08:34.053 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  932. 2017-07-27 10:08:34.055 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  933. 2017-07-27 10:08:34.057 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  934. 2017-07-27 10:08:34.154 |-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=?)
  935. 2017-07-27 10:08:34.154 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  936. 2017-07-27 10:08:34.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  937. 2017-07-27 10:08:34.182 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  938. 2017-07-27 10:08:34.184 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  939. 2017-07-27 10:08:34.185 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  940. 2017-07-27 10:08:34.188 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  941. 2017-07-27 10:08:34.191 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  942. 2017-07-27 10:08:34.192 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  943. 2017-07-27 10:08:34.219 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  944. 2017-07-27 10:08:34.279 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  945. 2017-07-27 10:08:34.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  946. 2017-07-27 10:08:34.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  947. 2017-07-27 10:08:34.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  948. 2017-07-27 10:08:34.319 |-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=?)
  949. 2017-07-27 10:08:34.320 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  950. 2017-07-27 10:08:34.347 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  951. 2017-07-27 10:08:34.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  952. 2017-07-27 10:08:34.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  953. 2017-07-27 10:08:34.352 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  954. 2017-07-27 10:08:34.355 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  955. 2017-07-27 10:08:34.357 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  956. 2017-07-27 10:08:34.361 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  957. 2017-07-27 10:08:34.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  958. 2017-07-27 10:08:34.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  959. 2017-07-27 10:08:34.381 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  960. 2017-07-27 10:08:34.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  961. 2017-07-27 10:08:34.389 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  962. 2017-07-27 10:08:34.391 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  963. 2017-07-27 10:08:34.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1
  964. 2017-07-27 10:08:34.391 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/06(String)
  965. 2017-07-27 10:08:34.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  966. 2017-07-27 10:08:34.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  967. 2017-07-27 10:08:34.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  968. 2017-07-27 10:08:34.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  969. 2017-07-27 10:08:34.432 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  970. 2017-07-27 10:08:34.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  971. 2017-07-27 10:08:34.578 |-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
  972. 2017-07-27 10:08:34.579 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  973. 2017-07-27 10:08:34.579 |-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
  974. 2017-07-27 10:08:34.580 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  975. 2017-07-27 10:08:34.608 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  976. 2017-07-27 10:08:34.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=?)
  977. 2017-07-27 10:08:34.610 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  978. 2017-07-27 10:08:34.611 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  979. 2017-07-27 10:08:34.612 |-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=?)
  980. 2017-07-27 10:08:34.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  981. 2017-07-27 10:08:34.636 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  982. 2017-07-27 10:08:34.640 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  983. 2017-07-27 10:08:34.640 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  984. 2017-07-27 10:08:34.642 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  985. 2017-07-27 10:08:34.645 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  986. 2017-07-27 10:08:34.646 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  987. 2017-07-27 10:08:34.650 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  988. 2017-07-27 10:08:34.651 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  989. 2017-07-27 10:08:34.657 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  990. 2017-07-27 10:08:34.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  991. 2017-07-27 10:08:34.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  992. 2017-07-27 10:08:34.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 220
  993. 2017-07-27 10:08:34.745 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  994. 2017-07-27 10:08:34.746 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  995. 2017-07-27 10:08:34.747 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  996. 2017-07-27 10:08:34.775 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  997. 2017-07-27 10:08:35.741 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  998. 2017-07-27 10:08:35.742 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  999. 2017-07-27 10:08:35.743 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1000. 2017-07-27 10:08:35.743 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1001. 2017-07-27 10:08:35.746 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1002. 2017-07-27 10:08:35.747 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1003. 2017-07-27 10:08:35.748 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1004. 2017-07-27 10:08:35.751 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1005. 2017-07-27 10:08:35.753 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1006. 2017-07-27 10:08:35.754 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1007. 2017-07-27 10:08:35.771 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1008. 2017-07-27 10:08:35.773 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1009. 2017-07-27 10:08:35.773 |-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
  1010. 2017-07-27 10:08:35.773 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1011. 2017-07-27 10:08:35.773 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1012. 2017-07-27 10:08:35.784 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1013. 2017-07-27 10:08:35.785 |-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
  1014. 2017-07-27 10:08:35.785 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1015. 2017-07-27 10:08:35.797 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1016. 2017-07-27 10:08:35.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1017. 2017-07-27 10:08:35.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1018. 2017-07-27 10:08:35.801 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1019. 2017-07-27 10:08:35.802 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1020. 2017-07-27 10:08:35.803 |-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
  1021. 2017-07-27 10:08:35.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1022. 2017-07-27 10:08:35.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1023. 2017-07-27 10:08:35.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1024. 2017-07-27 10:08:35.805 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1025. 2017-07-27 10:08:35.805 |-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=?)
  1026. 2017-07-27 10:08:35.806 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1027. 2017-07-27 10:08:35.816 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1028. 2017-07-27 10:08:35.817 |-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=?)
  1029. 2017-07-27 10:08:35.817 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1030. 2017-07-27 10:08:35.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1031. 2017-07-27 10:08:35.831 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1032. 2017-07-27 10:08:35.833 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1033. 2017-07-27 10:08:35.833 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1034. 2017-07-27 10:08:35.833 |-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
  1035. 2017-07-27 10:08:35.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1036. 2017-07-27 10:08:35.834 |-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=?)
  1037. 2017-07-27 10:08:35.836 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1038. 2017-07-27 10:08:35.838 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1039. 2017-07-27 10:08:35.840 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1040. 2017-07-27 10:08:35.843 |-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 parentid = ?
  1041. 2017-07-27 10:08:35.844 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1042. 2017-07-27 10:08:35.844 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1043. 2017-07-27 10:08:35.845 |-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
  1044. 2017-07-27 10:08:35.845 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1045. 2017-07-27 10:08:35.847 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1046. 2017-07-27 10:08:35.849 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1047. 2017-07-27 10:08:35.852 |-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 parentid = ?
  1048. 2017-07-27 10:08:35.852 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1049. 2017-07-27 10:08:35.862 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1050. 2017-07-27 10:08:35.865 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1051. 2017-07-27 10:08:35.865 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1052. 2017-07-27 10:08:35.866 |-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=?)
  1053. 2017-07-27 10:08:35.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1054. 2017-07-27 10:08:35.867 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1055. 2017-07-27 10:08:35.870 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1056. 2017-07-27 10:08:35.871 |-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 parentid = ?
  1057. 2017-07-27 10:08:35.871 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1058. 2017-07-27 10:08:35.876 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1059. 2017-07-27 10:08:35.877 |-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=?)
  1060. 2017-07-27 10:08:35.877 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1061. 2017-07-27 10:08:35.880 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1062. 2017-07-27 10:08:35.882 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  1063. 2017-07-27 10:08:35.883 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1064. 2017-07-27 10:08:35.883 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  1065. 2017-07-27 10:08:35.883 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  1066. 2017-07-27 10:08:35.893 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1067. 2017-07-27 10:08:35.897 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1068. 2017-07-27 10:08:35.899 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1069. 2017-07-27 10:08:35.904 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1070. 2017-07-27 10:08:35.912 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  1071. 2017-07-27 10:08:35.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  1072. 2017-07-27 10:08:35.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  1073. 2017-07-27 10:08:35.916 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1074. 2017-07-27 10:08:35.916 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1075. 2017-07-27 10:08:35.916 |-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 parentid = ?
  1076. 2017-07-27 10:08:35.917 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1077. 2017-07-27 10:08:35.918 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  1078. 2017-07-27 10:08:35.918 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  1079. 2017-07-27 10:08:35.920 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1080. 2017-07-27 10:08:35.923 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1081. 2017-07-27 10:08:35.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  1082. 2017-07-27 10:08:35.928 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1083. 2017-07-27 10:08:35.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1084. 2017-07-27 10:08:35.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  1085. 2017-07-27 10:08:35.947 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  1086. 2017-07-27 10:08:35.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1087. 2017-07-27 10:08:35.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1088. 2017-07-27 10:08:36.018 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  1089. 2017-07-27 10:08:36.019 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1090. 2017-07-27 10:08:36.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  1091. 2017-07-27 10:08:36.052 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  1092. 2017-07-27 10:08:36.053 |-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
  1093. 2017-07-27 10:08:36.055 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1094. 2017-07-27 10:08:36.072 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  1095. 2017-07-27 10:08:36.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1096. 2017-07-27 10:08:36.074 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/06(String)
  1097. 2017-07-27 10:08:36.073 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1098. 2017-07-27 10:08:36.075 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1099. 2017-07-27 10:08:36.084 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1100. 2017-07-27 10:08:36.086 |-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=?)
  1101. 2017-07-27 10:08:36.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1102. 2017-07-27 10:08:36.092 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  1103. 2017-07-27 10:08:36.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1104. 2017-07-27 10:08:36.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1105. 2017-07-27 10:08:36.104 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1106. 2017-07-27 10:08:36.105 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  1107. 2017-07-27 10:08:36.106 |-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 parentid = ?
  1108. 2017-07-27 10:08:36.110 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1109. 2017-07-27 10:08:36.113 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1110. 2017-07-27 10:08:36.119 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1111. 2017-07-27 10:08:36.120 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1112. 2017-07-27 10:08:36.124 |-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 parentid = ?
  1113. 2017-07-27 10:08:36.124 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1114. 2017-07-27 10:08:36.137 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1115. 2017-07-27 10:08:36.153 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1116. 2017-07-27 10:08:36.155 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  1117. 2017-07-27 10:08:36.155 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  1118. 2017-07-27 10:08:36.161 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 190
  1119. 2017-07-27 10:08:36.183 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  1120. 2017-07-27 10:08:36.186 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY tab.mth
  1121. 2017-07-27 10:08:36.187 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1122. 2017-07-27 10:08:36.280 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  1123. 2017-07-27 10:08:37.661 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1124. 2017-07-27 10:08:37.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1125. 2017-07-27 10:08:37.664 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1126. 2017-07-27 10:08:37.694 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1127. 2017-07-27 10:08:37.695 |-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
  1128. 2017-07-27 10:08:37.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1129. 2017-07-27 10:08:37.725 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1130. 2017-07-27 10:08:37.726 |-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=?)
  1131. 2017-07-27 10:08:37.726 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1132. 2017-07-27 10:08:37.797 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1133. 2017-07-27 10:08:37.799 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1134. 2017-07-27 10:08:37.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1135. 2017-07-27 10:08:37.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1136. 2017-07-27 10:08:37.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1137. 2017-07-27 10:08:37.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1138. 2017-07-27 10:08:37.803 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1139. 2017-07-27 10:08:37.805 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1140. 2017-07-27 10:08:37.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1141. 2017-07-27 10:08:37.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1142. 2017-07-27 10:08:37.808 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1143. 2017-07-27 10:08:37.813 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1144. 2017-07-27 10:08:37.811 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1145. 2017-07-27 10:08:37.818 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1146. 2017-07-27 10:08:37.819 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1147. 2017-07-27 10:08:37.820 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1148. 2017-07-27 10:08:37.820 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  1149. 2017-07-27 10:08:37.821 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  1150. 2017-07-27 10:08:37.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1151. 2017-07-27 10:08:37.833 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1152. 2017-07-27 10:08:37.833 |-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
  1153. 2017-07-27 10:08:37.833 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1154. 2017-07-27 10:08:37.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1155. 2017-07-27 10:08:37.840 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1156. 2017-07-27 10:08:37.841 |-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
  1157. 2017-07-27 10:08:37.841 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1158. 2017-07-27 10:08:37.843 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1159. 2017-07-27 10:08:37.847 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1160. 2017-07-27 10:08:37.860 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1161. 2017-07-27 10:08:37.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1162. 2017-07-27 10:08:37.863 |-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=?)
  1163. 2017-07-27 10:08:37.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1164. 2017-07-27 10:08:37.871 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1165. 2017-07-27 10:08:37.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
  1166. 2017-07-27 10:08:37.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1167. 2017-07-27 10:08:37.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1168. 2017-07-27 10:08:37.890 |-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
  1169. 2017-07-27 10:08:37.890 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1170. 2017-07-27 10:08:37.892 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1171. 2017-07-27 10:08:37.893 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1172. 2017-07-27 10:08:37.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1173. 2017-07-27 10:08:37.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1174. 2017-07-27 10:08:37.913 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1175. 2017-07-27 10:08:37.914 |-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
  1176. 2017-07-27 10:08:37.914 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1177. 2017-07-27 10:08:37.919 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  1178. 2017-07-27 10:08:37.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=?)
  1179. 2017-07-27 10:08:37.920 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1180. 2017-07-27 10:08:37.921 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1181. 2017-07-27 10:08:37.922 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1182. 2017-07-27 10:08:37.947 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1183. 2017-07-27 10:08:37.948 |-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=?)
  1184. 2017-07-27 10:08:37.948 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1185. 2017-07-27 10:08:37.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1186. 2017-07-27 10:08:37.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1187. 2017-07-27 10:08:37.980 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1188. 2017-07-27 10:08:37.981 |-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=?)
  1189. 2017-07-27 10:08:37.982 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1190. 2017-07-27 10:08:37.983 |-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=?)
  1191. 2017-07-27 10:08:37.983 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1192. 2017-07-27 10:08:37.983 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1193. 2017-07-27 10:08:37.984 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1194. 2017-07-27 10:08:37.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1195. 2017-07-27 10:08:37.987 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1196. 2017-07-27 10:08:37.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  1197. 2017-07-27 10:08:38.002 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1198. 2017-07-27 10:08:38.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  1199. 2017-07-27 10:08:38.005 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1200. 2017-07-27 10:08:38.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  1201. 2017-07-27 10:08:38.007 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1202. 2017-07-27 10:08:38.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1203. 2017-07-27 10:08:38.024 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  1204. 2017-07-27 10:08:38.025 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  1205. 2017-07-27 10:08:38.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1206. 2017-07-27 10:08:38.043 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1207. 2017-07-27 10:08:38.043 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1208. 2017-07-27 10:08:38.045 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1209. 2017-07-27 10:08:38.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth
  1210. 2017-07-27 10:08:38.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 39(Long)
  1211. 2017-07-27 10:08:38.047 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1212. 2017-07-27 10:08:38.049 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1213. 2017-07-27 10:08:38.049 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1214. 2017-07-27 10:08:38.049 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1215. 2017-07-27 10:08:38.109 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1216. 2017-07-27 10:08:38.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  1217. 2017-07-27 10:08:38.127 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1218. 2017-07-27 10:08:38.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  1219. 2017-07-27 10:08:38.146 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  1220. 2017-07-27 10:08:38.146 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1221. 2017-07-27 10:08:38.147 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  1222. 2017-07-27 10:08:38.148 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1223. 2017-07-27 10:08:38.149 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1224. 2017-07-27 10:08:38.178 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  1225. 2017-07-27 10:08:38.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  1226. 2017-07-27 10:08:38.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  1227. 2017-07-27 10:08:38.200 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1228. 2017-07-27 10:08:38.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
  1229. 2017-07-27 10:08:38.204 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  1230. 2017-07-27 10:08:38.208 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  1231. 2017-07-27 10:08:38.208 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
  1232. 2017-07-27 10:08:38.260 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 3
  1233. 2017-07-27 10:08:38.333 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 10
  1234. 2017-07-27 10:08:38.335 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1235. 2017-07-27 10:08:38.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1236. 2017-07-27 10:08:38.387 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  1237. 2017-07-27 10:08:41.423 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1238. 2017-07-27 10:08:41.425 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1239. 2017-07-27 10:08:41.426 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1240. 2017-07-27 10:08:41.507 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1241. 2017-07-27 10:08:41.508 |-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
  1242. 2017-07-27 10:08:41.509 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1243. 2017-07-27 10:08:41.573 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1244. 2017-07-27 10:08:41.575 |-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=?)
  1245. 2017-07-27 10:08:41.575 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1246. 2017-07-27 10:08:41.660 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1247. 2017-07-27 10:08:41.663 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1248. 2017-07-27 10:08:41.664 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1249. 2017-07-27 10:08:41.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1250. 2017-07-27 10:08:41.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1251. 2017-07-27 10:08:41.729 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  1252. 2017-07-27 10:08:41.757 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1253. 2017-07-27 10:08:41.757 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1254. 2017-07-27 10:08:41.757 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1255. 2017-07-27 10:08:41.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1256. 2017-07-27 10:08:41.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1257. 2017-07-27 10:08:41.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1258. 2017-07-27 10:08:41.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1259. 2017-07-27 10:08:41.759 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1260. 2017-07-27 10:08:41.760 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1261. 2017-07-27 10:08:41.822 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1262. 2017-07-27 10:08:41.822 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1263. 2017-07-27 10:08:41.824 |-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
  1264. 2017-07-27 10:08:41.824 |-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
  1265. 2017-07-27 10:08:41.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1266. 2017-07-27 10:08:41.825 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1267. 2017-07-27 10:08:41.827 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1268. 2017-07-27 10:08:41.828 |-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
  1269. 2017-07-27 10:08:41.829 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1270. 2017-07-27 10:08:41.892 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1271. 2017-07-27 10:08:41.893 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1272. 2017-07-27 10:08:41.893 |-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=?)
  1273. 2017-07-27 10:08:41.894 |-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-07-27 10:08:41.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1275. 2017-07-27 10:08:41.895 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1276. 2017-07-27 10:08:41.897 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1277. 2017-07-27 10:08:41.899 |-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=?)
  1278. 2017-07-27 10:08:41.899 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1279. 2017-07-27 10:08:41.946 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1280. 2017-07-27 10:08:41.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1281. 2017-07-27 10:08:41.950 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1282. 2017-07-27 10:08:41.950 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1283. 2017-07-27 10:08:41.952 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1284. 2017-07-27 10:08:41.952 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1285. 2017-07-27 10:08:41.968 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  1286. 2017-07-27 10:08:41.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1287. 2017-07-27 10:08:41.971 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1288. 2017-07-27 10:08:41.976 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1289. 2017-07-27 10:08:41.978 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1290. 2017-07-27 10:08:41.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  1291. 2017-07-27 10:08:41.988 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  1292. 2017-07-27 10:08:42.033 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  1293. 2017-07-27 10:08:42.041 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  1294. 2017-07-27 10:08:42.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  1295. 2017-07-27 10:08:42.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1296. 2017-07-27 10:08:42.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1297. 2017-07-27 10:09:37.639 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1298. 2017-07-27 10:09:37.642 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1299. 2017-07-27 10:09:37.643 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1300. 2017-07-27 10:09:37.671 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1301. 2017-07-27 10:09:37.673 |-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
  1302. 2017-07-27 10:09:37.673 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1303. 2017-07-27 10:09:37.703 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1304. 2017-07-27 10:09:37.705 |-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=?)
  1305. 2017-07-27 10:09:37.706 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1306. 2017-07-27 10:09:37.733 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1307. 2017-07-27 10:09:37.737 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1308. 2017-07-27 10:09:37.739 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1309. 2017-07-27 10:09:37.745 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1310. 2017-07-27 10:09:37.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 40(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1311. 2017-07-27 10:09:37.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 29
  1312. 2017-07-27 10:09:37.813 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1313. 2017-07-27 10:09:37.814 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1314. 2017-07-27 10:09:37.814 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1315. 2017-07-27 10:09:37.815 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1316. 2017-07-27 10:09:37.815 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1317. 2017-07-27 10:09:37.816 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1318. 2017-07-27 10:09:37.817 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1319. 2017-07-27 10:09:37.818 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1320. 2017-07-27 10:09:37.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1321. 2017-07-27 10:09:37.842 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1322. 2017-07-27 10:09:37.843 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1323. 2017-07-27 10:09:37.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
  1324. 2017-07-27 10:09:37.843 |-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
  1325. 2017-07-27 10:09:37.843 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1326. 2017-07-27 10:09:37.844 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1327. 2017-07-27 10:09:37.844 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1328. 2017-07-27 10:09:37.845 |-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
  1329. 2017-07-27 10:09:37.845 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1330. 2017-07-27 10:09:37.873 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1331. 2017-07-27 10:09:37.873 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1332. 2017-07-27 10:09:37.873 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1333. 2017-07-27 10:09:37.874 |-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=?)
  1334. 2017-07-27 10:09:37.874 |-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=?)
  1335. 2017-07-27 10:09:37.874 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1336. 2017-07-27 10:09:37.874 |-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=?)
  1337. 2017-07-27 10:09:37.874 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1338. 2017-07-27 10:09:37.875 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1339. 2017-07-27 10:09:37.901 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1340. 2017-07-27 10:09:37.901 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1341. 2017-07-27 10:09:37.903 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1342. 2017-07-27 10:09:37.903 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1343. 2017-07-27 10:09:37.903 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1344. 2017-07-27 10:09:37.904 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1345. 2017-07-27 10:09:37.905 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1346. 2017-07-27 10:09:37.907 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1347. 2017-07-27 10:09:37.908 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  1348. 2017-07-27 10:09:37.908 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2490(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1349. 2017-07-27 10:09:37.908 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1350. 2017-07-27 10:09:37.910 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  1351. 2017-07-27 10:09:37.913 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2490(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2490(Long)
  1352. 2017-07-27 10:09:37.935 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  1353. 2017-07-27 10:09:37.943 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  1354. 2017-07-27 10:09:38.049 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  1355. 2017-07-27 10:09:38.050 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2490(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1356. 2017-07-27 10:09:38.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1357. 2017-07-27 10:09:54.471 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1358. 2017-07-27 10:09:54.472 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1359. 2017-07-27 10:09:54.471 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1360. 2017-07-27 10:09:54.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1361. 2017-07-27 10:09:54.473 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1362. 2017-07-27 10:09:54.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1363. 2017-07-27 10:09:54.473 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1364. 2017-07-27 10:09:54.476 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1365. 2017-07-27 10:09:54.476 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1366. 2017-07-27 10:09:54.500 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1367. 2017-07-27 10:09:54.500 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1368. 2017-07-27 10:09:54.501 |-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
  1369. 2017-07-27 10:09:54.501 |-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
  1370. 2017-07-27 10:09:54.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1371. 2017-07-27 10:09:54.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1372. 2017-07-27 10:09:54.504 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1373. 2017-07-27 10:09:54.505 |-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
  1374. 2017-07-27 10:09:54.505 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1375. 2017-07-27 10:09:54.554 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1376. 2017-07-27 10:09:54.554 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1377. 2017-07-27 10:09:54.555 |-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=?)
  1378. 2017-07-27 10:09:54.555 |-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=?)
  1379. 2017-07-27 10:09:54.555 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1380. 2017-07-27 10:09:54.555 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1381. 2017-07-27 10:09:54.565 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1382. 2017-07-27 10:09:54.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=?)
  1383. 2017-07-27 10:09:54.566 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1384. 2017-07-27 10:09:54.581 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1385. 2017-07-27 10:09:54.582 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1386. 2017-07-27 10:09:54.584 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1387. 2017-07-27 10:09:54.585 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1388. 2017-07-27 10:09:54.586 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1389. 2017-07-27 10:09:54.587 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1390. 2017-07-27 10:09:54.591 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  1391. 2017-07-27 10:09:54.592 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2514(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2514(Long)
  1392. 2017-07-27 10:09:54.592 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1393. 2017-07-27 10:09:54.600 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1394. 2017-07-27 10:09:54.602 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1395. 2017-07-27 10:09:54.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  1396. 2017-07-27 10:09:54.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2514(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1397. 2017-07-27 10:09:54.621 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  1398. 2017-07-27 10:09:54.637 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 1
  1399. 2017-07-27 10:09:54.698 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  1400. 2017-07-27 10:09:54.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2514(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1401. 2017-07-27 10:09:54.779 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1402. 2017-07-27 10:10:56.161 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1403. 2017-07-27 10:10:56.161 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1404. 2017-07-27 10:10:56.161 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1405. 2017-07-27 10:10:56.192 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1406. 2017-07-27 10:10:56.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1407. 2017-07-27 10:10:56.193 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1408. 2017-07-27 10:10:56.193 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1409. 2017-07-27 10:10:56.194 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1410. 2017-07-27 10:10:56.195 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1411. 2017-07-27 10:10:56.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1412. 2017-07-27 10:10:56.228 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1413. 2017-07-27 10:10:56.230 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1414. 2017-07-27 10:10:56.266 |-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
  1415. 2017-07-27 10:10:56.266 |-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
  1416. 2017-07-27 10:10:56.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1417. 2017-07-27 10:10:56.267 |-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
  1418. 2017-07-27 10:10:56.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1419. 2017-07-27 10:10:56.268 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1420. 2017-07-27 10:10:56.309 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1421. 2017-07-27 10:10:56.309 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1422. 2017-07-27 10:10:56.309 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1423. 2017-07-27 10:10:56.310 |-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=?)
  1424. 2017-07-27 10:10:56.311 |-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=?)
  1425. 2017-07-27 10:10:56.311 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1426. 2017-07-27 10:10:56.311 |-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=?)
  1427. 2017-07-27 10:10:56.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1428. 2017-07-27 10:10:56.312 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1429. 2017-07-27 10:10:56.358 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1430. 2017-07-27 10:10:56.359 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1431. 2017-07-27 10:10:56.359 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1432. 2017-07-27 10:10:56.362 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1433. 2017-07-27 10:10:56.363 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1434. 2017-07-27 10:10:56.363 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1435. 2017-07-27 10:10:56.364 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1436. 2017-07-27 10:10:56.365 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1437. 2017-07-27 10:10:56.367 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1438. 2017-07-27 10:10:56.373 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  1439. 2017-07-27 10:10:56.374 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2514(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1440. 2017-07-27 10:10:56.375 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  1441. 2017-07-27 10:10:56.377 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2514(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2514(Long)
  1442. 2017-07-27 10:10:56.421 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 1
  1443. 2017-07-27 10:10:56.425 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  1444. 2017-07-27 10:10:56.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  1445. 2017-07-27 10:10:56.467 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2514(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1446. 2017-07-27 10:10:56.559 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1447. 2017-07-27 10:10:58.028 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1448. 2017-07-27 10:10:58.029 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1449. 2017-07-27 10:10:58.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1450. 2017-07-27 10:10:58.031 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1451. 2017-07-27 10:10:58.032 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1452. 2017-07-27 10:10:58.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1453. 2017-07-27 10:10:58.032 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1454. 2017-07-27 10:10:58.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1455. 2017-07-27 10:10:58.036 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1456. 2017-07-27 10:10:58.081 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1457. 2017-07-27 10:10:58.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1458. 2017-07-27 10:10:58.082 |-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
  1459. 2017-07-27 10:10:58.082 |-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
  1460. 2017-07-27 10:10:58.082 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1461. 2017-07-27 10:10:58.083 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1462. 2017-07-27 10:10:58.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1463. 2017-07-27 10:10:58.084 |-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
  1464. 2017-07-27 10:10:58.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1465. 2017-07-27 10:10:58.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1466. 2017-07-27 10:10:58.126 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1467. 2017-07-27 10:10:58.126 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1468. 2017-07-27 10:10:58.127 |-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=?)
  1469. 2017-07-27 10:10:58.127 |-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=?)
  1470. 2017-07-27 10:10:58.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1471. 2017-07-27 10:10:58.128 |-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=?)
  1472. 2017-07-27 10:10:58.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1473. 2017-07-27 10:10:58.129 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1474. 2017-07-27 10:10:58.155 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1475. 2017-07-27 10:10:58.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1476. 2017-07-27 10:10:58.155 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1477. 2017-07-27 10:10:58.161 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1478. 2017-07-27 10:10:58.162 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1479. 2017-07-27 10:10:58.163 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1480. 2017-07-27 10:10:58.164 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1481. 2017-07-27 10:10:58.176 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1482. 2017-07-27 10:10:58.179 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1483. 2017-07-27 10:10:58.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  1484. 2017-07-27 10:10:58.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2514(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2514(Long)
  1485. 2017-07-27 10:10:58.187 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  1486. 2017-07-27 10:10:58.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2514(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1487. 2017-07-27 10:10:58.223 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  1488. 2017-07-27 10:10:58.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 1
  1489. 2017-07-27 10:10:58.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  1490. 2017-07-27 10:10:58.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2514(Long), 2017-05-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1491. 2017-07-27 10:10:58.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1492. 2017-07-27 10:11:18.810 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1493. 2017-07-27 10:11:18.810 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1494. 2017-07-27 10:11:18.812 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1495. 2017-07-27 10:11:18.812 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1496. 2017-07-27 10:11:18.812 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1497. 2017-07-27 10:11:18.812 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1498. 2017-07-27 10:11:18.860 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1499. 2017-07-27 10:11:18.861 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1500. 2017-07-27 10:11:18.862 |-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
  1501. 2017-07-27 10:11:18.862 |-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
  1502. 2017-07-27 10:11:18.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1503. 2017-07-27 10:11:18.862 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1504. 2017-07-27 10:11:18.914 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1505. 2017-07-27 10:11:18.915 |-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=?)
  1506. 2017-07-27 10:11:18.916 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1507. 2017-07-27 10:11:18.954 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1508. 2017-07-27 10:11:18.957 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1509. 2017-07-27 10:11:18.958 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1510. 2017-07-27 10:11:19.126 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1511. 2017-07-27 10:11:19.128 |-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=?)
  1512. 2017-07-27 10:11:19.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1513. 2017-07-27 10:11:19.165 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1514. 2017-07-27 10:11:19.167 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1515. 2017-07-27 10:11:19.169 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1516. 2017-07-27 10:11:19.172 |-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
  1517. 2017-07-27 10:11:19.173 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  1518. 2017-07-27 10:11:19.219 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  1519. 2017-07-27 10:11:19.220 |-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
  1520. 2017-07-27 10:11:19.220 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1521. 2017-07-27 10:11:19.265 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1522. 2017-07-27 10:11:19.316 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1523. 2017-07-27 10:11:19.316 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1524. 2017-07-27 10:11:19.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1525. 2017-07-27 10:11:19.317 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1526. 2017-07-27 10:11:19.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1527. 2017-07-27 10:11:19.317 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1528. 2017-07-27 10:11:19.588 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1529. 2017-07-27 10:11:19.589 |-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
  1530. 2017-07-27 10:11:19.590 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1531. 2017-07-27 10:11:19.640 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1532. 2017-07-27 10:11:19.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=?)
  1533. 2017-07-27 10:11:19.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1534. 2017-07-27 10:11:19.691 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1535. 2017-07-27 10:11:19.694 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1536. 2017-07-27 10:11:19.697 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1537. 2017-07-27 10:11:19.699 |-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
  1538. 2017-07-27 10:11:19.700 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1539. 2017-07-27 10:11:19.747 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1540. 2017-07-27 10:11:19.758 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1541. 2017-07-27 10:11:19.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1542. 2017-07-27 10:11:19.760 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1543. 2017-07-27 10:11:19.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1544. 2017-07-27 10:11:19.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1545. 2017-07-27 10:11:19.805 |-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
  1546. 2017-07-27 10:11:19.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1547. 2017-07-27 10:11:19.805 |-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
  1548. 2017-07-27 10:11:19.806 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1549. 2017-07-27 10:11:19.857 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1550. 2017-07-27 10:11:19.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=?)
  1551. 2017-07-27 10:11:19.858 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1552. 2017-07-27 10:11:19.911 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1553. 2017-07-27 10:11:19.913 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1554. 2017-07-27 10:11:19.915 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1555. 2017-07-27 10:11:19.916 |-DEBUG [http-nio-8089-exec-7] 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
  1556. 2017-07-27 10:11:19.917 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1557. 2017-07-27 10:11:19.963 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1558. 2017-07-27 10:11:20.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1559. 2017-07-27 10:11:20.078 |-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=?)
  1560. 2017-07-27 10:11:20.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1561. 2017-07-27 10:11:20.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1562. 2017-07-27 10:11:20.124 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1563. 2017-07-27 10:11:20.127 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1564. 2017-07-27 10:11:20.135 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1565. 2017-07-27 10:11:20.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1566. 2017-07-27 10:11:20.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  1567. 2017-07-27 10:11:20.313 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1568. 2017-07-27 10:11:20.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1569. 2017-07-27 10:11:20.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1570. 2017-07-27 10:11:20.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1571. 2017-07-27 10:11:20.364 |-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
  1572. 2017-07-27 10:11:20.364 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1573. 2017-07-27 10:11:20.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1574. 2017-07-27 10:11:20.415 |-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=?)
  1575. 2017-07-27 10:11:20.415 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1576. 2017-07-27 10:11:20.460 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1577. 2017-07-27 10:11:20.462 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1578. 2017-07-27 10:11:20.463 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1579. 2017-07-27 10:11:20.467 |-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=?
  1580. 2017-07-27 10:11:20.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1581. 2017-07-27 10:11:20.510 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  1582. 2017-07-27 10:11:20.714 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1583. 2017-07-27 10:11:20.716 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1584. 2017-07-27 10:11:20.716 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1585. 2017-07-27 10:11:20.761 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1586. 2017-07-27 10:11:20.763 |-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
  1587. 2017-07-27 10:11:20.763 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1588. 2017-07-27 10:11:20.806 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1589. 2017-07-27 10:11:20.806 |-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=?)
  1590. 2017-07-27 10:11:20.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1591. 2017-07-27 10:11:20.850 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1592. 2017-07-27 10:11:20.853 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1593. 2017-07-27 10:11:20.854 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1594. 2017-07-27 10:11:20.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1595. 2017-07-27 10:11:20.859 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1596. 2017-07-27 10:11:20.904 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  1597. 2017-07-27 10:11:20.937 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1598. 2017-07-27 10:11:20.938 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1599. 2017-07-27 10:11:20.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1600. 2017-07-27 10:11:20.940 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1601. 2017-07-27 10:11:20.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1602. 2017-07-27 10:11:20.941 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1603. 2017-07-27 10:11:20.941 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1604. 2017-07-27 10:11:20.942 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1605. 2017-07-27 10:11:20.943 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1606. 2017-07-27 10:11:20.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1607. 2017-07-27 10:11:20.983 |-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
  1608. 2017-07-27 10:11:20.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1609. 2017-07-27 10:11:20.983 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1610. 2017-07-27 10:11:20.984 |-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
  1611. 2017-07-27 10:11:20.984 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1612. 2017-07-27 10:11:20.984 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1613. 2017-07-27 10:11:20.984 |-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
  1614. 2017-07-27 10:11:20.985 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1615. 2017-07-27 10:11:21.030 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1616. 2017-07-27 10:11:21.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1617. 2017-07-27 10:11:21.031 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1618. 2017-07-27 10:11:21.031 |-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=?)
  1619. 2017-07-27 10:11:21.031 |-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=?)
  1620. 2017-07-27 10:11:21.031 |-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=?)
  1621. 2017-07-27 10:11:21.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1622. 2017-07-27 10:11:21.032 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1623. 2017-07-27 10:11:21.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1624. 2017-07-27 10:11:21.074 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1625. 2017-07-27 10:11:21.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1626. 2017-07-27 10:11:21.074 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1627. 2017-07-27 10:11:21.076 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1628. 2017-07-27 10:11:21.076 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1629. 2017-07-27 10:11:21.078 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1630. 2017-07-27 10:11:21.078 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1631. 2017-07-27 10:11:21.076 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1632. 2017-07-27 10:11:21.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  1633. 2017-07-27 10:11:21.082 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1634. 2017-07-27 10:11:21.081 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1635. 2017-07-27 10:11:21.086 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  1636. 2017-07-27 10:11:21.087 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  1637. 2017-07-27 10:11:21.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  1638. 2017-07-27 10:11:21.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  1639. 2017-07-27 10:11:21.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  1640. 2017-07-27 10:11:21.183 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1641. 2017-07-27 10:11:21.283 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1642. 2017-07-27 10:11:23.864 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1643. 2017-07-27 10:11:23.865 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1644. 2017-07-27 10:11:23.866 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1645. 2017-07-27 10:11:23.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1646. 2017-07-27 10:11:23.914 |-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
  1647. 2017-07-27 10:11:23.914 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1648. 2017-07-27 10:11:23.946 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1649. 2017-07-27 10:11:23.947 |-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=?)
  1650. 2017-07-27 10:11:23.948 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1651. 2017-07-27 10:11:23.974 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1652. 2017-07-27 10:11:23.978 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1653. 2017-07-27 10:11:23.980 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1654. 2017-07-27 10:11:23.983 |-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
  1655. 2017-07-27 10:11:23.984 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  1656. 2017-07-27 10:11:24.016 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  1657. 2017-07-27 10:11:24.027 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1658. 2017-07-27 10:11:24.029 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1659. 2017-07-27 10:11:24.029 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1660. 2017-07-27 10:11:24.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1661. 2017-07-27 10:11:24.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
  1662. 2017-07-27 10:11:24.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1663. 2017-07-27 10:11:24.347 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1664. 2017-07-27 10:11:24.348 |-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=?)
  1665. 2017-07-27 10:11:24.349 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1666. 2017-07-27 10:11:24.394 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1667. 2017-07-27 10:11:24.398 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1668. 2017-07-27 10:11:24.399 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1669. 2017-07-27 10:11:24.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1670. 2017-07-27 10:11:24.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1671. 2017-07-27 10:11:24.726 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  1672. 2017-07-27 10:11:24.760 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1673. 2017-07-27 10:11:24.761 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1674. 2017-07-27 10:11:24.762 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1675. 2017-07-27 10:11:24.798 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1676. 2017-07-27 10:11:24.799 |-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
  1677. 2017-07-27 10:11:24.799 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1678. 2017-07-27 10:11:24.840 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1679. 2017-07-27 10:11:24.841 |-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=?)
  1680. 2017-07-27 10:11:24.841 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1681. 2017-07-27 10:11:24.876 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1682. 2017-07-27 10:11:24.880 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1683. 2017-07-27 10:11:24.882 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1684. 2017-07-27 10:11:24.887 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1685. 2017-07-27 10:11:24.888 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1686. 2017-07-27 10:11:24.983 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  1687. 2017-07-27 10:11:24.985 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  1688. 2017-07-27 10:11:24.985 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1689. 2017-07-27 10:11:25.166 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1266
  1690. 2017-07-27 10:11:26.507 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1691. 2017-07-27 10:11:26.510 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1692. 2017-07-27 10:11:26.510 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1693. 2017-07-27 10:11:26.557 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1694. 2017-07-27 10:11:26.558 |-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
  1695. 2017-07-27 10:11:26.558 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1696. 2017-07-27 10:11:26.611 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1697. 2017-07-27 10:11:26.612 |-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=?)
  1698. 2017-07-27 10:11:26.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1699. 2017-07-27 10:11:26.659 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1700. 2017-07-27 10:11:26.663 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1701. 2017-07-27 10:11:26.665 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1702. 2017-07-27 10:11:26.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1703. 2017-07-27 10:11:26.672 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1704. 2017-07-27 10:11:26.722 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 308
  1705. 2017-07-27 10:11:26.725 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1706. 2017-07-27 10:11:26.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1707. 2017-07-27 10:11:26.781 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 533
  1708. 2017-07-27 10:11:26.784 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1709. 2017-07-27 10:11:26.785 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1710. 2017-07-27 10:11:26.877 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  1711. 2017-07-27 10:11:26.880 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  1712. 2017-07-27 10:11:26.881 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1713. 2017-07-27 10:11:26.916 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 0
  1714. 2017-07-27 10:11:26.919 |-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
  1715. 2017-07-27 10:11:26.920 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1716. 2017-07-27 10:11:26.953 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1717. 2017-07-27 10:11:33.875 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1718. 2017-07-27 10:11:33.877 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1719. 2017-07-27 10:11:33.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1720. 2017-07-27 10:11:33.906 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1721. 2017-07-27 10:11:33.907 |-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-07-27 10:11:33.907 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1723. 2017-07-27 10:11:33.940 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1724. 2017-07-27 10:11:33.941 |-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-07-27 10:11:33.942 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1726. 2017-07-27 10:11:33.968 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1727. 2017-07-27 10:11:33.972 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1728. 2017-07-27 10:11:33.974 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1729. 2017-07-27 10:11:33.979 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1730. 2017-07-27 10:11:33.981 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1731. 2017-07-27 10:11:34.015 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 324
  1732. 2017-07-27 10:11:34.019 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1733. 2017-07-27 10:11:34.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1734. 2017-07-27 10:11:34.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 533
  1735. 2017-07-27 10:11:34.070 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1736. 2017-07-27 10:11:34.071 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1737. 2017-07-27 10:11:34.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  1738. 2017-07-27 10:11:34.168 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  1739. 2017-07-27 10:11:34.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1740. 2017-07-27 10:11:34.204 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 0
  1741. 2017-07-27 10:11:34.206 |-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
  1742. 2017-07-27 10:11:34.206 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1743. 2017-07-27 10:11:34.239 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1744. 2017-07-27 10:12:17.397 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1745. 2017-07-27 10:12:17.399 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1746. 2017-07-27 10:12:17.399 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1747. 2017-07-27 10:12:17.426 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1748. 2017-07-27 10:12:17.427 |-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
  1749. 2017-07-27 10:12:17.428 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1750. 2017-07-27 10:12:17.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1751. 2017-07-27 10:12:17.459 |-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=?)
  1752. 2017-07-27 10:12:17.459 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1753. 2017-07-27 10:12:17.485 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1754. 2017-07-27 10:12:17.489 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1755. 2017-07-27 10:12:17.491 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1756. 2017-07-27 10:12:17.494 |-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 parentid = ?
  1757. 2017-07-27 10:12:17.495 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1758. 2017-07-27 10:12:17.521 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1759. 2017-07-27 10:12:18.836 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1760. 2017-07-27 10:12:18.839 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1761. 2017-07-27 10:12:18.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1762. 2017-07-27 10:12:18.868 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1763. 2017-07-27 10:12:18.869 |-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
  1764. 2017-07-27 10:12:18.869 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1765. 2017-07-27 10:12:18.898 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1766. 2017-07-27 10:12:18.899 |-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=?)
  1767. 2017-07-27 10:12:18.900 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1768. 2017-07-27 10:12:18.926 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1769. 2017-07-27 10:12:18.928 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1770. 2017-07-27 10:12:18.930 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1771. 2017-07-27 10:12:18.933 |-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 parentid = ?
  1772. 2017-07-27 10:12:18.934 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 31(Integer)
  1773. 2017-07-27 10:12:18.959 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 6
  1774. 2017-07-27 10:12:21.916 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1775. 2017-07-27 10:12:21.918 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1776. 2017-07-27 10:12:21.919 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1777. 2017-07-27 10:12:21.969 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1778. 2017-07-27 10:12:21.970 |-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
  1779. 2017-07-27 10:12:21.970 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1780. 2017-07-27 10:12:22.007 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1781. 2017-07-27 10:12:22.009 |-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=?)
  1782. 2017-07-27 10:12:22.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1783. 2017-07-27 10:12:22.046 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1784. 2017-07-27 10:12:22.049 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1785. 2017-07-27 10:12:22.051 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1786. 2017-07-27 10:12:22.057 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? AND t.checked_dept =? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1787. 2017-07-27 10:12:22.058 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 40(Long)
  1788. 2017-07-27 10:12:22.105 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 17
  1789. 2017-07-27 10:12:22.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept =? GROUP BY t.checked_person
  1790. 2017-07-27 10:12:22.109 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 40(Long)
  1791. 2017-07-27 10:12:22.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 24
  1792. 2017-07-27 10:12:22.175 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1793. 2017-07-27 10:12:22.175 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 40(Integer), 31(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1794. 2017-07-27 10:12:22.225 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 29
  1795. 2017-07-27 10:12:22.226 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  1796. 2017-07-27 10:12:22.227 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1797. 2017-07-27 10:12:22.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 0
  1798. 2017-07-27 10:12:22.301 |-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
  1799. 2017-07-27 10:12:22.301 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1800. 2017-07-27 10:12:22.337 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1801. 2017-07-27 10:13:00.449 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1802. 2017-07-27 10:13:00.452 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1803. 2017-07-27 10:13:00.453 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1804. 2017-07-27 10:13:00.459 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1805. 2017-07-27 10:13:00.461 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1806. 2017-07-27 10:13:00.466 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1807. 2017-07-27 10:13:00.467 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1808. 2017-07-27 10:13:00.471 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1809. 2017-07-27 10:13:00.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1810. 2017-07-27 10:13:00.481 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1811. 2017-07-27 10:13:00.481 |-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
  1812. 2017-07-27 10:13:00.481 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1813. 2017-07-27 10:13:00.481 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1814. 2017-07-27 10:13:00.487 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1815. 2017-07-27 10:13:00.488 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1816. 2017-07-27 10:13:00.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1817. 2017-07-27 10:13:00.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1818. 2017-07-27 10:13:00.508 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1819. 2017-07-27 10:13:00.511 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1820. 2017-07-27 10:13:00.512 |-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=?)
  1821. 2017-07-27 10:13:00.512 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1822. 2017-07-27 10:13:00.513 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1823. 2017-07-27 10:13:00.515 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1824. 2017-07-27 10:13:00.533 |-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
  1825. 2017-07-27 10:13:00.534 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1826. 2017-07-27 10:13:00.538 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1827. 2017-07-27 10:13:00.539 |-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
  1828. 2017-07-27 10:13:00.539 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1829. 2017-07-27 10:13:00.540 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1830. 2017-07-27 10:13:00.541 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1831. 2017-07-27 10:13:00.543 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1832. 2017-07-27 10:13:00.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1833. 2017-07-27 10:13:00.565 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1834. 2017-07-27 10:13:00.565 |-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=?)
  1835. 2017-07-27 10:13:00.566 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1836. 2017-07-27 10:13:00.568 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1837. 2017-07-27 10:13:00.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=?)
  1838. 2017-07-27 10:13:00.569 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1839. 2017-07-27 10:13:00.572 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1840. 2017-07-27 10:13:00.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  1841. 2017-07-27 10:13:00.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1842. 2017-07-27 10:13:00.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1843. 2017-07-27 10:13:00.594 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1844. 2017-07-27 10:13:00.595 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1845. 2017-07-27 10:13:00.596 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1846. 2017-07-27 10:13:00.597 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1847. 2017-07-27 10:13:00.598 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1848. 2017-07-27 10:13:00.599 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1849. 2017-07-27 10:13:00.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  1850. 2017-07-27 10:13:00.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  1851. 2017-07-27 10:13:00.603 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1852. 2017-07-27 10:13:00.651 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  1853. 2017-07-27 10:13:00.668 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  1854. 2017-07-27 10:13:00.709 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  1855. 2017-07-27 10:13:00.711 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1856. 2017-07-27 10:13:00.711 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1857. 2017-07-27 10:13:00.742 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1858. 2017-07-27 10:13:01.470 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1859. 2017-07-27 10:13:01.471 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1860. 2017-07-27 10:13:01.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1861. 2017-07-27 10:13:01.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1862. 2017-07-27 10:13:01.516 |-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
  1863. 2017-07-27 10:13:01.517 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1864. 2017-07-27 10:13:01.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1865. 2017-07-27 10:13:01.524 |-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
  1866. 2017-07-27 10:13:01.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1867. 2017-07-27 10:13:01.526 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1868. 2017-07-27 10:13:01.526 |-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
  1869. 2017-07-27 10:13:01.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1870. 2017-07-27 10:13:01.584 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1871. 2017-07-27 10:13:01.585 |-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=?)
  1872. 2017-07-27 10:13:01.586 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1873. 2017-07-27 10:13:01.594 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1874. 2017-07-27 10:13:01.595 |-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=?)
  1875. 2017-07-27 10:13:01.595 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1876. 2017-07-27 10:13:01.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1877. 2017-07-27 10:13:01.597 |-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=?)
  1878. 2017-07-27 10:13:01.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1879. 2017-07-27 10:13:01.613 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1880. 2017-07-27 10:13:01.616 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1881. 2017-07-27 10:13:01.617 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1882. 2017-07-27 10:13:01.619 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1883. 2017-07-27 10:13:01.619 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1884. 2017-07-27 10:13:01.621 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1885. 2017-07-27 10:13:01.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1886. 2017-07-27 10:13:01.624 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1887. 2017-07-27 10:13:01.625 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1888. 2017-07-27 10:13:01.625 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1889. 2017-07-27 10:13:01.626 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1890. 2017-07-27 10:13:01.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1891. 2017-07-27 10:13:01.628 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  1892. 2017-07-27 10:13:01.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1893. 2017-07-27 10:13:01.628 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1894. 2017-07-27 10:13:01.647 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1895. 2017-07-27 10:13:01.649 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1
  1896. 2017-07-27 10:13:01.650 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1897. 2017-07-27 10:13:01.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1898. 2017-07-27 10:13:01.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1899. 2017-07-27 10:13:01.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  1900. 2017-07-27 10:13:01.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  1901. 2017-07-27 10:13:01.714 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  1902. 2017-07-27 10:13:01.714 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/06(String)
  1903. 2017-07-27 10:13:01.736 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  1904. 2017-07-27 10:13:01.737 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1905. 2017-07-27 10:13:01.738 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1906. 2017-07-27 10:13:01.760 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 220
  1907. 2017-07-27 10:13:01.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  1908. 2017-07-27 10:13:01.806 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1909. 2017-07-27 10:13:01.809 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1910. 2017-07-27 10:13:01.810 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1911. 2017-07-27 10:13:01.879 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1912. 2017-07-27 10:13:15.867 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1913. 2017-07-27 10:13:15.875 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1914. 2017-07-27 10:13:15.875 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1915. 2017-07-27 10:13:15.885 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1916. 2017-07-27 10:13:15.888 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1917. 2017-07-27 10:13:15.889 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1918. 2017-07-27 10:13:15.890 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1919. 2017-07-27 10:13:15.891 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1920. 2017-07-27 10:13:15.892 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1921. 2017-07-27 10:13:15.892 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1922. 2017-07-27 10:13:15.892 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1923. 2017-07-27 10:13:15.893 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1924. 2017-07-27 10:13:15.896 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1925. 2017-07-27 10:13:15.902 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1926. 2017-07-27 10:13:15.903 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1927. 2017-07-27 10:13:15.905 |-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
  1928. 2017-07-27 10:13:15.906 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1929. 2017-07-27 10:13:15.905 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1930. 2017-07-27 10:13:15.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1931. 2017-07-27 10:13:15.916 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1932. 2017-07-27 10:13:15.917 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  1933. 2017-07-27 10:13:15.917 |-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
  1934. 2017-07-27 10:13:15.918 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1935. 2017-07-27 10:13:15.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1936. 2017-07-27 10:13:15.918 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1937. 2017-07-27 10:13:15.920 |-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
  1938. 2017-07-27 10:13:15.920 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1939. 2017-07-27 10:13:15.919 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1940. 2017-07-27 10:13:15.922 |-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
  1941. 2017-07-27 10:13:15.923 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1942. 2017-07-27 10:13:15.936 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1943. 2017-07-27 10:13:15.937 |-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=?)
  1944. 2017-07-27 10:13:15.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1945. 2017-07-27 10:13:15.939 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1946. 2017-07-27 10:13:15.947 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1947. 2017-07-27 10:13:15.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1948. 2017-07-27 10:13:15.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=?)
  1949. 2017-07-27 10:13:15.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1950. 2017-07-27 10:13:15.952 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1951. 2017-07-27 10:13:15.952 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1952. 2017-07-27 10:13:15.953 |-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=?)
  1953. 2017-07-27 10:13:15.953 |-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=?)
  1954. 2017-07-27 10:13:15.953 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1955. 2017-07-27 10:13:15.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1956. 2017-07-27 10:13:15.964 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1957. 2017-07-27 10:13:15.968 |-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
  1958. 2017-07-27 10:13:15.969 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1959. 2017-07-27 10:13:15.970 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1960. 2017-07-27 10:13:15.972 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1961. 2017-07-27 10:13:15.974 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1962. 2017-07-27 10:13:15.975 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1963. 2017-07-27 10:13:15.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1964. 2017-07-27 10:13:15.979 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1965. 2017-07-27 10:13:15.981 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1966. 2017-07-27 10:13:15.984 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1967. 2017-07-27 10:13:15.985 |-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
  1968. 2017-07-27 10:13:15.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1969. 2017-07-27 10:13:15.985 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1970. 2017-07-27 10:13:15.985 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1971. 2017-07-27 10:13:15.987 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1972. 2017-07-27 10:13:15.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  1973. 2017-07-27 10:13:15.990 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1974. 2017-07-27 10:13:15.991 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  1975. 2017-07-27 10:13:15.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1976. 2017-07-27 10:13:15.993 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1977. 2017-07-27 10:13:15.995 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1978. 2017-07-27 10:13:15.997 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1979. 2017-07-27 10:13:15.998 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  1980. 2017-07-27 10:13:15.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1981. 2017-07-27 10:13:16.000 |-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=?)
  1982. 2017-07-27 10:13:16.000 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1983. 2017-07-27 10:13:16.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1984. 2017-07-27 10:13:16.015 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  1985. 2017-07-27 10:13:16.015 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  1986. 2017-07-27 10:13:16.016 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  1987. 2017-07-27 10:13:16.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  1988. 2017-07-27 10:13:16.027 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1989. 2017-07-27 10:13:16.030 |-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=?)
  1990. 2017-07-27 10:13:16.030 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1991. 2017-07-27 10:13:16.031 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1992. 2017-07-27 10:13:16.032 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1993. 2017-07-27 10:13:16.057 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1994. 2017-07-27 10:13:16.057 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1
  1995. 2017-07-27 10:13:16.058 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  1996. 2017-07-27 10:13:16.060 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1997. 2017-07-27 10:13:16.062 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1998. 2017-07-27 10:13:16.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  1999. 2017-07-27 10:13:16.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2000. 2017-07-27 10:13:16.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2001. 2017-07-27 10:13:16.102 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  2002. 2017-07-27 10:13:16.103 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2003. 2017-07-27 10:13:16.103 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2004. 2017-07-27 10:13:16.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2005. 2017-07-27 10:13:16.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  2006. 2017-07-27 10:13:16.124 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  2007. 2017-07-27 10:13:16.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2008. 2017-07-27 10:13:16.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2009. 2017-07-27 10:13:16.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  2010. 2017-07-27 10:13:16.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2011. 2017-07-27 10:13:16.131 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2012. 2017-07-27 10:13:16.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  2013. 2017-07-27 10:13:16.157 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2014. 2017-07-27 10:13:16.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  2015. 2017-07-27 10:13:16.160 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2016. 2017-07-27 10:13:16.167 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  2017. 2017-07-27 10:13:16.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  2018. 2017-07-27 10:13:16.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2019. 2017-07-27 10:13:16.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  2020. 2017-07-27 10:13:16.216 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 220
  2021. 2017-07-27 10:13:16.219 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/06(String)
  2022. 2017-07-27 10:13:16.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  2023. 2017-07-27 10:13:52.415 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2024. 2017-07-27 10:13:52.416 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2025. 2017-07-27 10:13:52.416 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2026. 2017-07-27 10:13:52.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2027. 2017-07-27 10:13:52.420 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2028. 2017-07-27 10:13:52.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2029. 2017-07-27 10:13:52.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2030. 2017-07-27 10:13:52.422 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2031. 2017-07-27 10:13:52.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2032. 2017-07-27 10:13:52.424 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2033. 2017-07-27 10:13:52.426 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2034. 2017-07-27 10:13:52.427 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2035. 2017-07-27 10:13:52.427 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2036. 2017-07-27 10:13:52.427 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2037. 2017-07-27 10:13:52.427 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2038. 2017-07-27 10:13:52.428 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2039. 2017-07-27 10:13:52.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2040. 2017-07-27 10:13:52.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2041. 2017-07-27 10:13:52.518 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2042. 2017-07-27 10:13:52.519 |-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
  2043. 2017-07-27 10:13:52.519 |-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
  2044. 2017-07-27 10:13:52.519 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2045. 2017-07-27 10:13:52.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2046. 2017-07-27 10:13:52.520 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2047. 2017-07-27 10:13:52.523 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2048. 2017-07-27 10:13:52.523 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2049. 2017-07-27 10:13:52.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2050. 2017-07-27 10:13:52.524 |-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
  2051. 2017-07-27 10:13:52.524 |-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
  2052. 2017-07-27 10:13:52.524 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2053. 2017-07-27 10:13:52.524 |-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
  2054. 2017-07-27 10:13:52.524 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2055. 2017-07-27 10:13:52.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2056. 2017-07-27 10:13:52.556 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2057. 2017-07-27 10:13:52.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2058. 2017-07-27 10:13:52.558 |-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
  2059. 2017-07-27 10:13:52.558 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2060. 2017-07-27 10:13:52.559 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2061. 2017-07-27 10:13:52.560 |-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=?)
  2062. 2017-07-27 10:13:52.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2063. 2017-07-27 10:13:52.564 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2064. 2017-07-27 10:13:52.564 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2065. 2017-07-27 10:13:52.564 |-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=?)
  2066. 2017-07-27 10:13:52.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2067. 2017-07-27 10:13:52.565 |-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=?)
  2068. 2017-07-27 10:13:52.565 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2069. 2017-07-27 10:13:52.565 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2070. 2017-07-27 10:13:52.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=?)
  2071. 2017-07-27 10:13:52.566 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2072. 2017-07-27 10:13:52.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2073. 2017-07-27 10:13:52.587 |-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=?)
  2074. 2017-07-27 10:13:52.587 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2075. 2017-07-27 10:13:52.588 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2076. 2017-07-27 10:13:52.588 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2077. 2017-07-27 10:13:52.588 |-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=?)
  2078. 2017-07-27 10:13:52.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2079. 2017-07-27 10:13:52.589 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2080. 2017-07-27 10:13:52.591 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2081. 2017-07-27 10:13:52.591 |-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 parentid = ?
  2082. 2017-07-27 10:13:52.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2083. 2017-07-27 10:13:52.592 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2084. 2017-07-27 10:13:52.592 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2085. 2017-07-27 10:13:52.593 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2086. 2017-07-27 10:13:52.594 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2087. 2017-07-27 10:13:52.595 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2088. 2017-07-27 10:13:52.596 |-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 parentid = ?
  2089. 2017-07-27 10:13:52.596 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2090. 2017-07-27 10:13:52.597 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2091. 2017-07-27 10:13:52.597 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2092. 2017-07-27 10:13:52.599 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2093. 2017-07-27 10:13:52.601 |-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 parentid = ?
  2094. 2017-07-27 10:13:52.601 |-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 parentid = ?
  2095. 2017-07-27 10:13:52.602 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2096. 2017-07-27 10:13:52.602 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2097. 2017-07-27 10:13:52.613 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2098. 2017-07-27 10:13:52.614 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2099. 2017-07-27 10:13:52.617 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2100. 2017-07-27 10:13:52.617 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2101. 2017-07-27 10:13:52.617 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2102. 2017-07-27 10:13:52.618 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2103. 2017-07-27 10:13:52.618 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2104. 2017-07-27 10:13:52.621 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  2105. 2017-07-27 10:13:52.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  2106. 2017-07-27 10:13:52.622 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2107. 2017-07-27 10:13:52.623 |-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 parentid = ?
  2108. 2017-07-27 10:13:52.623 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2109. 2017-07-27 10:13:52.624 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  2110. 2017-07-27 10:13:52.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2111. 2017-07-27 10:13:52.624 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  2112. 2017-07-27 10:13:52.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  2113. 2017-07-27 10:13:52.627 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2114. 2017-07-27 10:13:52.628 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2115. 2017-07-27 10:13:52.629 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  2116. 2017-07-27 10:13:52.629 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  2117. 2017-07-27 10:13:52.630 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  2118. 2017-07-27 10:13:52.630 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  2119. 2017-07-27 10:13:52.647 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2120. 2017-07-27 10:13:52.649 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  2121. 2017-07-27 10:13:52.649 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  2122. 2017-07-27 10:13:52.651 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  2123. 2017-07-27 10:13:52.653 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY tab.mth
  2124. 2017-07-27 10:13:52.654 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  2125. 2017-07-27 10:13:52.655 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  2126. 2017-07-27 10:13:52.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  2127. 2017-07-27 10:13:52.657 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  2128. 2017-07-27 10:13:52.658 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  2129. 2017-07-27 10:13:52.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  2130. 2017-07-27 10:13:52.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2131. 2017-07-27 10:13:52.677 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  2132. 2017-07-27 10:13:52.723 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  2133. 2017-07-27 10:13:52.724 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2134. 2017-07-27 10:13:52.725 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2135. 2017-07-27 10:13:52.747 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  2136. 2017-07-27 10:13:52.750 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2137. 2017-07-27 10:13:52.750 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  2138. 2017-07-27 10:13:52.750 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/06(String)
  2139. 2017-07-27 10:13:52.752 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2140. 2017-07-27 10:13:52.753 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2141. 2017-07-27 10:13:52.764 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2142. 2017-07-27 10:13:52.765 |-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 parentid = ?
  2143. 2017-07-27 10:13:52.766 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2144. 2017-07-27 10:13:52.794 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  2145. 2017-07-27 10:13:52.798 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2146. 2017-07-27 10:13:52.799 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  2147. 2017-07-27 10:13:52.807 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  2148. 2017-07-27 10:13:52.838 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 190
  2149. 2017-07-27 10:13:57.076 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2150. 2017-07-27 10:13:57.079 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2151. 2017-07-27 10:13:57.079 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2152. 2017-07-27 10:13:57.083 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2153. 2017-07-27 10:13:57.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2154. 2017-07-27 10:13:57.084 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2155. 2017-07-27 10:13:57.085 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2156. 2017-07-27 10:13:57.087 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2157. 2017-07-27 10:13:57.094 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2158. 2017-07-27 10:13:57.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2159. 2017-07-27 10:13:57.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2160. 2017-07-27 10:13:57.095 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2161. 2017-07-27 10:13:57.095 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2162. 2017-07-27 10:13:57.096 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2163. 2017-07-27 10:13:57.097 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2164. 2017-07-27 10:13:57.099 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2165. 2017-07-27 10:13:57.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2166. 2017-07-27 10:13:57.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2167. 2017-07-27 10:13:57.112 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2168. 2017-07-27 10:13:57.112 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2169. 2017-07-27 10:13:57.114 |-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
  2170. 2017-07-27 10:13:57.114 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2171. 2017-07-27 10:13:57.114 |-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
  2172. 2017-07-27 10:13:57.116 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2173. 2017-07-27 10:13:57.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2174. 2017-07-27 10:13:57.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2175. 2017-07-27 10:13:57.122 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2176. 2017-07-27 10:13:57.122 |-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
  2177. 2017-07-27 10:13:57.122 |-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
  2178. 2017-07-27 10:13:57.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2179. 2017-07-27 10:13:57.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2180. 2017-07-27 10:13:57.122 |-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
  2181. 2017-07-27 10:13:57.123 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2182. 2017-07-27 10:13:57.129 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2183. 2017-07-27 10:13:57.130 |-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
  2184. 2017-07-27 10:13:57.131 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2185. 2017-07-27 10:13:57.143 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2186. 2017-07-27 10:13:57.144 |-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=?)
  2187. 2017-07-27 10:13:57.145 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2188. 2017-07-27 10:13:57.145 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2189. 2017-07-27 10:13:57.145 |-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=?)
  2190. 2017-07-27 10:13:57.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2191. 2017-07-27 10:13:57.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2192. 2017-07-27 10:13:57.151 |-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=?)
  2193. 2017-07-27 10:13:57.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2194. 2017-07-27 10:13:57.151 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2195. 2017-07-27 10:13:57.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2196. 2017-07-27 10:13:57.153 |-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=?)
  2197. 2017-07-27 10:13:57.153 |-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=?)
  2198. 2017-07-27 10:13:57.153 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2199. 2017-07-27 10:13:57.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2200. 2017-07-27 10:13:57.160 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2201. 2017-07-27 10:13:57.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=?)
  2202. 2017-07-27 10:13:57.161 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2203. 2017-07-27 10:13:57.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2204. 2017-07-27 10:13:57.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2205. 2017-07-27 10:13:57.174 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2206. 2017-07-27 10:13:57.174 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2207. 2017-07-27 10:13:57.175 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2208. 2017-07-27 10:13:57.175 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2209. 2017-07-27 10:13:57.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2210. 2017-07-27 10:13:57.178 |-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 parentid = ?
  2211. 2017-07-27 10:13:57.178 |-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 parentid = ?
  2212. 2017-07-27 10:13:57.178 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2213. 2017-07-27 10:13:57.179 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2214. 2017-07-27 10:13:57.180 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2215. 2017-07-27 10:13:57.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2216. 2017-07-27 10:13:57.182 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2217. 2017-07-27 10:13:57.183 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2218. 2017-07-27 10:13:57.183 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2219. 2017-07-27 10:13:57.185 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2220. 2017-07-27 10:13:57.186 |-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 parentid = ?
  2221. 2017-07-27 10:13:57.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2222. 2017-07-27 10:13:57.188 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2223. 2017-07-27 10:13:57.188 |-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 parentid = ?
  2224. 2017-07-27 10:13:57.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2225. 2017-07-27 10:13:57.188 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2226. 2017-07-27 10:13:57.190 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2227. 2017-07-27 10:13:57.191 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2228. 2017-07-27 10:13:57.191 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2229. 2017-07-27 10:13:57.194 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  2230. 2017-07-27 10:13:57.195 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  2231. 2017-07-27 10:13:57.194 |-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 parentid = ?
  2232. 2017-07-27 10:13:57.196 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2233. 2017-07-27 10:13:57.204 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2234. 2017-07-27 10:13:57.205 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2235. 2017-07-27 10:13:57.207 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  2236. 2017-07-27 10:13:57.207 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  2237. 2017-07-27 10:13:57.207 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  2238. 2017-07-27 10:13:57.208 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  2239. 2017-07-27 10:13:57.212 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2240. 2017-07-27 10:13:57.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2241. 2017-07-27 10:13:57.214 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2242. 2017-07-27 10:13:57.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  2243. 2017-07-27 10:13:57.216 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  2244. 2017-07-27 10:13:57.217 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  2245. 2017-07-27 10:13:57.223 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2246. 2017-07-27 10:13:57.225 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  2247. 2017-07-27 10:13:57.226 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  2248. 2017-07-27 10:13:57.233 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  2249. 2017-07-27 10:13:57.234 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  2250. 2017-07-27 10:13:57.236 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY tab.mth
  2251. 2017-07-27 10:13:57.236 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  2252. 2017-07-27 10:13:57.236 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  2253. 2017-07-27 10:13:57.236 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  2254. 2017-07-27 10:13:57.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  2255. 2017-07-27 10:13:57.253 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  2256. 2017-07-27 10:13:57.255 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2257. 2017-07-27 10:13:57.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  2258. 2017-07-27 10:13:57.287 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  2259. 2017-07-27 10:13:57.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2260. 2017-07-27 10:13:57.291 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/06(String)
  2261. 2017-07-27 10:13:57.322 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  2262. 2017-07-27 10:13:57.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  2263. 2017-07-27 10:13:57.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2264. 2017-07-27 10:13:57.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2265. 2017-07-27 10:13:57.331 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  2266. 2017-07-27 10:13:57.332 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2267. 2017-07-27 10:13:57.332 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2268. 2017-07-27 10:13:57.361 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2269. 2017-07-27 10:13:57.363 |-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 parentid = ?
  2270. 2017-07-27 10:13:57.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  2271. 2017-07-27 10:13:57.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  2272. 2017-07-27 10:13:57.394 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 190
  2273. 2017-07-27 10:13:57.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  2274. 2017-07-27 10:13:57.426 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  2275. 2017-07-27 10:14:11.200 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2276. 2017-07-27 10:14:11.201 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2277. 2017-07-27 10:14:11.202 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2278. 2017-07-27 10:14:11.211 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2279. 2017-07-27 10:14:11.213 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2280. 2017-07-27 10:14:11.214 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2281. 2017-07-27 10:14:11.214 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2282. 2017-07-27 10:14:11.212 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2283. 2017-07-27 10:14:11.216 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2284. 2017-07-27 10:14:11.217 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2285. 2017-07-27 10:14:11.218 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2286. 2017-07-27 10:14:11.219 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2287. 2017-07-27 10:14:11.219 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2288. 2017-07-27 10:14:11.223 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2289. 2017-07-27 10:14:11.224 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2290. 2017-07-27 10:14:11.224 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2291. 2017-07-27 10:14:11.226 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2292. 2017-07-27 10:14:11.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2293. 2017-07-27 10:14:11.231 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2294. 2017-07-27 10:14:11.233 |-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
  2295. 2017-07-27 10:14:11.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2296. 2017-07-27 10:14:11.241 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2297. 2017-07-27 10:14:11.242 |-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
  2298. 2017-07-27 10:14:11.243 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2299. 2017-07-27 10:14:11.244 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2300. 2017-07-27 10:14:11.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
  2301. 2017-07-27 10:14:11.244 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2302. 2017-07-27 10:14:11.245 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2303. 2017-07-27 10:14:11.245 |-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
  2304. 2017-07-27 10:14:11.245 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2305. 2017-07-27 10:14:11.250 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2306. 2017-07-27 10:14:11.252 |-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
  2307. 2017-07-27 10:14:11.252 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2308. 2017-07-27 10:14:11.255 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2309. 2017-07-27 10:14:11.256 |-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
  2310. 2017-07-27 10:14:11.256 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2311. 2017-07-27 10:14:11.263 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2312. 2017-07-27 10:14:11.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=?)
  2313. 2017-07-27 10:14:11.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2314. 2017-07-27 10:14:11.271 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2315. 2017-07-27 10:14:11.272 |-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=?)
  2316. 2017-07-27 10:14:11.272 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2317. 2017-07-27 10:14:11.274 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2318. 2017-07-27 10:14:11.274 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2319. 2017-07-27 10:14:11.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=?)
  2320. 2017-07-27 10:14:11.274 |-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=?)
  2321. 2017-07-27 10:14:11.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2322. 2017-07-27 10:14:11.275 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2323. 2017-07-27 10:14:11.282 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2324. 2017-07-27 10:14:11.282 |-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=?)
  2325. 2017-07-27 10:14:11.282 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2326. 2017-07-27 10:14:11.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2327. 2017-07-27 10:14:11.285 |-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=?)
  2328. 2017-07-27 10:14:11.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2329. 2017-07-27 10:14:11.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2330. 2017-07-27 10:14:11.294 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2331. 2017-07-27 10:14:11.295 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2332. 2017-07-27 10:14:11.296 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2333. 2017-07-27 10:14:11.297 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2334. 2017-07-27 10:14:11.298 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2335. 2017-07-27 10:14:11.301 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2336. 2017-07-27 10:14:11.301 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2337. 2017-07-27 10:14:11.304 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2338. 2017-07-27 10:14:11.304 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2339. 2017-07-27 10:14:11.304 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2340. 2017-07-27 10:14:11.306 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2341. 2017-07-27 10:14:11.306 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2342. 2017-07-27 10:14:11.306 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2343. 2017-07-27 10:14:11.309 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2344. 2017-07-27 10:14:11.309 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2345. 2017-07-27 10:14:11.309 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  2346. 2017-07-27 10:14:11.310 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2347. 2017-07-27 10:14:11.310 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  2348. 2017-07-27 10:14:11.310 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2349. 2017-07-27 10:14:11.311 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2350. 2017-07-27 10:14:11.312 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2351. 2017-07-27 10:14:11.313 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2352. 2017-07-27 10:14:11.314 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2353. 2017-07-27 10:14:11.314 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2354. 2017-07-27 10:14:11.315 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2355. 2017-07-27 10:14:11.316 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2356. 2017-07-27 10:14:11.316 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2357. 2017-07-27 10:14:11.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2358. 2017-07-27 10:14:11.319 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  2359. 2017-07-27 10:14:11.324 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2360. 2017-07-27 10:14:11.326 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth
  2361. 2017-07-27 10:14:11.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 39(Long)
  2362. 2017-07-27 10:14:11.341 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2363. 2017-07-27 10:14:11.342 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2364. 2017-07-27 10:14:11.343 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2365. 2017-07-27 10:14:11.343 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  2366. 2017-07-27 10:14:11.344 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2367. 2017-07-27 10:14:11.344 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  2368. 2017-07-27 10:14:11.346 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  2369. 2017-07-27 10:14:11.373 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  2370. 2017-07-27 10:14:11.375 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2371. 2017-07-27 10:14:11.376 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
  2372. 2017-07-27 10:14:11.405 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 3
  2373. 2017-07-27 10:14:11.449 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  2374. 2017-07-27 10:14:11.451 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2375. 2017-07-27 10:14:11.452 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2376. 2017-07-27 10:14:11.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2377. 2017-07-27 10:14:11.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  2378. 2017-07-27 10:14:11.483 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2379. 2017-07-27 10:14:11.484 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
  2380. 2017-07-27 10:14:11.484 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  2381. 2017-07-27 10:14:11.485 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  2382. 2017-07-27 10:14:11.486 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2383. 2017-07-27 10:14:11.487 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2384. 2017-07-27 10:14:11.515 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2385. 2017-07-27 10:14:11.576 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 10
  2386. 2017-07-27 10:14:11.578 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2387. 2017-07-27 10:14:11.579 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2388. 2017-07-27 10:14:11.608 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2389. 2017-07-27 10:14:15.945 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2390. 2017-07-27 10:14:15.948 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2391. 2017-07-27 10:14:15.952 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2392. 2017-07-27 10:14:15.955 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2393. 2017-07-27 10:14:15.961 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2394. 2017-07-27 10:14:15.961 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2395. 2017-07-27 10:14:15.962 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2396. 2017-07-27 10:14:15.961 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2397. 2017-07-27 10:14:15.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2398. 2017-07-27 10:14:15.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2399. 2017-07-27 10:14:15.963 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2400. 2017-07-27 10:14:15.963 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2401. 2017-07-27 10:14:15.966 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2402. 2017-07-27 10:14:15.968 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2403. 2017-07-27 10:14:16.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2404. 2017-07-27 10:14:16.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2405. 2017-07-27 10:14:16.014 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2406. 2017-07-27 10:14:16.014 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2407. 2017-07-27 10:14:16.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2408. 2017-07-27 10:14:16.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
  2409. 2017-07-27 10:14:16.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2410. 2017-07-27 10:14:16.026 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2411. 2017-07-27 10:14:16.026 |-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
  2412. 2017-07-27 10:14:16.028 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2413. 2017-07-27 10:14:16.026 |-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
  2414. 2017-07-27 10:14:16.026 |-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
  2415. 2017-07-27 10:14:16.029 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2416. 2017-07-27 10:14:16.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2417. 2017-07-27 10:14:16.027 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2418. 2017-07-27 10:14:16.029 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2419. 2017-07-27 10:14:16.054 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2420. 2017-07-27 10:14:16.054 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2421. 2017-07-27 10:14:16.055 |-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
  2422. 2017-07-27 10:14:16.055 |-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
  2423. 2017-07-27 10:14:16.055 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2424. 2017-07-27 10:14:16.055 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2425. 2017-07-27 10:14:16.055 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2426. 2017-07-27 10:14:16.056 |-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=?)
  2427. 2017-07-27 10:14:16.056 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2428. 2017-07-27 10:14:16.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2429. 2017-07-27 10:14:16.057 |-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=?)
  2430. 2017-07-27 10:14:16.057 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2431. 2017-07-27 10:14:16.057 |-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=?)
  2432. 2017-07-27 10:14:16.057 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2433. 2017-07-27 10:14:16.058 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2434. 2017-07-27 10:14:16.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2435. 2017-07-27 10:14:16.059 |-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=?)
  2436. 2017-07-27 10:14:16.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2437. 2017-07-27 10:14:16.083 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2438. 2017-07-27 10:14:16.084 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2439. 2017-07-27 10:14:16.084 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2440. 2017-07-27 10:14:16.085 |-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=?)
  2441. 2017-07-27 10:14:16.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2442. 2017-07-27 10:14:16.085 |-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=?)
  2443. 2017-07-27 10:14:16.086 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2444. 2017-07-27 10:14:16.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2445. 2017-07-27 10:14:16.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2446. 2017-07-27 10:14:16.085 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2447. 2017-07-27 10:14:16.091 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2448. 2017-07-27 10:14:16.091 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2449. 2017-07-27 10:14:16.093 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2450. 2017-07-27 10:14:16.093 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2451. 2017-07-27 10:14:16.094 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2452. 2017-07-27 10:14:16.095 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2453. 2017-07-27 10:14:16.091 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2454. 2017-07-27 10:14:16.096 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2455. 2017-07-27 10:14:16.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2456. 2017-07-27 10:14:16.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2457. 2017-07-27 10:14:16.099 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2458. 2017-07-27 10:14:16.099 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  2459. 2017-07-27 10:14:16.100 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2460. 2017-07-27 10:14:16.101 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2461. 2017-07-27 10:14:16.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2462. 2017-07-27 10:14:16.105 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  2463. 2017-07-27 10:14:16.113 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2464. 2017-07-27 10:14:16.117 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2465. 2017-07-27 10:14:16.118 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2466. 2017-07-27 10:14:16.119 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2467. 2017-07-27 10:14:16.120 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  2468. 2017-07-27 10:14:16.121 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  2469. 2017-07-27 10:14:16.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2470. 2017-07-27 10:14:16.125 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth
  2471. 2017-07-27 10:14:16.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2472. 2017-07-27 10:14:16.126 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2473. 2017-07-27 10:14:16.125 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 39(Long)
  2474. 2017-07-27 10:14:16.127 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2475. 2017-07-27 10:14:16.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2476. 2017-07-27 10:14:16.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  2477. 2017-07-27 10:14:16.130 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2478. 2017-07-27 10:14:16.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  2479. 2017-07-27 10:14:16.150 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  2480. 2017-07-27 10:14:16.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2481. 2017-07-27 10:14:16.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  2482. 2017-07-27 10:14:16.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  2483. 2017-07-27 10:14:16.180 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  2484. 2017-07-27 10:14:16.182 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  2485. 2017-07-27 10:14:16.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
  2486. 2017-07-27 10:14:16.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 3
  2487. 2017-07-27 10:14:16.242 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  2488. 2017-07-27 10:14:16.245 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2489. 2017-07-27 10:14:16.246 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2490. 2017-07-27 10:14:16.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  2491. 2017-07-27 10:14:16.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2492. 2017-07-27 10:14:16.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2493. 2017-07-27 10:14:16.264 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  2494. 2017-07-27 10:14:16.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2495. 2017-07-27 10:14:16.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  2496. 2017-07-27 10:14:16.284 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  2497. 2017-07-27 10:14:16.285 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
  2498. 2017-07-27 10:14:16.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2499. 2017-07-27 10:14:16.377 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 10
  2500. 2017-07-27 10:14:16.380 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2501. 2017-07-27 10:14:16.381 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2502. 2017-07-27 10:14:16.411 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2503. 2017-07-27 10:14:30.836 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2504. 2017-07-27 10:14:30.839 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2505. 2017-07-27 10:14:30.839 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2506. 2017-07-27 10:14:30.867 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2507. 2017-07-27 10:14:30.868 |-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
  2508. 2017-07-27 10:14:30.868 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2509. 2017-07-27 10:14:30.898 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2510. 2017-07-27 10:14:30.899 |-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=?)
  2511. 2017-07-27 10:14:30.899 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2512. 2017-07-27 10:14:30.927 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2513. 2017-07-27 10:14:30.932 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2514. 2017-07-27 10:14:30.934 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2515. 2017-07-27 10:14:30.939 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2516. 2017-07-27 10:14:30.940 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2517. 2017-07-27 10:14:30.969 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2518. 2017-07-27 10:14:30.989 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2519. 2017-07-27 10:14:30.989 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2520. 2017-07-27 10:14:30.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2521. 2017-07-27 10:14:30.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2522. 2017-07-27 10:14:30.992 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2523. 2017-07-27 10:14:30.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2524. 2017-07-27 10:14:30.993 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2525. 2017-07-27 10:14:30.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2526. 2017-07-27 10:14:30.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2527. 2017-07-27 10:14:31.020 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2528. 2017-07-27 10:14:31.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2529. 2017-07-27 10:14:31.021 |-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
  2530. 2017-07-27 10:14:31.021 |-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
  2531. 2017-07-27 10:14:31.021 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2532. 2017-07-27 10:14:31.021 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2533. 2017-07-27 10:14:31.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2534. 2017-07-27 10:14:31.023 |-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
  2535. 2017-07-27 10:14:31.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2536. 2017-07-27 10:14:31.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2537. 2017-07-27 10:14:31.051 |-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=?)
  2538. 2017-07-27 10:14:31.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2539. 2017-07-27 10:14:31.052 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2540. 2017-07-27 10:14:31.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2541. 2017-07-27 10:14:31.052 |-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=?)
  2542. 2017-07-27 10:14:31.052 |-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=?)
  2543. 2017-07-27 10:14:31.052 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2544. 2017-07-27 10:14:31.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2545. 2017-07-27 10:14:31.078 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2546. 2017-07-27 10:14:31.078 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2547. 2017-07-27 10:14:31.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2548. 2017-07-27 10:14:31.086 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2549. 2017-07-27 10:14:31.086 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2550. 2017-07-27 10:14:31.086 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2551. 2017-07-27 10:14:31.088 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2552. 2017-07-27 10:14:31.089 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2553. 2017-07-27 10:14:31.092 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2554. 2017-07-27 10:14:31.093 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  2555. 2017-07-27 10:14:31.094 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  2556. 2017-07-27 10:14:31.095 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  2557. 2017-07-27 10:14:31.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  2558. 2017-07-27 10:14:31.124 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  2559. 2017-07-27 10:14:31.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  2560. 2017-07-27 10:14:31.212 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  2561. 2017-07-27 10:14:31.213 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  2562. 2017-07-27 10:14:31.296 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2563. 2017-07-27 10:26:12.340 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2564. 2017-07-27 10:26:15.577 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2565. 2017-07-27 10:26:15.577 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2566. 2017-07-27 10:26:16.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2567. 2017-07-27 10:26:16.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2568. 2017-07-27 10:26:16.736 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2569. 2017-07-27 10:26:16.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2570. 2017-07-27 10:26:16.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2571. 2017-07-27 10:26:16.765 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2572. 2017-07-27 10:26:16.766 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2573. 2017-07-27 10:26:16.766 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2574. 2017-07-27 10:26:16.794 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2575. 2017-07-27 10:26:21.037 |-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
  2576. 2017-07-27 10:26:21.038 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2577. 2017-07-27 10:26:21.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2578. 2017-07-27 10:26:21.213 |-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=?)
  2579. 2017-07-27 10:26:21.213 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2580. 2017-07-27 10:26:21.359 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2581. 2017-07-27 10:26:21.360 |-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
  2582. 2017-07-27 10:26:21.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2583. 2017-07-27 10:26:21.364 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2584. 2017-07-27 10:26:21.365 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2585. 2017-07-27 10:26:21.369 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2586. 2017-07-27 10:26:21.370 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2587. 2017-07-27 10:26:21.408 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2588. 2017-07-27 10:26:21.409 |-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
  2589. 2017-07-27 10:26:21.409 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2590. 2017-07-27 10:26:21.420 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2591. 2017-07-27 10:26:21.432 |-ERROR [http-nio-8089-exec-10] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
  2592. org.apache.catalina.connector.ClientAbortException: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  2593. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  2594. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  2595. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  2596. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  2597. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  2598. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  2599. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  2600. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  2601. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  2602. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  2603. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  2604. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2605. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2606. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  2607. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  2608. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  2609. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  2610. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  2611. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  2612. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2613. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2614. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  2615. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2616. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  2617. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  2618. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2619. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  2620. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2621. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2622. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  2623. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2624. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2625. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2626. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2627. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2628. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2629. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2630. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2631. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2632. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2633. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2634. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2635. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2636. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  2637. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2638. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2639. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  2640. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2641. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2642. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2643. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  2644. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  2645. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  2646. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2647. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  2648. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2649. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  2650. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2651. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  2652. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2653. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  2654. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2655. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  2656. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2657. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2658. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2659. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2660. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  2661. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2662. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  2663. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2664. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2665. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  2666. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2667. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2668. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  2669. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2670. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  2671. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2672. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2673. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  2674. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  2675. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  2676. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  2677. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2678. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2679. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  2680. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2681. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2682. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2683. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  2684. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2685. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2686. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2687. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  2688. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2689. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2690. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2691. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  2692. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2693. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2694. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2695. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  2696. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2697. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2698. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2699. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  2700. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  2701. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  2702. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  2703. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  2704. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2705. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  2706. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  2707. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2708. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  2709. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  2710. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2711. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2712. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2713. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2714. at java.lang.Thread.run(Thread.java:745)
  2715. Caused by: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  2716. at sun.nio.ch.SocketDispatcher.write0(Native Method)
  2717. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
  2718. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  2719. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  2720. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  2721. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  2722. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  2723. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  2724. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  2725. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  2726. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  2727. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  2728. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  2729. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  2730. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  2731. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  2732. at org.apache.coyote.Response.action(Response.java:168)
  2733. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  2734. ... 121 common frames omitted
  2735. 2017-07-27 10:26:21.434 |-WARN [http-nio-8089-exec-10] 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)
  2736. org.apache.catalina.connector.ClientAbortException: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  2737. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  2738. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  2739. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  2740. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  2741. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  2742. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  2743. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  2744. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  2745. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  2746. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  2747. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  2748. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2749. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2750. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  2751. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:380)
  2752. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2753. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2754. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:74)
  2755. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1218)
  2756. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1030)
  2757. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
  2758. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  2759. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2760. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2761. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  2762. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2763. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  2764. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  2765. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2766. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  2767. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2768. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2769. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  2770. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2771. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2772. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2773. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2774. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2775. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2776. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  2777. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2778. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2779. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2780. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2781. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2782. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2783. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  2784. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2785. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2786. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  2787. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2788. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2789. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2790. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  2791. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  2792. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  2793. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2794. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  2795. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2796. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  2797. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2798. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  2799. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2800. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  2801. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2802. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  2803. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2804. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  2805. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2806. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2807. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  2808. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2809. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  2810. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2811. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2812. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  2813. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2814. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2815. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  2816. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2817. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  2818. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2819. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  2820. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  2821. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  2822. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  2823. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  2824. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2825. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2826. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  2827. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2828. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2829. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2830. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  2831. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2832. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2833. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2834. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  2835. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2836. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2837. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2838. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  2839. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2840. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2841. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2842. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  2843. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  2844. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  2845. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  2846. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  2847. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  2848. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  2849. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  2850. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  2851. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2852. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  2853. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  2854. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2855. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  2856. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  2857. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2858. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2859. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2860. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2861. at java.lang.Thread.run(Thread.java:745)
  2862. Caused by: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  2863. at sun.nio.ch.SocketDispatcher.write0(Native Method)
  2864. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
  2865. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  2866. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  2867. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  2868. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  2869. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  2870. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  2871. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  2872. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  2873. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  2874. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  2875. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  2876. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  2877. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  2878. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  2879. at org.apache.coyote.Response.action(Response.java:168)
  2880. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  2881. ... 124 common frames omitted
  2882. 2017-07-27 10:26:21.465 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2883. 2017-07-27 10:26:21.465 |-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=?)
  2884. 2017-07-27 10:26:21.466 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2885. 2017-07-27 10:26:21.513 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2886. 2017-07-27 10:26:21.513 |-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=?)
  2887. 2017-07-27 10:26:21.513 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2888. 2017-07-27 10:26:21.517 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2889. 2017-07-27 10:26:21.518 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2890. 2017-07-27 10:26:21.588 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2891. 2017-07-27 10:26:21.594 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2892. 2017-07-27 10:26:21.596 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2893. 2017-07-27 10:26:21.604 |-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
  2894. 2017-07-27 10:26:21.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2895. 2017-07-27 10:26:21.708 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2896. 2017-07-27 10:26:21.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
  2897. 2017-07-27 10:26:21.711 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2898. 2017-07-27 10:26:21.818 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2899. 2017-07-27 10:26:21.884 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2900. 2017-07-27 10:26:21.886 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2901. 2017-07-27 10:26:21.888 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2902. 2017-07-27 10:26:21.889 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2903. 2017-07-27 10:26:21.889 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2904. 2017-07-27 10:26:21.889 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2905. 2017-07-27 10:26:22.047 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2906. 2017-07-27 10:26:22.047 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2907. 2017-07-27 10:26:22.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
  2908. 2017-07-27 10:26:22.048 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2909. 2017-07-27 10:26:22.216 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2910. 2017-07-27 10:26:22.217 |-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
  2911. 2017-07-27 10:26:22.217 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2912. 2017-07-27 10:26:22.373 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2913. 2017-07-27 10:26:22.374 |-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=?)
  2914. 2017-07-27 10:26:22.375 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2915. 2017-07-27 10:26:22.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2916. 2017-07-27 10:26:22.547 |-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=?)
  2917. 2017-07-27 10:26:22.548 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2918. 2017-07-27 10:26:22.553 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2919. 2017-07-27 10:26:22.555 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2920. 2017-07-27 10:26:22.557 |-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
  2921. 2017-07-27 10:26:22.558 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2922. 2017-07-27 10:26:22.621 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2923. 2017-07-27 10:26:22.625 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2924. 2017-07-27 10:26:22.626 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2925. 2017-07-27 10:26:22.629 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2926. 2017-07-27 10:26:22.631 |-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
  2927. 2017-07-27 10:26:22.632 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2928. 2017-07-27 10:26:22.643 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2929. 2017-07-27 10:26:22.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2930. 2017-07-27 10:26:22.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2931. 2017-07-27 10:26:22.679 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2932. 2017-07-27 10:26:22.694 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2933. 2017-07-27 10:26:22.695 |-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
  2934. 2017-07-27 10:26:22.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2935. 2017-07-27 10:26:22.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2936. 2017-07-27 10:26:22.754 |-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=?)
  2937. 2017-07-27 10:26:22.754 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2938. 2017-07-27 10:26:22.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2939. 2017-07-27 10:26:22.810 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2940. 2017-07-27 10:26:22.812 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2941. 2017-07-27 10:26:22.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2942. 2017-07-27 10:26:22.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2943. 2017-07-27 10:26:23.036 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  2944. 2017-07-27 10:26:23.079 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2945. 2017-07-27 10:26:23.082 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2946. 2017-07-27 10:26:23.082 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2947. 2017-07-27 10:26:23.137 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2948. 2017-07-27 10:26:23.138 |-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
  2949. 2017-07-27 10:26:23.138 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2950. 2017-07-27 10:26:23.192 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2951. 2017-07-27 10:26:23.194 |-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=?)
  2952. 2017-07-27 10:26:23.194 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2953. 2017-07-27 10:26:23.247 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2954. 2017-07-27 10:26:23.253 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2955. 2017-07-27 10:26:23.255 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2956. 2017-07-27 10:26:23.261 |-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=?
  2957. 2017-07-27 10:26:23.262 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2958. 2017-07-27 10:26:23.298 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2959. 2017-07-27 10:26:23.493 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2960. 2017-07-27 10:26:23.496 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  2961. 2017-07-27 10:26:23.497 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  2962. 2017-07-27 10:26:23.526 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2963. 2017-07-27 10:26:23.527 |-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
  2964. 2017-07-27 10:26:23.527 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  2965. 2017-07-27 10:26:23.558 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  2966. 2017-07-27 10:26:23.559 |-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=?)
  2967. 2017-07-27 10:26:23.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  2968. 2017-07-27 10:26:23.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2969. 2017-07-27 10:26:23.614 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  2970. 2017-07-27 10:26:23.615 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  2971. 2017-07-27 10:26:23.619 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2972. 2017-07-27 10:26:23.619 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2973. 2017-07-27 10:26:23.724 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  2974. 2017-07-27 10:26:23.727 |-ERROR [http-nio-8089-exec-3] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
  2975. org.apache.catalina.connector.ClientAbortException: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  2976. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  2977. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  2978. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  2979. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  2980. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  2981. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  2982. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  2983. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  2984. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  2985. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  2986. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  2987. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2988. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2989. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  2990. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  2991. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  2992. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  2993. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  2994. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  2995. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2996. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  2997. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  2998. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2999. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  3000. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  3001. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3002. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  3003. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3004. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3005. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  3006. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3007. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3008. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3009. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  3010. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3011. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3012. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  3013. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3014. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3015. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  3016. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3017. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3018. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3019. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  3020. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3021. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3022. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  3023. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3024. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3025. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3026. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  3027. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  3028. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  3029. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3030. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  3031. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3032. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  3033. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3034. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  3035. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3036. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  3037. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3038. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  3039. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3040. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  3041. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3042. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3043. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  3044. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3045. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  3046. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3047. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3048. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  3049. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3050. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3051. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  3052. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3053. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  3054. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3055. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3056. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  3057. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  3058. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  3059. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  3060. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3061. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3062. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  3063. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3064. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3065. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3066. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  3067. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3068. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3069. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3070. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  3071. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3072. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3073. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3074. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  3075. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3076. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3077. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3078. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  3079. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3080. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3081. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3082. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  3083. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  3084. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  3085. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  3086. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  3087. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3088. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  3089. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  3090. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3091. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  3092. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  3093. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3094. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  3095. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  3096. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3097. at java.lang.Thread.run(Thread.java:745)
  3098. Caused by: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  3099. at sun.nio.ch.SocketDispatcher.write0(Native Method)
  3100. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
  3101. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  3102. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  3103. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  3104. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  3105. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  3106. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  3107. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  3108. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  3109. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  3110. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  3111. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  3112. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  3113. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  3114. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  3115. at org.apache.coyote.Response.action(Response.java:168)
  3116. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  3117. ... 121 common frames omitted
  3118. 2017-07-27 10:26:23.731 |-WARN [http-nio-8089-exec-3] 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)
  3119. org.apache.catalina.connector.ClientAbortException: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  3120. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  3121. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  3122. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  3123. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  3124. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  3125. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  3126. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  3127. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  3128. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  3129. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  3130. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  3131. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3132. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3133. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  3134. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:380)
  3135. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3136. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3137. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:74)
  3138. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1218)
  3139. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1030)
  3140. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
  3141. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  3142. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3143. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  3144. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  3145. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3146. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  3147. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  3148. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3149. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  3150. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3151. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3152. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  3153. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3154. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3155. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3156. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  3157. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3158. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3159. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  3160. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3161. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3162. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  3163. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3164. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3165. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3166. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  3167. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3168. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3169. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  3170. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3171. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3172. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3173. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  3174. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  3175. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  3176. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3177. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  3178. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3179. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  3180. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3181. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  3182. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3183. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  3184. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3185. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  3186. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3187. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  3188. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3189. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3190. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  3191. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3192. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  3193. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3194. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3195. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  3196. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3197. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3198. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  3199. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3200. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  3201. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3202. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  3203. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  3204. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  3205. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  3206. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  3207. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3208. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3209. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  3210. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3211. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3212. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3213. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  3214. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3215. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3216. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3217. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  3218. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3219. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3220. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3221. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  3222. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3223. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3224. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3225. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  3226. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  3227. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  3228. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  3229. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  3230. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  3231. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  3232. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  3233. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  3234. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3235. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  3236. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  3237. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3238. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  3239. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  3240. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3241. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  3242. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  3243. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3244. at java.lang.Thread.run(Thread.java:745)
  3245. Caused by: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  3246. at sun.nio.ch.SocketDispatcher.write0(Native Method)
  3247. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
  3248. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  3249. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  3250. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  3251. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  3252. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  3253. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  3254. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  3255. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  3256. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  3257. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  3258. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  3259. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  3260. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  3261. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  3262. at org.apache.coyote.Response.action(Response.java:168)
  3263. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  3264. ... 124 common frames omitted
  3265. 2017-07-27 10:26:23.893 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3266. 2017-07-27 10:26:23.894 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3267. 2017-07-27 10:26:23.897 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3268. 2017-07-27 10:26:23.897 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3269. 2017-07-27 10:26:23.899 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3270. 2017-07-27 10:26:23.899 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3271. 2017-07-27 10:26:24.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3272. 2017-07-27 10:26:24.071 |-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
  3273. 2017-07-27 10:26:24.071 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3274. 2017-07-27 10:26:24.071 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3275. 2017-07-27 10:26:24.178 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3276. 2017-07-27 10:26:24.179 |-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
  3277. 2017-07-27 10:26:24.179 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3278. 2017-07-27 10:26:24.358 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3279. 2017-07-27 10:26:24.359 |-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=?)
  3280. 2017-07-27 10:26:24.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3281. 2017-07-27 10:26:24.516 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3282. 2017-07-27 10:26:24.517 |-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=?)
  3283. 2017-07-27 10:26:24.517 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3284. 2017-07-27 10:26:24.522 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3285. 2017-07-27 10:26:24.524 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3286. 2017-07-27 10:26:24.546 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3287. 2017-07-27 10:26:24.546 |-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
  3288. 2017-07-27 10:26:24.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3289. 2017-07-27 10:26:24.552 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3290. 2017-07-27 10:26:24.554 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3291. 2017-07-27 10:26:24.579 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3292. 2017-07-27 10:26:24.580 |-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
  3293. 2017-07-27 10:26:24.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3294. 2017-07-27 10:26:24.612 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3295. 2017-07-27 10:26:24.654 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3296. 2017-07-27 10:26:24.656 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3297. 2017-07-27 10:26:24.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3298. 2017-07-27 10:26:24.658 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3299. 2017-07-27 10:26:24.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3300. 2017-07-27 10:26:24.658 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3301. 2017-07-27 10:26:24.687 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3302. 2017-07-27 10:26:24.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3303. 2017-07-27 10:26:24.688 |-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
  3304. 2017-07-27 10:26:24.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3305. 2017-07-27 10:26:24.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3306. 2017-07-27 10:26:24.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
  3307. 2017-07-27 10:26:24.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3308. 2017-07-27 10:26:24.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3309. 2017-07-27 10:26:24.752 |-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=?)
  3310. 2017-07-27 10:26:24.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3311. 2017-07-27 10:26:24.781 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3312. 2017-07-27 10:26:24.782 |-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=?)
  3313. 2017-07-27 10:26:24.782 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3314. 2017-07-27 10:26:24.785 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3315. 2017-07-27 10:26:24.786 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3316. 2017-07-27 10:26:24.787 |-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
  3317. 2017-07-27 10:26:24.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3318. 2017-07-27 10:26:24.810 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3319. 2017-07-27 10:26:24.814 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3320. 2017-07-27 10:26:24.815 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3321. 2017-07-27 10:26:24.816 |-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
  3322. 2017-07-27 10:26:24.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3323. 2017-07-27 10:26:24.825 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3324. 2017-07-27 10:26:24.837 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3325. 2017-07-27 10:26:24.840 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3326. 2017-07-27 10:26:24.840 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3327. 2017-07-27 10:26:24.854 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3328. 2017-07-27 10:26:24.869 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3329. 2017-07-27 10:26:24.870 |-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
  3330. 2017-07-27 10:26:24.870 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3331. 2017-07-27 10:26:24.901 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3332. 2017-07-27 10:26:24.902 |-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=?)
  3333. 2017-07-27 10:26:24.902 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3334. 2017-07-27 10:26:24.930 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3335. 2017-07-27 10:26:24.936 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3336. 2017-07-27 10:26:24.938 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3337. 2017-07-27 10:26:24.945 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3338. 2017-07-27 10:26:24.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3339. 2017-07-27 10:26:25.041 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  3340. 2017-07-27 10:26:25.075 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3341. 2017-07-27 10:26:25.077 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3342. 2017-07-27 10:26:25.078 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3343. 2017-07-27 10:26:25.106 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3344. 2017-07-27 10:26:25.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
  3345. 2017-07-27 10:26:25.107 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3346. 2017-07-27 10:26:25.138 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3347. 2017-07-27 10:26:25.139 |-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=?)
  3348. 2017-07-27 10:26:25.140 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3349. 2017-07-27 10:26:25.168 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3350. 2017-07-27 10:26:25.174 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3351. 2017-07-27 10:26:25.176 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3352. 2017-07-27 10:26:25.182 |-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=?
  3353. 2017-07-27 10:26:25.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3354. 2017-07-27 10:26:25.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3355. 2017-07-27 10:26:25.315 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3356. 2017-07-27 10:26:25.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3357. 2017-07-27 10:26:25.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3358. 2017-07-27 10:26:25.347 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3359. 2017-07-27 10:26:25.348 |-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
  3360. 2017-07-27 10:26:25.348 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3361. 2017-07-27 10:26:25.380 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3362. 2017-07-27 10:26:25.381 |-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=?)
  3363. 2017-07-27 10:26:25.381 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3364. 2017-07-27 10:26:25.409 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3365. 2017-07-27 10:26:25.414 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3366. 2017-07-27 10:26:25.416 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3367. 2017-07-27 10:26:25.419 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3368. 2017-07-27 10:26:25.420 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3369. 2017-07-27 10:26:25.451 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  3370. 2017-07-27 10:26:25.488 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3371. 2017-07-27 10:26:25.489 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3372. 2017-07-27 10:26:25.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3373. 2017-07-27 10:26:25.488 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3374. 2017-07-27 10:26:25.491 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3375. 2017-07-27 10:26:25.493 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3376. 2017-07-27 10:26:25.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3377. 2017-07-27 10:26:25.521 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3378. 2017-07-27 10:26:25.522 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3379. 2017-07-27 10:26:25.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3380. 2017-07-27 10:26:25.522 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3381. 2017-07-27 10:26:25.522 |-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
  3382. 2017-07-27 10:26:25.523 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3383. 2017-07-27 10:26:25.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3384. 2017-07-27 10:26:25.553 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3385. 2017-07-27 10:26:25.553 |-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
  3386. 2017-07-27 10:26:25.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3387. 2017-07-27 10:26:25.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3388. 2017-07-27 10:26:25.586 |-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
  3389. 2017-07-27 10:26:25.586 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3390. 2017-07-27 10:26:25.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3391. 2017-07-27 10:26:25.617 |-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=?)
  3392. 2017-07-27 10:26:25.618 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3393. 2017-07-27 10:26:25.647 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3394. 2017-07-27 10:26:25.648 |-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=?)
  3395. 2017-07-27 10:26:25.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3396. 2017-07-27 10:26:25.652 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3397. 2017-07-27 10:26:25.654 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3398. 2017-07-27 10:26:25.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3399. 2017-07-27 10:26:25.679 |-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=?)
  3400. 2017-07-27 10:26:25.679 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3401. 2017-07-27 10:26:25.682 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3402. 2017-07-27 10:26:25.684 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3403. 2017-07-27 10:26:25.708 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3404. 2017-07-27 10:26:25.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  3405. 2017-07-27 10:26:25.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  3406. 2017-07-27 10:26:25.712 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3407. 2017-07-27 10:26:25.713 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3408. 2017-07-27 10:26:25.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  3409. 2017-07-27 10:26:25.743 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  3410. 2017-07-27 10:26:25.744 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3411. 2017-07-27 10:26:25.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  3412. 2017-07-27 10:26:25.767 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3413. 2017-07-27 10:26:25.773 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  3414. 2017-07-27 10:26:25.847 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3415. 2017-07-27 10:27:52.884 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3416. 2017-07-27 10:27:52.884 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3417. 2017-07-27 10:27:52.913 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3418. 2017-07-27 10:27:52.913 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3419. 2017-07-27 10:27:52.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3420. 2017-07-27 10:27:52.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3421. 2017-07-27 10:27:52.942 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3422. 2017-07-27 10:27:52.942 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3423. 2017-07-27 10:27:52.965 |-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
  3424. 2017-07-27 10:27:52.966 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3425. 2017-07-27 10:27:52.969 |-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
  3426. 2017-07-27 10:27:52.969 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3427. 2017-07-27 10:27:52.993 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3428. 2017-07-27 10:27: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=?)
  3429. 2017-07-27 10:27:52.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3430. 2017-07-27 10:27:53.000 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3431. 2017-07-27 10:27:53.000 |-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=?)
  3432. 2017-07-27 10:27:53.000 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3433. 2017-07-27 10:27:53.018 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3434. 2017-07-27 10:27:53.021 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3435. 2017-07-27 10:27:53.022 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3436. 2017-07-27 10:27:53.028 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3437. 2017-07-27 10:27:53.032 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3438. 2017-07-27 10:27:53.034 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3439. 2017-07-27 10:27:53.042 |-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
  3440. 2017-07-27 10:27:53.042 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3441. 2017-07-27 10:27:53.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3442. 2017-07-27 10:27:53.079 |-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
  3443. 2017-07-27 10:27:53.080 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3444. 2017-07-27 10:27:53.111 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3445. 2017-07-27 10:27:53.453 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3446. 2017-07-27 10:27:53.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3447. 2017-07-27 10:27:53.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3448. 2017-07-27 10:27:53.474 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3449. 2017-07-27 10:27:53.475 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3450. 2017-07-27 10:27:53.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3451. 2017-07-27 10:27:53.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3452. 2017-07-27 10:27:53.486 |-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
  3453. 2017-07-27 10:27:53.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3454. 2017-07-27 10:27:53.504 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3455. 2017-07-27 10:27:53.504 |-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
  3456. 2017-07-27 10:27:53.505 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3457. 2017-07-27 10:27:53.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3458. 2017-07-27 10:27:53.520 |-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=?)
  3459. 2017-07-27 10:27:53.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3460. 2017-07-27 10:27:53.532 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3461. 2017-07-27 10:27:53.533 |-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=?)
  3462. 2017-07-27 10:27:53.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3463. 2017-07-27 10:27:53.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3464. 2017-07-27 10:27:53.551 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3465. 2017-07-27 10:27:53.552 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3466. 2017-07-27 10:27:53.558 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3467. 2017-07-27 10:27:53.561 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3468. 2017-07-27 10:27:53.562 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3469. 2017-07-27 10:27:53.567 |-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
  3470. 2017-07-27 10:27:53.568 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3471. 2017-07-27 10:27:53.595 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3472. 2017-07-27 10:27:53.596 |-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
  3473. 2017-07-27 10:27:53.597 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3474. 2017-07-27 10:27:53.625 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3475. 2017-07-27 10:27:53.677 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3476. 2017-07-27 10:27:53.677 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3477. 2017-07-27 10:27:53.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3478. 2017-07-27 10:27:53.679 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3479. 2017-07-27 10:27:53.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3480. 2017-07-27 10:27:53.679 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3481. 2017-07-27 10:27:53.707 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3482. 2017-07-27 10:27:53.707 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3483. 2017-07-27 10:27:53.708 |-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
  3484. 2017-07-27 10:27:53.708 |-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
  3485. 2017-07-27 10:27:53.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3486. 2017-07-27 10:27:53.708 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3487. 2017-07-27 10:27:53.736 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3488. 2017-07-27 10:27:53.737 |-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=?)
  3489. 2017-07-27 10:27:53.737 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3490. 2017-07-27 10:27:53.739 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3491. 2017-07-27 10:27:53.739 |-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=?)
  3492. 2017-07-27 10:27:53.739 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3493. 2017-07-27 10:27:53.762 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3494. 2017-07-27 10:27:53.766 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3495. 2017-07-27 10:27:53.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3496. 2017-07-27 10:27:53.768 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3497. 2017-07-27 10:27:53.773 |-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
  3498. 2017-07-27 10:27:53.774 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3499. 2017-07-27 10:27:53.775 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3500. 2017-07-27 10:27:53.777 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3501. 2017-07-27 10:27:53.779 |-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
  3502. 2017-07-27 10:27:53.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3503. 2017-07-27 10:27:53.802 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3504. 2017-07-27 10:27:53.809 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3505. 2017-07-27 10:27:53.824 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3506. 2017-07-27 10:27:53.825 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3507. 2017-07-27 10:27:53.826 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3508. 2017-07-27 10:27:53.854 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3509. 2017-07-27 10:27:53.855 |-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
  3510. 2017-07-27 10:27:53.855 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3511. 2017-07-27 10:27:53.887 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3512. 2017-07-27 10:27:53.888 |-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=?)
  3513. 2017-07-27 10:27:53.889 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3514. 2017-07-27 10:27:53.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3515. 2017-07-27 10:27:53.921 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3516. 2017-07-27 10:27:53.923 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3517. 2017-07-27 10:27:53.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3518. 2017-07-27 10:27:53.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3519. 2017-07-27 10:27:54.070 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  3520. 2017-07-27 10:27:54.113 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3521. 2017-07-27 10:27:54.115 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3522. 2017-07-27 10:27:54.115 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3523. 2017-07-27 10:27:54.143 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3524. 2017-07-27 10:27:54.144 |-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
  3525. 2017-07-27 10:27:54.144 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3526. 2017-07-27 10:27:54.176 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3527. 2017-07-27 10:27:54.177 |-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=?)
  3528. 2017-07-27 10:27:54.178 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3529. 2017-07-27 10:27:54.206 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3530. 2017-07-27 10:27:54.209 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3531. 2017-07-27 10:27:54.210 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3532. 2017-07-27 10:27:54.213 |-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=?
  3533. 2017-07-27 10:27:54.214 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3534. 2017-07-27 10:27:54.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3535. 2017-07-27 10:27:54.460 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3536. 2017-07-27 10:27:54.462 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3537. 2017-07-27 10:27:54.464 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3538. 2017-07-27 10:27:54.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3539. 2017-07-27 10:27:54.494 |-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
  3540. 2017-07-27 10:27:54.495 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3541. 2017-07-27 10:27:54.526 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3542. 2017-07-27 10:27:54.527 |-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=?)
  3543. 2017-07-27 10:27:54.527 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3544. 2017-07-27 10:27:54.555 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3545. 2017-07-27 10:27:54.557 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3546. 2017-07-27 10:27:54.559 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3547. 2017-07-27 10:27:54.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3548. 2017-07-27 10:27:54.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3549. 2017-07-27 10:27:54.592 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  3550. 2017-07-27 10:27:54.622 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3551. 2017-07-27 10:27:54.623 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3552. 2017-07-27 10:27:54.625 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3553. 2017-07-27 10:27:54.625 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3554. 2017-07-27 10:27:54.625 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3555. 2017-07-27 10:27:54.625 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3556. 2017-07-27 10:27:54.627 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3557. 2017-07-27 10:27:54.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3558. 2017-07-27 10:27:54.658 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3559. 2017-07-27 10:27:54.658 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3560. 2017-07-27 10:27:54.658 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3561. 2017-07-27 10:27:54.659 |-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
  3562. 2017-07-27 10:27:54.659 |-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
  3563. 2017-07-27 10:27:54.659 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3564. 2017-07-27 10:27:54.659 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3565. 2017-07-27 10:27:54.686 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3566. 2017-07-27 10:27:54.686 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3567. 2017-07-27 10:27:54.687 |-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=?)
  3568. 2017-07-27 10:27:54.687 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3569. 2017-07-27 10:27:54.689 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3570. 2017-07-27 10:27:54.690 |-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
  3571. 2017-07-27 10:27:54.690 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3572. 2017-07-27 10:27:54.712 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3573. 2017-07-27 10:27:54.712 |-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=?)
  3574. 2017-07-27 10:27:54.713 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3575. 2017-07-27 10:27:54.714 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3576. 2017-07-27 10:27:54.715 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3577. 2017-07-27 10:27:54.721 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3578. 2017-07-27 10:27:54.721 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  3579. 2017-07-27 10:27:54.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3580. 2017-07-27 10:27:54.737 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3581. 2017-07-27 10:27:54.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=?)
  3582. 2017-07-27 10:27:54.738 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3583. 2017-07-27 10:27:54.740 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3584. 2017-07-27 10:27:54.741 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3585. 2017-07-27 10:27:54.750 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  3586. 2017-07-27 10:27:54.762 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3587. 2017-07-27 10:27:54.765 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3588. 2017-07-27 10:27:54.765 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3589. 2017-07-27 10:27:54.768 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  3590. 2017-07-27 10:27:54.769 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  3591. 2017-07-27 10:27:54.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  3592. 2017-07-27 10:27:54.829 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  3593. 2017-07-27 10:27:54.830 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3594. 2017-07-27 10:27:54.915 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3595. 2017-07-27 10:30:36.626 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3596. 2017-07-27 10:30:36.630 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3597. 2017-07-27 10:30:36.655 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3598. 2017-07-27 10:30:36.656 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3599. 2017-07-27 10:30:36.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3600. 2017-07-27 10:30:36.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3601. 2017-07-27 10:30:36.684 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3602. 2017-07-27 10:30:36.691 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3603. 2017-07-27 10:30:36.717 |-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
  3604. 2017-07-27 10:30:36.718 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3605. 2017-07-27 10:30:36.718 |-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
  3606. 2017-07-27 10:30:36.718 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3607. 2017-07-27 10:30:36.764 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3608. 2017-07-27 10:30:36.765 |-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=?)
  3609. 2017-07-27 10:30:36.765 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3610. 2017-07-27 10:30:36.765 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3611. 2017-07-27 10:30:36.766 |-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=?)
  3612. 2017-07-27 10:30:36.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3613. 2017-07-27 10:30:36.790 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3614. 2017-07-27 10:30:36.791 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3615. 2017-07-27 10:30:36.792 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3616. 2017-07-27 10:30:36.793 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3617. 2017-07-27 10:30:36.794 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3618. 2017-07-27 10:30:36.795 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3619. 2017-07-27 10:30:36.797 |-DEBUG [http-nio-8089-exec-1] 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
  3620. 2017-07-27 10:30:36.797 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3621. 2017-07-27 10:30:36.827 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3622. 2017-07-27 10:30:36.828 |-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
  3623. 2017-07-27 10:30:36.828 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3624. 2017-07-27 10:30:36.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3625. 2017-07-27 10:30:36.926 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3626. 2017-07-27 10:30:36.926 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3627. 2017-07-27 10:30:36.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3628. 2017-07-27 10:30:36.928 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3629. 2017-07-27 10:30:36.928 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3630. 2017-07-27 10:30:36.929 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3631. 2017-07-27 10:30:36.956 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3632. 2017-07-27 10:30:36.956 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3633. 2017-07-27 10:30:36.957 |-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
  3634. 2017-07-27 10:30:36.957 |-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
  3635. 2017-07-27 10:30:36.957 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3636. 2017-07-27 10:30:36.957 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3637. 2017-07-27 10:30:36.985 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3638. 2017-07-27 10:30:36.986 |-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=?)
  3639. 2017-07-27 10:30:36.986 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3640. 2017-07-27 10:30:36.987 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3641. 2017-07-27 10:30:36.988 |-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=?)
  3642. 2017-07-27 10:30:36.988 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3643. 2017-07-27 10:30:37.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3644. 2017-07-27 10:30:37.013 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3645. 2017-07-27 10:30:37.014 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3646. 2017-07-27 10:30:37.014 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3647. 2017-07-27 10:30:37.015 |-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
  3648. 2017-07-27 10:30:37.016 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3649. 2017-07-27 10:30:37.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3650. 2017-07-27 10:30:37.017 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3651. 2017-07-27 10:30:37.019 |-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
  3652. 2017-07-27 10:30:37.019 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3653. 2017-07-27 10:30:37.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3654. 2017-07-27 10:30:37.048 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3655. 2017-07-27 10:30:37.058 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3656. 2017-07-27 10:30:37.060 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3657. 2017-07-27 10:30:37.060 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3658. 2017-07-27 10:30:37.088 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3659. 2017-07-27 10:30:37.089 |-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
  3660. 2017-07-27 10:30:37.089 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3661. 2017-07-27 10:30:37.118 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3662. 2017-07-27 10:30:37.119 |-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-07-27 10:30:37.119 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3664. 2017-07-27 10:30:37.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3665. 2017-07-27 10:30:37.148 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3666. 2017-07-27 10:30:37.149 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3667. 2017-07-27 10:30:37.153 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3668. 2017-07-27 10:30:37.154 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3669. 2017-07-27 10:30:37.249 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  3670. 2017-07-27 10:30:37.288 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3671. 2017-07-27 10:30:37.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3672. 2017-07-27 10:30:37.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3673. 2017-07-27 10:30:37.318 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3674. 2017-07-27 10:30:37.319 |-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
  3675. 2017-07-27 10:30:37.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3676. 2017-07-27 10:30:37.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3677. 2017-07-27 10:30:37.363 |-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=?)
  3678. 2017-07-27 10:30:37.364 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3679. 2017-07-27 10:30:37.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3680. 2017-07-27 10:30:37.394 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3681. 2017-07-27 10:30:37.396 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3682. 2017-07-27 10:30:37.400 |-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=?
  3683. 2017-07-27 10:30:37.401 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3684. 2017-07-27 10:30:37.427 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3685. 2017-07-27 10:30:37.665 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3686. 2017-07-27 10:30:37.667 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3687. 2017-07-27 10:30:37.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3688. 2017-07-27 10:30:37.696 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3689. 2017-07-27 10:30:37.697 |-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
  3690. 2017-07-27 10:30:37.698 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3691. 2017-07-27 10:30:37.727 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3692. 2017-07-27 10:30:37.728 |-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=?)
  3693. 2017-07-27 10:30:37.728 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3694. 2017-07-27 10:30:37.755 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3695. 2017-07-27 10:30:37.758 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3696. 2017-07-27 10:30:37.759 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3697. 2017-07-27 10:30:37.762 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3698. 2017-07-27 10:30:37.762 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3699. 2017-07-27 10:30:37.793 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  3700. 2017-07-27 10:30:37.822 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3701. 2017-07-27 10:30:37.822 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3702. 2017-07-27 10:30:37.823 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3703. 2017-07-27 10:30:37.824 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3704. 2017-07-27 10:30:37.824 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3705. 2017-07-27 10:30:37.825 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3706. 2017-07-27 10:30:37.825 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3707. 2017-07-27 10:30:37.850 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3708. 2017-07-27 10:30:37.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3709. 2017-07-27 10:30:37.853 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3710. 2017-07-27 10:30:37.853 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3711. 2017-07-27 10:30:37.854 |-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
  3712. 2017-07-27 10:30:37.854 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3713. 2017-07-27 10:30:37.855 |-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
  3714. 2017-07-27 10:30:37.855 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3715. 2017-07-27 10:30:37.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3716. 2017-07-27 10:30:37.882 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3717. 2017-07-27 10:30:37.882 |-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=?)
  3718. 2017-07-27 10:30:37.883 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3719. 2017-07-27 10:30:37.883 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3720. 2017-07-27 10:30:37.883 |-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=?)
  3721. 2017-07-27 10:30:37.884 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3722. 2017-07-27 10:30:37.906 |-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
  3723. 2017-07-27 10:30:37.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3724. 2017-07-27 10:30:37.906 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3725. 2017-07-27 10:30:37.909 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3726. 2017-07-27 10:30:37.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3727. 2017-07-27 10:30:37.910 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3728. 2017-07-27 10:30:37.912 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3729. 2017-07-27 10:30:37.913 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3730. 2017-07-27 10:30:37.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  3731. 2017-07-27 10:30:37.916 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  3732. 2017-07-27 10:30:37.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3733. 2017-07-27 10:30:37.938 |-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=?)
  3734. 2017-07-27 10:30:37.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3735. 2017-07-27 10:30:37.946 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  3736. 2017-07-27 10:30:37.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3737. 2017-07-27 10:30:37.970 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3738. 2017-07-27 10:30:37.971 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3739. 2017-07-27 10:30:37.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  3740. 2017-07-27 10:30:37.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3741. 2017-07-27 10:30:37.993 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  3742. 2017-07-27 10:30:37.994 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3743. 2017-07-27 10:30:38.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  3744. 2017-07-27 10:30:38.081 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3745. 2017-07-27 10:30:52.221 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3746. 2017-07-27 10:30:52.221 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3747. 2017-07-27 10:30:52.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3748. 2017-07-27 10:30:52.224 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3749. 2017-07-27 10:30:52.223 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3750. 2017-07-27 10:30:52.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3751. 2017-07-27 10:30:52.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3752. 2017-07-27 10:30:52.252 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3753. 2017-07-27 10:30:52.253 |-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
  3754. 2017-07-27 10:30:52.253 |-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
  3755. 2017-07-27 10:30:52.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3756. 2017-07-27 10:30:52.253 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3757. 2017-07-27 10:30:52.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3758. 2017-07-27 10:30:52.284 |-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=?)
  3759. 2017-07-27 10:30:52.284 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3760. 2017-07-27 10:30:52.284 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3761. 2017-07-27 10:30:52.285 |-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=?)
  3762. 2017-07-27 10:30:52.285 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3763. 2017-07-27 10:30:52.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3764. 2017-07-27 10:30:52.313 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3765. 2017-07-27 10:30:52.314 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3766. 2017-07-27 10:30:52.316 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3767. 2017-07-27 10:30:52.316 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3768. 2017-07-27 10:30:52.318 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3769. 2017-07-27 10:30:52.321 |-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
  3770. 2017-07-27 10:30:52.322 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3771. 2017-07-27 10:30:52.353 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3772. 2017-07-27 10:30:52.354 |-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
  3773. 2017-07-27 10:30:52.354 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3774. 2017-07-27 10:30:52.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3775. 2017-07-27 10:30:52.434 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3776. 2017-07-27 10:30:52.435 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3777. 2017-07-27 10:30:52.437 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3778. 2017-07-27 10:30:52.437 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3779. 2017-07-27 10:30:52.437 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3780. 2017-07-27 10:30:52.438 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3781. 2017-07-27 10:30:52.465 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3782. 2017-07-27 10:30:52.465 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3783. 2017-07-27 10:30:52.466 |-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
  3784. 2017-07-27 10:30:52.466 |-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
  3785. 2017-07-27 10:30:52.467 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3786. 2017-07-27 10:30:52.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3787. 2017-07-27 10:30:52.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3788. 2017-07-27 10:30:52.496 |-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=?)
  3789. 2017-07-27 10:30:52.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3790. 2017-07-27 10:30:52.497 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3791. 2017-07-27 10:30:52.498 |-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=?)
  3792. 2017-07-27 10:30:52.498 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3793. 2017-07-27 10:30:52.523 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3794. 2017-07-27 10:30:52.525 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3795. 2017-07-27 10:30:52.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3796. 2017-07-27 10:30:52.527 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3797. 2017-07-27 10:30:52.528 |-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
  3798. 2017-07-27 10:30:52.528 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3799. 2017-07-27 10:30:52.529 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3800. 2017-07-27 10:30:52.530 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3801. 2017-07-27 10:30:52.532 |-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
  3802. 2017-07-27 10:30:52.532 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3803. 2017-07-27 10:30:52.557 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3804. 2017-07-27 10:30:52.560 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3805. 2017-07-27 10:30:52.571 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3806. 2017-07-27 10:30:52.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3807. 2017-07-27 10:30:52.573 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3808. 2017-07-27 10:30:52.600 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3809. 2017-07-27 10:30:52.601 |-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
  3810. 2017-07-27 10:30:52.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3811. 2017-07-27 10:30:52.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3812. 2017-07-27 10:30:52.633 |-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=?)
  3813. 2017-07-27 10:30:52.633 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3814. 2017-07-27 10:30:52.662 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3815. 2017-07-27 10:30:52.664 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3816. 2017-07-27 10:30:52.666 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3817. 2017-07-27 10:30:52.669 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3818. 2017-07-27 10:30:52.670 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3819. 2017-07-27 10:30:52.814 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  3820. 2017-07-27 10:30:52.845 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3821. 2017-07-27 10:30:52.846 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3822. 2017-07-27 10:30:52.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3823. 2017-07-27 10:30:52.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3824. 2017-07-27 10:30:52.881 |-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
  3825. 2017-07-27 10:30:52.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3826. 2017-07-27 10:30:52.916 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3827. 2017-07-27 10:30:52.917 |-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=?)
  3828. 2017-07-27 10:30:52.917 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3829. 2017-07-27 10:30:52.945 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3830. 2017-07-27 10:30:52.947 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3831. 2017-07-27 10:30:52.948 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3832. 2017-07-27 10:30:52.951 |-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=?
  3833. 2017-07-27 10:30:52.952 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3834. 2017-07-27 10:30:52.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3835. 2017-07-27 10:30:53.200 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3836. 2017-07-27 10:30:53.201 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3837. 2017-07-27 10:30:53.202 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3838. 2017-07-27 10:30:53.230 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3839. 2017-07-27 10:30:53.231 |-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
  3840. 2017-07-27 10:30:53.232 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3841. 2017-07-27 10:30:53.263 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3842. 2017-07-27 10:30:53.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=?)
  3843. 2017-07-27 10:30:53.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3844. 2017-07-27 10:30:53.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3845. 2017-07-27 10:30:53.296 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3846. 2017-07-27 10:30:53.297 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3847. 2017-07-27 10:30:53.299 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3848. 2017-07-27 10:30:53.300 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3849. 2017-07-27 10:30:53.330 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  3850. 2017-07-27 10:30:53.355 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3851. 2017-07-27 10:30:53.355 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3852. 2017-07-27 10:30:53.357 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3853. 2017-07-27 10:30:53.357 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3854. 2017-07-27 10:30:53.358 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3855. 2017-07-27 10:30:53.358 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3856. 2017-07-27 10:30:53.362 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3857. 2017-07-27 10:30:53.364 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3858. 2017-07-27 10:30:53.365 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3859. 2017-07-27 10:30:53.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3860. 2017-07-27 10:30:53.387 |-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
  3861. 2017-07-27 10:30:53.387 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3862. 2017-07-27 10:30:53.393 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3863. 2017-07-27 10:30:53.393 |-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
  3864. 2017-07-27 10:30:53.394 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3865. 2017-07-27 10:30:53.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3866. 2017-07-27 10:30:53.419 |-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=?)
  3867. 2017-07-27 10:30:53.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3868. 2017-07-27 10:30:53.448 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3869. 2017-07-27 10:30:53.452 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3870. 2017-07-27 10:30:53.454 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3871. 2017-07-27 10:30:53.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  3872. 2017-07-27 10:30:53.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  3873. 2017-07-27 10:30:53.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  3874. 2017-07-27 10:30:54.986 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3875. 2017-07-27 10:30:54.988 |-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=?)
  3876. 2017-07-27 10:30:54.988 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3877. 2017-07-27 10:30:55.015 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3878. 2017-07-27 10:30:55.020 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3879. 2017-07-27 10:30:55.022 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3880. 2017-07-27 10:30:55.027 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  3881. 2017-07-27 10:30:55.028 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3882. 2017-07-27 10:30:55.056 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  3883. 2017-07-27 10:30:55.136 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3884. 2017-07-27 10:30:55.137 |-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
  3885. 2017-07-27 10:30:55.137 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3886. 2017-07-27 10:30:55.167 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3887. 2017-07-27 10:30:55.168 |-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=?)
  3888. 2017-07-27 10:30:55.169 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3889. 2017-07-27 10:30:55.195 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3890. 2017-07-27 10:30:55.198 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3891. 2017-07-27 10:30:55.199 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3892. 2017-07-27 10:30:55.271 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  3893. 2017-07-27 10:30:55.271 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  3894. 2017-07-27 10:30:55.353 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3895. 2017-07-27 10:31:27.300 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3896. 2017-07-27 10:31:27.300 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3897. 2017-07-27 10:31:27.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3898. 2017-07-27 10:31:27.303 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3899. 2017-07-27 10:31:27.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3900. 2017-07-27 10:31:27.303 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3901. 2017-07-27 10:31:27.331 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3902. 2017-07-27 10:31:27.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3903. 2017-07-27 10:31:27.332 |-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
  3904. 2017-07-27 10:31:27.332 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3905. 2017-07-27 10:31:27.332 |-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
  3906. 2017-07-27 10:31:27.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3907. 2017-07-27 10:31:27.361 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3908. 2017-07-27 10:31:27.361 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3909. 2017-07-27 10:31:27.362 |-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=?)
  3910. 2017-07-27 10:31:27.362 |-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=?)
  3911. 2017-07-27 10:31:27.362 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3912. 2017-07-27 10:31:27.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3913. 2017-07-27 10:31:27.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3914. 2017-07-27 10:31:27.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3915. 2017-07-27 10:31:27.393 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3916. 2017-07-27 10:31:27.393 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3917. 2017-07-27 10:31:27.394 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3918. 2017-07-27 10:31:27.395 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3919. 2017-07-27 10:31:27.400 |-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
  3920. 2017-07-27 10:31:27.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3921. 2017-07-27 10:31:27.430 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3922. 2017-07-27 10:31:27.431 |-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
  3923. 2017-07-27 10:31:27.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3924. 2017-07-27 10:31:27.489 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3925. 2017-07-27 10:31:27.548 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3926. 2017-07-27 10:31:27.548 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3927. 2017-07-27 10:31:27.549 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3928. 2017-07-27 10:31:27.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3929. 2017-07-27 10:31:27.550 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3930. 2017-07-27 10:31:27.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3931. 2017-07-27 10:31:27.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3932. 2017-07-27 10:31:27.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3933. 2017-07-27 10:31:27.579 |-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
  3934. 2017-07-27 10:31:27.579 |-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
  3935. 2017-07-27 10:31:27.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3936. 2017-07-27 10:31:27.579 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3937. 2017-07-27 10:31:27.609 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3938. 2017-07-27 10:31:27.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3939. 2017-07-27 10:31:27.610 |-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=?)
  3940. 2017-07-27 10:31:27.610 |-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=?)
  3941. 2017-07-27 10:31:27.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3942. 2017-07-27 10:31:27.610 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3943. 2017-07-27 10:31:27.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3944. 2017-07-27 10:31:27.637 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3945. 2017-07-27 10:31:27.640 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3946. 2017-07-27 10:31:27.640 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3947. 2017-07-27 10:31:27.642 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3948. 2017-07-27 10:31:27.642 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3949. 2017-07-27 10:31:27.644 |-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
  3950. 2017-07-27 10:31:27.644 |-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
  3951. 2017-07-27 10:31:27.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3952. 2017-07-27 10:31:27.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3953. 2017-07-27 10:31:27.674 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3954. 2017-07-27 10:31:27.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3955. 2017-07-27 10:31:27.688 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3956. 2017-07-27 10:31:27.690 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3957. 2017-07-27 10:31:27.690 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3958. 2017-07-27 10:31:27.718 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3959. 2017-07-27 10:31:27.719 |-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
  3960. 2017-07-27 10:31:27.720 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3961. 2017-07-27 10:31:27.750 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3962. 2017-07-27 10:31:27.751 |-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=?)
  3963. 2017-07-27 10:31:27.751 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3964. 2017-07-27 10:31:27.777 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3965. 2017-07-27 10:31:27.780 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3966. 2017-07-27 10:31:27.781 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3967. 2017-07-27 10:31:27.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3968. 2017-07-27 10:31:27.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3969. 2017-07-27 10:31:27.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  3970. 2017-07-27 10:31:28.000 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3971. 2017-07-27 10:31:28.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3972. 2017-07-27 10:31:28.002 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3973. 2017-07-27 10:31:28.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3974. 2017-07-27 10:31:28.048 |-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
  3975. 2017-07-27 10:31:28.048 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3976. 2017-07-27 10:31:28.079 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3977. 2017-07-27 10:31:28.081 |-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=?)
  3978. 2017-07-27 10:31:28.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3979. 2017-07-27 10:31:28.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3980. 2017-07-27 10:31:28.111 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3981. 2017-07-27 10:31:28.113 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3982. 2017-07-27 10:31:28.117 |-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=?
  3983. 2017-07-27 10:31:28.118 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3984. 2017-07-27 10:31:28.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3985. 2017-07-27 10:31:28.381 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3986. 2017-07-27 10:31:28.383 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  3987. 2017-07-27 10:31:28.384 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  3988. 2017-07-27 10:31:28.463 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3989. 2017-07-27 10:31:28.464 |-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
  3990. 2017-07-27 10:31:28.465 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  3991. 2017-07-27 10:31:28.543 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  3992. 2017-07-27 10:31:28.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=?)
  3993. 2017-07-27 10:31:28.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  3994. 2017-07-27 10:31:28.637 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3995. 2017-07-27 10:31:28.640 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  3996. 2017-07-27 10:31:28.642 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  3997. 2017-07-27 10:31:28.646 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3998. 2017-07-27 10:31:28.647 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3999. 2017-07-27 10:31:28.718 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4000. 2017-07-27 10:31:28.758 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4001. 2017-07-27 10:31:28.760 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4002. 2017-07-27 10:31:28.760 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4003. 2017-07-27 10:31:28.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4004. 2017-07-27 10:31:28.762 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4005. 2017-07-27 10:31:28.762 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4006. 2017-07-27 10:31:28.766 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4007. 2017-07-27 10:31:28.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4008. 2017-07-27 10:31:28.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4009. 2017-07-27 10:31:28.810 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4010. 2017-07-27 10:31:28.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4011. 2017-07-27 10:31:28.811 |-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
  4012. 2017-07-27 10:31:28.811 |-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
  4013. 2017-07-27 10:31:28.811 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4014. 2017-07-27 10:31:28.811 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4015. 2017-07-27 10:31:28.822 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4016. 2017-07-27 10:31:28.823 |-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
  4017. 2017-07-27 10:31:28.823 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4018. 2017-07-27 10:31:28.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4019. 2017-07-27 10:31:28.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4020. 2017-07-27 10:31:28.853 |-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=?)
  4021. 2017-07-27 10:31:28.853 |-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=?)
  4022. 2017-07-27 10:31:28.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4023. 2017-07-27 10:31:28.853 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4024. 2017-07-27 10:31:28.862 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4025. 2017-07-27 10:31:28.863 |-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=?)
  4026. 2017-07-27 10:31:28.863 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4027. 2017-07-27 10:31:28.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4028. 2017-07-27 10:31:28.880 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4029. 2017-07-27 10:31:28.882 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4030. 2017-07-27 10:31:28.883 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4031. 2017-07-27 10:31:28.884 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4032. 2017-07-27 10:31:28.884 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4033. 2017-07-27 10:31:28.887 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4034. 2017-07-27 10:31:28.888 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4035. 2017-07-27 10:31:28.888 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4036. 2017-07-27 10:31:28.891 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4037. 2017-07-27 10:31:28.892 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4038. 2017-07-27 10:31:28.897 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4039. 2017-07-27 10:31:28.898 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4040. 2017-07-27 10:31:28.959 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4041. 2017-07-27 10:31:28.964 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4042. 2017-07-27 10:31:28.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4043. 2017-07-27 10:31:28.990 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4044. 2017-07-27 10:31:29.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4045. 2017-07-27 10:32:41.415 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4046. 2017-07-27 10:32:41.416 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4047. 2017-07-27 10:32:41.442 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4048. 2017-07-27 10:32:41.443 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4049. 2017-07-27 10:32:41.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4050. 2017-07-27 10:32:41.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4051. 2017-07-27 10:32:41.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4052. 2017-07-27 10:32:41.480 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4053. 2017-07-27 10:32:41.504 |-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
  4054. 2017-07-27 10:32:41.504 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4055. 2017-07-27 10:32:41.506 |-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
  4056. 2017-07-27 10:32:41.506 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4057. 2017-07-27 10:32:41.531 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4058. 2017-07-27 10:32:41.533 |-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=?)
  4059. 2017-07-27 10:32:41.533 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4060. 2017-07-27 10:32:41.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4061. 2017-07-27 10:32:41.535 |-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=?)
  4062. 2017-07-27 10:32:41.536 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4063. 2017-07-27 10:32:41.558 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4064. 2017-07-27 10:32:41.562 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4065. 2017-07-27 10:32:41.562 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4066. 2017-07-27 10:32:41.563 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4067. 2017-07-27 10:32:41.565 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4068. 2017-07-27 10:32:41.566 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4069. 2017-07-27 10:32:41.571 |-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
  4070. 2017-07-27 10:32:41.572 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4071. 2017-07-27 10:32:41.600 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4072. 2017-07-27 10:32:41.601 |-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
  4073. 2017-07-27 10:32:41.601 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4074. 2017-07-27 10:32:41.631 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4075. 2017-07-27 10:32:41.686 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4076. 2017-07-27 10:32:41.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4077. 2017-07-27 10:32:41.689 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4078. 2017-07-27 10:32:41.691 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4079. 2017-07-27 10:32:41.693 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4080. 2017-07-27 10:32:41.693 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4081. 2017-07-27 10:32:41.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4082. 2017-07-27 10:32:41.718 |-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
  4083. 2017-07-27 10:32:41.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4084. 2017-07-27 10:32:41.721 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4085. 2017-07-27 10:32:41.721 |-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
  4086. 2017-07-27 10:32:41.722 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4087. 2017-07-27 10:32:41.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4088. 2017-07-27 10:32:41.747 |-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=?)
  4089. 2017-07-27 10:32:41.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4090. 2017-07-27 10:32:41.748 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4091. 2017-07-27 10:32:41.749 |-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=?)
  4092. 2017-07-27 10:32:41.749 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4093. 2017-07-27 10:32:41.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4094. 2017-07-27 10:32:41.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4095. 2017-07-27 10:32:41.775 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4096. 2017-07-27 10:32:41.776 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4097. 2017-07-27 10:32:41.776 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4098. 2017-07-27 10:32:41.776 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4099. 2017-07-27 10:32:41.777 |-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
  4100. 2017-07-27 10:32:41.777 |-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
  4101. 2017-07-27 10:32:41.778 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4102. 2017-07-27 10:32:41.778 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4103. 2017-07-27 10:32:41.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4104. 2017-07-27 10:32:41.808 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4105. 2017-07-27 10:32:41.819 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4106. 2017-07-27 10:32:41.821 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4107. 2017-07-27 10:32:41.821 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4108. 2017-07-27 10:32:41.849 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4109. 2017-07-27 10:32:41.850 |-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
  4110. 2017-07-27 10:32:41.850 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4111. 2017-07-27 10:32:41.878 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4112. 2017-07-27 10:32:41.878 |-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=?)
  4113. 2017-07-27 10:32:41.879 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4114. 2017-07-27 10:32:41.910 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4115. 2017-07-27 10:32:41.916 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4116. 2017-07-27 10:32:41.917 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4117. 2017-07-27 10:32:41.921 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4118. 2017-07-27 10:32:41.922 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4119. 2017-07-27 10:32:42.047 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  4120. 2017-07-27 10:32:42.077 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4121. 2017-07-27 10:32:42.079 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4122. 2017-07-27 10:32:42.079 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4123. 2017-07-27 10:32:42.115 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4124. 2017-07-27 10:32:42.116 |-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
  4125. 2017-07-27 10:32:42.117 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4126. 2017-07-27 10:32:42.145 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4127. 2017-07-27 10:32:42.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=?)
  4128. 2017-07-27 10:32:42.146 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4129. 2017-07-27 10:32:42.173 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4130. 2017-07-27 10:32:42.175 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4131. 2017-07-27 10:32:42.176 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4132. 2017-07-27 10:32:42.179 |-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=?
  4133. 2017-07-27 10:32:42.180 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4134. 2017-07-27 10:32:42.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4135. 2017-07-27 10:32:42.475 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4136. 2017-07-27 10:32:42.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4137. 2017-07-27 10:32:42.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4138. 2017-07-27 10:32:42.526 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4139. 2017-07-27 10:32:42.527 |-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
  4140. 2017-07-27 10:32:42.527 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4141. 2017-07-27 10:32:42.560 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4142. 2017-07-27 10:32:42.560 |-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=?)
  4143. 2017-07-27 10:32:42.561 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4144. 2017-07-27 10:32:42.587 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4145. 2017-07-27 10:32:42.589 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4146. 2017-07-27 10:32:42.591 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4147. 2017-07-27 10:32:42.594 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4148. 2017-07-27 10:32:42.594 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4149. 2017-07-27 10:32:42.639 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4150. 2017-07-27 10:32:42.660 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4151. 2017-07-27 10:32:42.661 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4152. 2017-07-27 10:32:42.662 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4153. 2017-07-27 10:32:42.663 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4154. 2017-07-27 10:32:42.663 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4155. 2017-07-27 10:32:42.663 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4156. 2017-07-27 10:32:42.666 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4157. 2017-07-27 10:32:42.691 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4158. 2017-07-27 10:32:42.691 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4159. 2017-07-27 10:32:42.692 |-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
  4160. 2017-07-27 10:32:42.692 |-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
  4161. 2017-07-27 10:32:42.692 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4162. 2017-07-27 10:32:42.692 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4163. 2017-07-27 10:32:42.692 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4164. 2017-07-27 10:32:42.693 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4165. 2017-07-27 10:32:42.720 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4166. 2017-07-27 10:32:42.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4167. 2017-07-27 10:32:42.720 |-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=?)
  4168. 2017-07-27 10:32:42.721 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4169. 2017-07-27 10:32:42.721 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4170. 2017-07-27 10:32:42.721 |-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=?)
  4171. 2017-07-27 10:32:42.722 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4172. 2017-07-27 10:32:42.745 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4173. 2017-07-27 10:32:42.746 |-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
  4174. 2017-07-27 10:32:42.746 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4175. 2017-07-27 10:32:42.748 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4176. 2017-07-27 10:32:42.748 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4177. 2017-07-27 10:32:42.750 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4178. 2017-07-27 10:32:42.751 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4179. 2017-07-27 10:32:42.752 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4180. 2017-07-27 10:32:42.754 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4181. 2017-07-27 10:32:42.755 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4182. 2017-07-27 10:32:42.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4183. 2017-07-27 10:32:42.778 |-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=?)
  4184. 2017-07-27 10:32:42.778 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4185. 2017-07-27 10:32:42.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4186. 2017-07-27 10:32:42.804 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4187. 2017-07-27 10:32:42.807 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4188. 2017-07-27 10:32:42.808 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4189. 2017-07-27 10:32:42.811 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4190. 2017-07-27 10:32:42.812 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4191. 2017-07-27 10:32:42.840 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4192. 2017-07-27 10:32:42.877 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4193. 2017-07-27 10:32:42.878 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4194. 2017-07-27 10:32:42.961 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4195. 2017-07-27 10:33:38.913 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4196. 2017-07-27 10:33:38.913 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4197. 2017-07-27 10:33:38.916 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4198. 2017-07-27 10:33:38.916 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4199. 2017-07-27 10:33:38.916 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4200. 2017-07-27 10:33:38.918 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4201. 2017-07-27 10:33:38.945 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4202. 2017-07-27 10:33:38.945 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4203. 2017-07-27 10:33:38.946 |-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
  4204. 2017-07-27 10:33:38.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4205. 2017-07-27 10:33:38.946 |-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
  4206. 2017-07-27 10:33:38.947 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4207. 2017-07-27 10:33:38.976 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4208. 2017-07-27 10:33:38.977 |-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=?)
  4209. 2017-07-27 10:33:38.977 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4210. 2017-07-27 10:33:38.984 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4211. 2017-07-27 10:33:38.985 |-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=?)
  4212. 2017-07-27 10:33:38.986 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4213. 2017-07-27 10:33:39.004 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4214. 2017-07-27 10:33:39.006 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4215. 2017-07-27 10:33:39.007 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4216. 2017-07-27 10:33:39.011 |-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
  4217. 2017-07-27 10:33:39.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4218. 2017-07-27 10:33:39.012 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4219. 2017-07-27 10:33:39.015 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4220. 2017-07-27 10:33:39.017 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4221. 2017-07-27 10:33:39.040 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4222. 2017-07-27 10:33:39.041 |-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
  4223. 2017-07-27 10:33:39.042 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4224. 2017-07-27 10:33:39.072 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4225. 2017-07-27 10:33:39.137 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4226. 2017-07-27 10:33:39.137 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4227. 2017-07-27 10:33:39.138 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4228. 2017-07-27 10:33:39.138 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4229. 2017-07-27 10:33:39.139 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4230. 2017-07-27 10:33:39.139 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4231. 2017-07-27 10:33:39.167 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4232. 2017-07-27 10:33:39.167 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4233. 2017-07-27 10:33:39.168 |-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
  4234. 2017-07-27 10:33:39.168 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4235. 2017-07-27 10:33:39.168 |-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
  4236. 2017-07-27 10:33:39.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4237. 2017-07-27 10:33:39.198 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4238. 2017-07-27 10:33:39.199 |-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=?)
  4239. 2017-07-27 10:33:39.199 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4240. 2017-07-27 10:33:39.204 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4241. 2017-07-27 10:33:39.205 |-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=?)
  4242. 2017-07-27 10:33:39.206 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4243. 2017-07-27 10:33:39.226 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4244. 2017-07-27 10:33:39.231 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4245. 2017-07-27 10:33:39.232 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4246. 2017-07-27 10:33:39.232 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4247. 2017-07-27 10:33:39.234 |-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
  4248. 2017-07-27 10:33:39.234 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4249. 2017-07-27 10:33:39.234 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4250. 2017-07-27 10:33:39.238 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4251. 2017-07-27 10:33:39.240 |-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
  4252. 2017-07-27 10:33:39.240 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4253. 2017-07-27 10:33:39.262 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4254. 2017-07-27 10:33:39.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4255. 2017-07-27 10:33:39.309 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4256. 2017-07-27 10:33:39.311 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4257. 2017-07-27 10:33:39.312 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4258. 2017-07-27 10:33:39.340 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4259. 2017-07-27 10:33:39.341 |-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
  4260. 2017-07-27 10:33:39.342 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4261. 2017-07-27 10:33:39.372 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4262. 2017-07-27 10:33:39.373 |-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=?)
  4263. 2017-07-27 10:33:39.374 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4264. 2017-07-27 10:33:39.401 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4265. 2017-07-27 10:33:39.405 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4266. 2017-07-27 10:33:39.406 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4267. 2017-07-27 10:33:39.414 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4268. 2017-07-27 10:33:39.415 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4269. 2017-07-27 10:33:39.524 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  4270. 2017-07-27 10:33:39.560 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4271. 2017-07-27 10:33:39.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4272. 2017-07-27 10:33:39.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4273. 2017-07-27 10:33:39.590 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4274. 2017-07-27 10:33:39.590 |-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
  4275. 2017-07-27 10:33:39.591 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4276. 2017-07-27 10:33:39.619 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4277. 2017-07-27 10:33:39.620 |-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=?)
  4278. 2017-07-27 10:33:39.621 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4279. 2017-07-27 10:33:39.733 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4280. 2017-07-27 10:33:39.735 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4281. 2017-07-27 10:33:39.736 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4282. 2017-07-27 10:33:39.754 |-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=?
  4283. 2017-07-27 10:33:39.755 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4284. 2017-07-27 10:33:39.784 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4285. 2017-07-27 10:33:40.003 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4286. 2017-07-27 10:33:40.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4287. 2017-07-27 10:33:40.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4288. 2017-07-27 10:33:40.034 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4289. 2017-07-27 10:33:40.035 |-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
  4290. 2017-07-27 10:33:40.035 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4291. 2017-07-27 10:33:40.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4292. 2017-07-27 10:33:40.066 |-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=?)
  4293. 2017-07-27 10:33:40.066 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4294. 2017-07-27 10:33:40.093 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4295. 2017-07-27 10:33:40.096 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4296. 2017-07-27 10:33:40.097 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4297. 2017-07-27 10:33:40.099 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4298. 2017-07-27 10:33:40.100 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4299. 2017-07-27 10:33:40.131 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4300. 2017-07-27 10:33:40.178 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4301. 2017-07-27 10:33:40.178 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4302. 2017-07-27 10:33:40.178 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4303. 2017-07-27 10:33:40.179 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4304. 2017-07-27 10:33:40.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4305. 2017-07-27 10:33:40.180 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4306. 2017-07-27 10:33:40.180 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4307. 2017-07-27 10:33:40.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4308. 2017-07-27 10:33:40.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4309. 2017-07-27 10:33:40.208 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4310. 2017-07-27 10:33:40.208 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4311. 2017-07-27 10:33:40.209 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4312. 2017-07-27 10:33:40.209 |-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
  4313. 2017-07-27 10:33:40.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4314. 2017-07-27 10:33:40.210 |-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
  4315. 2017-07-27 10:33:40.210 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4316. 2017-07-27 10:33:40.211 |-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
  4317. 2017-07-27 10:33:40.211 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4318. 2017-07-27 10:33:40.237 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4319. 2017-07-27 10:33:40.238 |-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=?)
  4320. 2017-07-27 10:33:40.239 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4321. 2017-07-27 10:33:40.239 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4322. 2017-07-27 10:33:40.239 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4323. 2017-07-27 10:33:40.240 |-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=?)
  4324. 2017-07-27 10:33:40.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=?)
  4325. 2017-07-27 10:33:40.240 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4326. 2017-07-27 10:33:40.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4327. 2017-07-27 10:33:40.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4328. 2017-07-27 10:33:40.265 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4329. 2017-07-27 10:33:40.266 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4330. 2017-07-27 10:33:40.266 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4331. 2017-07-27 10:33:40.267 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4332. 2017-07-27 10:33:40.268 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4333. 2017-07-27 10:33:40.268 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4334. 2017-07-27 10:33:40.269 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4335. 2017-07-27 10:33:40.269 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4336. 2017-07-27 10:33:40.271 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4337. 2017-07-27 10:33:40.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4338. 2017-07-27 10:33:40.272 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4339. 2017-07-27 10:33:40.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4340. 2017-07-27 10:33:40.312 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4341. 2017-07-27 10:33:40.314 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4342. 2017-07-27 10:33:40.364 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4343. 2017-07-27 10:33:40.365 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4344. 2017-07-27 10:33:40.451 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4345. 2017-07-27 10:33:47.660 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4346. 2017-07-27 10:33:47.662 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4347. 2017-07-27 10:33:47.663 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4348. 2017-07-27 10:33:47.691 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4349. 2017-07-27 10:33:47.692 |-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
  4350. 2017-07-27 10:33:47.692 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4351. 2017-07-27 10:33:47.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4352. 2017-07-27 10:33:47.723 |-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=?)
  4353. 2017-07-27 10:33:47.723 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4354. 2017-07-27 10:33:47.749 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4355. 2017-07-27 10:33:47.751 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4356. 2017-07-27 10:33:47.752 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4357. 2017-07-27 10:33:47.755 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4358. 2017-07-27 10:33:47.755 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4359. 2017-07-27 10:33:47.785 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4360. 2017-07-27 10:33:47.815 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4361. 2017-07-27 10:33:47.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4362. 2017-07-27 10:33:47.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4363. 2017-07-27 10:33:47.819 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4364. 2017-07-27 10:33:47.821 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4365. 2017-07-27 10:33:47.823 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4366. 2017-07-27 10:33:47.823 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4367. 2017-07-27 10:33:47.823 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4368. 2017-07-27 10:33:47.824 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4369. 2017-07-27 10:33:47.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4370. 2017-07-27 10:33:47.846 |-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
  4371. 2017-07-27 10:33:47.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4372. 2017-07-27 10:33:47.851 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4373. 2017-07-27 10:33:47.851 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4374. 2017-07-27 10:33:47.852 |-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
  4375. 2017-07-27 10:33:47.852 |-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
  4376. 2017-07-27 10:33:47.853 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4377. 2017-07-27 10:33:47.853 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4378. 2017-07-27 10:33:47.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4379. 2017-07-27 10:33:47.876 |-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=?)
  4380. 2017-07-27 10:33:47.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4381. 2017-07-27 10:33:47.879 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4382. 2017-07-27 10:33:47.880 |-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=?)
  4383. 2017-07-27 10:33:47.880 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4384. 2017-07-27 10:33:47.881 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4385. 2017-07-27 10:33:47.881 |-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=?)
  4386. 2017-07-27 10:33:47.882 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4387. 2017-07-27 10:33:47.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4388. 2017-07-27 10:33:47.904 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4389. 2017-07-27 10:33:47.904 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4390. 2017-07-27 10:33:47.905 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4391. 2017-07-27 10:33:47.906 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4392. 2017-07-27 10:33:47.906 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4393. 2017-07-27 10:33:47.908 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4394. 2017-07-27 10:33:47.910 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4395. 2017-07-27 10:33:47.910 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4396. 2017-07-27 10:33:47.911 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4397. 2017-07-27 10:33:47.911 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4398. 2017-07-27 10:33:47.914 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4399. 2017-07-27 10:33:47.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4400. 2017-07-27 10:33:47.940 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4401. 2017-07-27 10:33:47.941 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4402. 2017-07-27 10:33:47.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4403. 2017-07-27 10:33:47.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4404. 2017-07-27 10:33:48.082 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4405. 2017-07-27 10:35:40.478 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4406. 2017-07-27 10:35:40.480 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4407. 2017-07-27 10:35:40.512 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4408. 2017-07-27 10:35:40.513 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4409. 2017-07-27 10:35:40.513 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4410. 2017-07-27 10:35:40.513 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4411. 2017-07-27 10:35:40.541 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4412. 2017-07-27 10:35:40.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4413. 2017-07-27 10:35:40.566 |-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
  4414. 2017-07-27 10:35:40.566 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4415. 2017-07-27 10:35:40.568 |-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
  4416. 2017-07-27 10:35:40.568 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4417. 2017-07-27 10:35:40.594 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4418. 2017-07-27 10:35:40.596 |-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=?)
  4419. 2017-07-27 10:35:40.596 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4420. 2017-07-27 10:35:40.596 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4421. 2017-07-27 10:35:40.597 |-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=?)
  4422. 2017-07-27 10:35:40.597 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4423. 2017-07-27 10:35:40.622 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4424. 2017-07-27 10:35:40.624 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4425. 2017-07-27 10:35:40.626 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4426. 2017-07-27 10:35:40.627 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4427. 2017-07-27 10:35:40.627 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4428. 2017-07-27 10:35:40.629 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4429. 2017-07-27 10:35:40.634 |-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
  4430. 2017-07-27 10:35:40.635 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4431. 2017-07-27 10:35:40.664 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4432. 2017-07-27 10:35:40.665 |-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
  4433. 2017-07-27 10:35:40.666 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4434. 2017-07-27 10:35:40.696 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4435. 2017-07-27 10:35:40.750 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4436. 2017-07-27 10:35:40.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4437. 2017-07-27 10:35:40.752 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4438. 2017-07-27 10:35:40.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4439. 2017-07-27 10:35:40.753 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4440. 2017-07-27 10:35:40.754 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4441. 2017-07-27 10:35:40.781 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4442. 2017-07-27 10:35:40.781 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4443. 2017-07-27 10:35:40.782 |-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
  4444. 2017-07-27 10:35:40.782 |-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
  4445. 2017-07-27 10:35:40.783 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4446. 2017-07-27 10:35:40.783 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4447. 2017-07-27 10:35:40.812 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4448. 2017-07-27 10:35:40.813 |-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=?)
  4449. 2017-07-27 10:35:40.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4450. 2017-07-27 10:35:40.813 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4451. 2017-07-27 10:35:40.814 |-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=?)
  4452. 2017-07-27 10:35:40.814 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4453. 2017-07-27 10:35:40.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4454. 2017-07-27 10:35:40.839 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4455. 2017-07-27 10:35:40.840 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4456. 2017-07-27 10:35:40.841 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4457. 2017-07-27 10:35:40.841 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4458. 2017-07-27 10:35:40.842 |-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
  4459. 2017-07-27 10:35:40.842 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4460. 2017-07-27 10:35:40.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4461. 2017-07-27 10:35:40.843 |-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
  4462. 2017-07-27 10:35:40.844 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4463. 2017-07-27 10:35:40.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4464. 2017-07-27 10:35:40.872 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4465. 2017-07-27 10:35:40.882 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4466. 2017-07-27 10:35:40.883 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4467. 2017-07-27 10:35:40.884 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4468. 2017-07-27 10:35:40.912 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4469. 2017-07-27 10:35:40.913 |-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
  4470. 2017-07-27 10:35:40.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4471. 2017-07-27 10:35:40.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4472. 2017-07-27 10:35:40.944 |-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=?)
  4473. 2017-07-27 10:35:40.944 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4474. 2017-07-27 10:35:40.971 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4475. 2017-07-27 10:35:40.975 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4476. 2017-07-27 10:35:40.977 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4477. 2017-07-27 10:35:40.983 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4478. 2017-07-27 10:35:40.984 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4479. 2017-07-27 10:35:41.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  4480. 2017-07-27 10:35:41.120 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4481. 2017-07-27 10:35:41.122 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4482. 2017-07-27 10:35:41.122 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4483. 2017-07-27 10:35:41.150 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4484. 2017-07-27 10:35:41.151 |-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
  4485. 2017-07-27 10:35:41.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4486. 2017-07-27 10:35:41.181 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4487. 2017-07-27 10:35:41.183 |-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=?)
  4488. 2017-07-27 10:35:41.183 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4489. 2017-07-27 10:35:41.211 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4490. 2017-07-27 10:35:41.215 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4491. 2017-07-27 10:35:41.217 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4492. 2017-07-27 10:35:41.221 |-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=?
  4493. 2017-07-27 10:35:41.222 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4494. 2017-07-27 10:35:41.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4495. 2017-07-27 10:35:41.487 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4496. 2017-07-27 10:35:41.489 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4497. 2017-07-27 10:35:41.489 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4498. 2017-07-27 10:35:41.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4499. 2017-07-27 10:35:41.518 |-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
  4500. 2017-07-27 10:35:41.519 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4501. 2017-07-27 10:35:41.548 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4502. 2017-07-27 10:35:41.548 |-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=?)
  4503. 2017-07-27 10:35:41.549 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4504. 2017-07-27 10:35:41.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4505. 2017-07-27 10:35:41.581 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4506. 2017-07-27 10:35:41.582 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4507. 2017-07-27 10:35:41.585 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4508. 2017-07-27 10:35:41.585 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4509. 2017-07-27 10:35:41.617 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4510. 2017-07-27 10:35:41.643 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4511. 2017-07-27 10:35:41.643 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4512. 2017-07-27 10:35:41.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4513. 2017-07-27 10:35:41.647 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4514. 2017-07-27 10:35:41.646 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4515. 2017-07-27 10:35:41.647 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4516. 2017-07-27 10:35:41.650 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4517. 2017-07-27 10:35:41.679 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4518. 2017-07-27 10:35:41.679 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4519. 2017-07-27 10:35:41.680 |-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
  4520. 2017-07-27 10:35:41.680 |-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
  4521. 2017-07-27 10:35:41.681 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4522. 2017-07-27 10:35:41.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4523. 2017-07-27 10:35:41.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4524. 2017-07-27 10:35:41.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4525. 2017-07-27 10:35:41.709 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4526. 2017-07-27 10:35:41.710 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4527. 2017-07-27 10:35:41.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=?)
  4528. 2017-07-27 10:35:41.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4529. 2017-07-27 10:35:41.710 |-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=?)
  4530. 2017-07-27 10:35:41.710 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4531. 2017-07-27 10:35:41.716 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4532. 2017-07-27 10:35:41.735 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4533. 2017-07-27 10:35:41.737 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4534. 2017-07-27 10:35:41.737 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4535. 2017-07-27 10:35:41.738 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4536. 2017-07-27 10:35:41.739 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4537. 2017-07-27 10:35:41.740 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4538. 2017-07-27 10:35:41.741 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4539. 2017-07-27 10:35:41.742 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4540. 2017-07-27 10:35:41.742 |-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
  4541. 2017-07-27 10:35:41.742 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4542. 2017-07-27 10:35:41.771 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4543. 2017-07-27 10:35:41.771 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4544. 2017-07-27 10:35:41.772 |-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=?)
  4545. 2017-07-27 10:35:41.772 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4546. 2017-07-27 10:35:41.801 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4547. 2017-07-27 10:35:41.805 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4548. 2017-07-27 10:35:41.806 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4549. 2017-07-27 10:35:41.809 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4550. 2017-07-27 10:35:41.810 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4551. 2017-07-27 10:35:41.829 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4552. 2017-07-27 10:35:41.830 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4553. 2017-07-27 10:35:41.841 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4554. 2017-07-27 10:35:41.911 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4555. 2017-07-27 10:36:07.881 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4556. 2017-07-27 10:36:07.883 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4557. 2017-07-27 10:36:07.883 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4558. 2017-07-27 10:36:07.884 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4559. 2017-07-27 10:36:07.884 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4560. 2017-07-27 10:36:07.885 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4561. 2017-07-27 10:36:07.890 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4562. 2017-07-27 10:36:07.892 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4563. 2017-07-27 10:36:07.892 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4564. 2017-07-27 10:36:07.939 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4565. 2017-07-27 10:36:07.939 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4566. 2017-07-27 10:36:07.940 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4567. 2017-07-27 10:36:07.940 |-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
  4568. 2017-07-27 10:36:07.940 |-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
  4569. 2017-07-27 10:36:07.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
  4570. 2017-07-27 10:36:07.940 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4571. 2017-07-27 10:36:07.941 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4572. 2017-07-27 10:36:07.941 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4573. 2017-07-27 10:36:07.969 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4574. 2017-07-27 10:36:07.969 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4575. 2017-07-27 10:36:07.970 |-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=?)
  4576. 2017-07-27 10:36:07.970 |-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=?)
  4577. 2017-07-27 10:36:07.970 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4578. 2017-07-27 10:36:07.970 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4579. 2017-07-27 10:36:07.970 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4580. 2017-07-27 10:36:07.971 |-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=?)
  4581. 2017-07-27 10:36:07.971 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4582. 2017-07-27 10:36:07.995 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4583. 2017-07-27 10:36:07.996 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4584. 2017-07-27 10:36:07.997 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4585. 2017-07-27 10:36:07.997 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4586. 2017-07-27 10:36:07.998 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4587. 2017-07-27 10:36:07.999 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4588. 2017-07-27 10:36:07.999 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4589. 2017-07-27 10:36:07.999 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4590. 2017-07-27 10:36:07.999 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4591. 2017-07-27 10:36:08.002 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4592. 2017-07-27 10:36:08.003 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4593. 2017-07-27 10:36:08.005 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4594. 2017-07-27 10:36:08.006 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-27 07:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4595. 2017-07-27 10:36:08.032 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4596. 2017-07-27 10:36:08.033 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4597. 2017-07-27 10:36:08.179 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4598. 2017-07-27 10:36:08.180 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-27 07:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4599. 2017-07-27 10:36:08.262 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4600. 2017-07-27 10:38:04.686 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4601. 2017-07-27 10:38:04.686 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4602. 2017-07-27 10:38:04.719 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4603. 2017-07-27 10:38:04.720 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4604. 2017-07-27 10:38:04.720 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4605. 2017-07-27 10:38:04.720 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4606. 2017-07-27 10:38:04.749 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4607. 2017-07-27 10:38:04.749 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4608. 2017-07-27 10:38:04.774 |-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
  4609. 2017-07-27 10:38:04.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4610. 2017-07-27 10:38:04.775 |-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
  4611. 2017-07-27 10:38:04.776 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4612. 2017-07-27 10:38:04.805 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4613. 2017-07-27 10:38:04.805 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4614. 2017-07-27 10:38:04.806 |-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=?)
  4615. 2017-07-27 10:38:04.806 |-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=?)
  4616. 2017-07-27 10:38:04.806 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4617. 2017-07-27 10:38:04.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4618. 2017-07-27 10:38:04.834 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4619. 2017-07-27 10:38:04.834 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4620. 2017-07-27 10:38:04.841 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4621. 2017-07-27 10:38:04.841 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4622. 2017-07-27 10:38:04.843 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4623. 2017-07-27 10:38:04.843 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4624. 2017-07-27 10:38:04.849 |-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
  4625. 2017-07-27 10:38:04.850 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4626. 2017-07-27 10:38:04.879 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4627. 2017-07-27 10:38:04.880 |-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
  4628. 2017-07-27 10:38:04.881 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4629. 2017-07-27 10:38:04.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4630. 2017-07-27 10:38:05.251 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4631. 2017-07-27 10:38:05.253 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4632. 2017-07-27 10:38:05.254 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4633. 2017-07-27 10:38:05.254 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4634. 2017-07-27 10:38:05.256 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4635. 2017-07-27 10:38:05.256 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4636. 2017-07-27 10:38:05.282 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4637. 2017-07-27 10:38:05.283 |-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
  4638. 2017-07-27 10:38:05.284 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4639. 2017-07-27 10:38:05.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4640. 2017-07-27 10:38:05.284 |-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
  4641. 2017-07-27 10:38:05.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4642. 2017-07-27 10:38:05.312 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4643. 2017-07-27 10:38:05.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4644. 2017-07-27 10:38:05.313 |-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=?)
  4645. 2017-07-27 10:38:05.313 |-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=?)
  4646. 2017-07-27 10:38:05.313 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4647. 2017-07-27 10:38:05.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4648. 2017-07-27 10:38:05.339 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4649. 2017-07-27 10:38:05.339 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4650. 2017-07-27 10:38:05.346 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4651. 2017-07-27 10:38:05.346 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4652. 2017-07-27 10:38:05.348 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4653. 2017-07-27 10:38:05.348 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4654. 2017-07-27 10:38:05.354 |-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
  4655. 2017-07-27 10:38:05.355 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4656. 2017-07-27 10:38:05.385 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4657. 2017-07-27 10:38:05.386 |-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
  4658. 2017-07-27 10:38:05.386 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4659. 2017-07-27 10:38:05.415 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4660. 2017-07-27 10:38:05.487 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4661. 2017-07-27 10:38:05.487 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4662. 2017-07-27 10:38:05.490 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4663. 2017-07-27 10:38:05.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4664. 2017-07-27 10:38:05.490 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4665. 2017-07-27 10:38:05.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4666. 2017-07-27 10:38:05.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4667. 2017-07-27 10:38:05.518 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4668. 2017-07-27 10:38:05.519 |-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
  4669. 2017-07-27 10:38:05.519 |-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
  4670. 2017-07-27 10:38:05.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4671. 2017-07-27 10:38:05.519 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4672. 2017-07-27 10:38:05.548 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4673. 2017-07-27 10:38:05.548 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4674. 2017-07-27 10:38:05.549 |-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=?)
  4675. 2017-07-27 10:38:05.549 |-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=?)
  4676. 2017-07-27 10:38:05.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4677. 2017-07-27 10:38:05.549 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4678. 2017-07-27 10:38:05.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4679. 2017-07-27 10:38:05.576 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4680. 2017-07-27 10:38:05.583 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4681. 2017-07-27 10:38:05.583 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4682. 2017-07-27 10:38:05.585 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4683. 2017-07-27 10:38:05.585 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4684. 2017-07-27 10:38:05.587 |-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
  4685. 2017-07-27 10:38:05.587 |-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
  4686. 2017-07-27 10:38:05.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4687. 2017-07-27 10:38:05.588 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4688. 2017-07-27 10:38:05.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4689. 2017-07-27 10:38:05.616 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4690. 2017-07-27 10:38:05.626 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4691. 2017-07-27 10:38:05.629 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4692. 2017-07-27 10:38:05.629 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4693. 2017-07-27 10:38:05.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4694. 2017-07-27 10:38:05.657 |-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
  4695. 2017-07-27 10:38:05.658 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4696. 2017-07-27 10:38:05.698 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4697. 2017-07-27 10:38:05.699 |-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=?)
  4698. 2017-07-27 10:38:05.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4699. 2017-07-27 10:38:05.726 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4700. 2017-07-27 10:38:05.731 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4701. 2017-07-27 10:38:05.733 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4702. 2017-07-27 10:38:05.739 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4703. 2017-07-27 10:38:05.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4704. 2017-07-27 10:38:05.837 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  4705. 2017-07-27 10:38:05.870 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4706. 2017-07-27 10:38:05.872 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4707. 2017-07-27 10:38:05.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4708. 2017-07-27 10:38:05.901 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4709. 2017-07-27 10:38:05.902 |-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
  4710. 2017-07-27 10:38:05.902 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4711. 2017-07-27 10:38:05.931 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4712. 2017-07-27 10:38:05.932 |-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=?)
  4713. 2017-07-27 10:38:05.932 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4714. 2017-07-27 10:38:05.959 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4715. 2017-07-27 10:38:05.962 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4716. 2017-07-27 10:38:05.963 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4717. 2017-07-27 10:38:05.966 |-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=?
  4718. 2017-07-27 10:38:05.966 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4719. 2017-07-27 10:38:05.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4720. 2017-07-27 10:38:06.189 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4721. 2017-07-27 10:38:06.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4722. 2017-07-27 10:38:06.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4723. 2017-07-27 10:38:06.220 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4724. 2017-07-27 10:38:06.221 |-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
  4725. 2017-07-27 10:38:06.221 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4726. 2017-07-27 10:38:06.250 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4727. 2017-07-27 10:38:06.251 |-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=?)
  4728. 2017-07-27 10:38:06.251 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4729. 2017-07-27 10:38:06.277 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4730. 2017-07-27 10:38:06.284 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4731. 2017-07-27 10:38:06.286 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4732. 2017-07-27 10:38:06.289 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4733. 2017-07-27 10:38:06.290 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4734. 2017-07-27 10:38:06.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4735. 2017-07-27 10:38:06.349 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4736. 2017-07-27 10:38:06.352 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4737. 2017-07-27 10:38:06.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4738. 2017-07-27 10:38:06.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4739. 2017-07-27 10:38:06.358 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4740. 2017-07-27 10:38:06.359 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4741. 2017-07-27 10:38:06.364 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4742. 2017-07-27 10:38:06.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4743. 2017-07-27 10:38:06.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4744. 2017-07-27 10:38:06.387 |-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
  4745. 2017-07-27 10:38:06.387 |-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
  4746. 2017-07-27 10:38:06.387 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4747. 2017-07-27 10:38:06.387 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4748. 2017-07-27 10:38:06.394 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4749. 2017-07-27 10:38:06.394 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4750. 2017-07-27 10:38:06.416 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4751. 2017-07-27 10:38:06.416 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4752. 2017-07-27 10:38:06.418 |-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=?)
  4753. 2017-07-27 10:38:06.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=?)
  4754. 2017-07-27 10:38:06.418 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4755. 2017-07-27 10:38:06.418 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4756. 2017-07-27 10:38:06.422 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4757. 2017-07-27 10:38:06.444 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4758. 2017-07-27 10:38:06.444 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4759. 2017-07-27 10:38:06.445 |-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
  4760. 2017-07-27 10:38:06.445 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4761. 2017-07-27 10:38:06.448 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4762. 2017-07-27 10:38:06.448 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4763. 2017-07-27 10:38:06.449 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4764. 2017-07-27 10:38:06.449 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4765. 2017-07-27 10:38:06.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4766. 2017-07-27 10:38:06.452 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4767. 2017-07-27 10:38:06.473 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4768. 2017-07-27 10:38:06.474 |-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=?)
  4769. 2017-07-27 10:38:06.474 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4770. 2017-07-27 10:38:06.481 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4771. 2017-07-27 10:38:06.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4772. 2017-07-27 10:38:06.502 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4773. 2017-07-27 10:38:06.503 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4774. 2017-07-27 10:38:06.507 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4775. 2017-07-27 10:38:06.507 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4776. 2017-07-27 10:38:06.534 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4777. 2017-07-27 10:38:06.575 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4778. 2017-07-27 10:38:06.576 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4779. 2017-07-27 10:38:06.666 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4780. 2017-07-27 10:38:09.971 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4781. 2017-07-27 10:38:09.973 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4782. 2017-07-27 10:38:09.974 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4783. 2017-07-27 10:38:10.002 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4784. 2017-07-27 10:38:10.003 |-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
  4785. 2017-07-27 10:38:10.003 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4786. 2017-07-27 10:38:10.031 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4787. 2017-07-27 10:38:10.032 |-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=?)
  4788. 2017-07-27 10:38:10.032 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4789. 2017-07-27 10:38:10.056 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4790. 2017-07-27 10:38:10.060 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4791. 2017-07-27 10:38:10.061 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4792. 2017-07-27 10:38:10.064 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4793. 2017-07-27 10:38:10.065 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4794. 2017-07-27 10:38:10.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4795. 2017-07-27 10:38:10.117 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4796. 2017-07-27 10:38:10.119 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4797. 2017-07-27 10:38:10.119 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4798. 2017-07-27 10:38:10.122 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4799. 2017-07-27 10:38:10.123 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4800. 2017-07-27 10:38:10.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4801. 2017-07-27 10:38:10.126 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4802. 2017-07-27 10:38:10.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4803. 2017-07-27 10:38:10.126 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4804. 2017-07-27 10:38:10.147 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4805. 2017-07-27 10:38:10.149 |-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
  4806. 2017-07-27 10:38:10.149 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4807. 2017-07-27 10:38:10.154 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4808. 2017-07-27 10:38:10.154 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4809. 2017-07-27 10:38:10.155 |-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
  4810. 2017-07-27 10:38:10.155 |-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
  4811. 2017-07-27 10:38:10.155 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4812. 2017-07-27 10:38:10.155 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4813. 2017-07-27 10:38:10.176 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4814. 2017-07-27 10:38:10.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=?)
  4815. 2017-07-27 10:38:10.177 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4816. 2017-07-27 10:38:10.184 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4817. 2017-07-27 10:38:10.184 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4818. 2017-07-27 10:38:10.185 |-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=?)
  4819. 2017-07-27 10:38:10.185 |-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=?)
  4820. 2017-07-27 10:38:10.185 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4821. 2017-07-27 10:38:10.185 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4822. 2017-07-27 10:38:10.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4823. 2017-07-27 10:38:10.204 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4824. 2017-07-27 10:38:10.205 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4825. 2017-07-27 10:38:10.211 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4826. 2017-07-27 10:38:10.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4827. 2017-07-27 10:38:10.216 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4828. 2017-07-27 10:38:10.216 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4829. 2017-07-27 10:38:10.218 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4830. 2017-07-27 10:38:10.218 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4831. 2017-07-27 10:38:10.220 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4832. 2017-07-27 10:38:10.220 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4833. 2017-07-27 10:38:10.221 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4834. 2017-07-27 10:38:10.221 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4835. 2017-07-27 10:38:10.249 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4836. 2017-07-27 10:38:10.250 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4837. 2017-07-27 10:38:10.333 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4838. 2017-07-27 10:38:10.334 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4839. 2017-07-27 10:38:10.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4840. 2017-07-27 10:38:20.258 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4841. 2017-07-27 10:38:20.261 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4842. 2017-07-27 10:38:20.262 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4843. 2017-07-27 10:38:20.272 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4844. 2017-07-27 10:38:20.272 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4845. 2017-07-27 10:38:20.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4846. 2017-07-27 10:38:20.275 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4847. 2017-07-27 10:38:20.276 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4848. 2017-07-27 10:38:20.276 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4849. 2017-07-27 10:38:20.290 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4850. 2017-07-27 10:38:20.291 |-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
  4851. 2017-07-27 10:38:20.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4852. 2017-07-27 10:38:20.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4853. 2017-07-27 10:38:20.304 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4854. 2017-07-27 10:38:20.304 |-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
  4855. 2017-07-27 10:38:20.304 |-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
  4856. 2017-07-27 10:38:20.304 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4857. 2017-07-27 10:38:20.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4858. 2017-07-27 10:38:20.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4859. 2017-07-27 10:38:20.321 |-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=?)
  4860. 2017-07-27 10:38:20.321 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4861. 2017-07-27 10:38:20.332 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4862. 2017-07-27 10:38:20.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=?)
  4863. 2017-07-27 10:38:20.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4864. 2017-07-27 10:38:20.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4865. 2017-07-27 10:38:20.334 |-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=?)
  4866. 2017-07-27 10:38:20.334 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4867. 2017-07-27 10:38:20.347 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4868. 2017-07-27 10:38:20.351 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4869. 2017-07-27 10:38:20.352 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4870. 2017-07-27 10:38:20.354 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  4871. 2017-07-27 10:38:20.355 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  4872. 2017-07-27 10:38:20.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4873. 2017-07-27 10:38:20.359 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4874. 2017-07-27 10:38:20.360 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4875. 2017-07-27 10:38:20.361 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4876. 2017-07-27 10:38:20.363 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4877. 2017-07-27 10:38:20.364 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4878. 2017-07-27 10:38:20.367 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  4879. 2017-07-27 10:38:20.368 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-28 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4880. 2017-07-27 10:38:20.383 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  4881. 2017-07-27 10:38:20.398 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  4882. 2017-07-27 10:38:20.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  4883. 2017-07-27 10:38:20.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-28 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  4884. 2017-07-27 10:38:20.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4885. 2017-07-27 10:41:22.651 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4886. 2017-07-27 10:41:22.655 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4887. 2017-07-27 10:41:22.775 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4888. 2017-07-27 10:41:22.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4889. 2017-07-27 10:41:22.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4890. 2017-07-27 10:41:22.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4891. 2017-07-27 10:41:22.889 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4892. 2017-07-27 10:41:22.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4893. 2017-07-27 10:41:23.019 |-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
  4894. 2017-07-27 10:41:23.019 |-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
  4895. 2017-07-27 10:41:23.019 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4896. 2017-07-27 10:41:23.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4897. 2017-07-27 10:41:23.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4898. 2017-07-27 10:41:23.157 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4899. 2017-07-27 10:41:23.157 |-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=?)
  4900. 2017-07-27 10:41:23.158 |-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=?)
  4901. 2017-07-27 10:41:23.158 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4902. 2017-07-27 10:41:23.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4903. 2017-07-27 10:41:23.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4904. 2017-07-27 10:41:23.190 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4905. 2017-07-27 10:41:23.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4906. 2017-07-27 10:41:23.192 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4907. 2017-07-27 10:41:23.195 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4908. 2017-07-27 10:41:23.197 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4909. 2017-07-27 10:41:23.198 |-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
  4910. 2017-07-27 10:41:23.199 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4911. 2017-07-27 10:41:23.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4912. 2017-07-27 10:41:23.231 |-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
  4913. 2017-07-27 10:41:23.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4914. 2017-07-27 10:41:23.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4915. 2017-07-27 10:41:23.304 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4916. 2017-07-27 10:41:23.305 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4917. 2017-07-27 10:41:23.307 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4918. 2017-07-27 10:41:23.307 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4919. 2017-07-27 10:41:23.307 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4920. 2017-07-27 10:41:23.307 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4921. 2017-07-27 10:41:23.335 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4922. 2017-07-27 10:41:23.335 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4923. 2017-07-27 10:41:23.336 |-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
  4924. 2017-07-27 10:41:23.336 |-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
  4925. 2017-07-27 10:41:23.336 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4926. 2017-07-27 10:41:23.336 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4927. 2017-07-27 10:41:23.365 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4928. 2017-07-27 10:41:23.365 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4929. 2017-07-27 10:41:23.366 |-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=?)
  4930. 2017-07-27 10:41:23.367 |-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=?)
  4931. 2017-07-27 10:41:23.367 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4932. 2017-07-27 10:41:23.367 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4933. 2017-07-27 10:41:23.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4934. 2017-07-27 10:41:23.394 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4935. 2017-07-27 10:41:23.397 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4936. 2017-07-27 10:41:23.397 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4937. 2017-07-27 10:41:23.399 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4938. 2017-07-27 10:41:23.399 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4939. 2017-07-27 10:41:23.400 |-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
  4940. 2017-07-27 10:41:23.400 |-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
  4941. 2017-07-27 10:41:23.400 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4942. 2017-07-27 10:41:23.400 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4943. 2017-07-27 10:41:23.428 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4944. 2017-07-27 10:41:23.430 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4945. 2017-07-27 10:41:23.439 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4946. 2017-07-27 10:41:23.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4947. 2017-07-27 10:41:23.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4948. 2017-07-27 10:41:23.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4949. 2017-07-27 10:41:23.471 |-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
  4950. 2017-07-27 10:41:23.471 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4951. 2017-07-27 10:41:23.501 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4952. 2017-07-27 10:41:23.502 |-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=?)
  4953. 2017-07-27 10:41:23.503 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4954. 2017-07-27 10:41:23.529 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4955. 2017-07-27 10:41:23.533 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4956. 2017-07-27 10:41:23.535 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4957. 2017-07-27 10:41:23.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4958. 2017-07-27 10:41:23.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4959. 2017-07-27 10:41:23.630 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  4960. 2017-07-27 10:41:23.671 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4961. 2017-07-27 10:41:23.673 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4962. 2017-07-27 10:41:23.673 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4963. 2017-07-27 10:41:23.703 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4964. 2017-07-27 10:41:23.703 |-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
  4965. 2017-07-27 10:41:23.704 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4966. 2017-07-27 10:41:23.733 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4967. 2017-07-27 10:41:23.734 |-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=?)
  4968. 2017-07-27 10:41:23.735 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4969. 2017-07-27 10:41:23.761 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4970. 2017-07-27 10:41:23.765 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4971. 2017-07-27 10:41:23.766 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4972. 2017-07-27 10:41:23.770 |-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=?
  4973. 2017-07-27 10:41:23.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4974. 2017-07-27 10:41:23.797 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4975. 2017-07-27 10:41:24.023 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4976. 2017-07-27 10:41:24.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4977. 2017-07-27 10:41:24.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4978. 2017-07-27 10:41:24.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4979. 2017-07-27 10:41:24.151 |-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
  4980. 2017-07-27 10:41:24.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  4981. 2017-07-27 10:41:24.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  4982. 2017-07-27 10:41:24.308 |-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=?)
  4983. 2017-07-27 10:41:24.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  4984. 2017-07-27 10:41:24.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4985. 2017-07-27 10:41:24.475 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  4986. 2017-07-27 10:41:24.477 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4987. 2017-07-27 10:41:24.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4988. 2017-07-27 10:41:24.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4989. 2017-07-27 10:41:24.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  4990. 2017-07-27 10:41:24.725 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4991. 2017-07-27 10:41:24.726 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4992. 2017-07-27 10:41:24.727 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  4993. 2017-07-27 10:41:24.729 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4994. 2017-07-27 10:41:24.730 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4995. 2017-07-27 10:41:24.729 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4996. 2017-07-27 10:41:24.731 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4997. 2017-07-27 10:41:24.765 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  4998. 2017-07-27 10:41:24.766 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  4999. 2017-07-27 10:41:24.766 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5000. 2017-07-27 10:41:24.767 |-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
  5001. 2017-07-27 10:41:24.767 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5002. 2017-07-27 10:41:24.767 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5003. 2017-07-27 10:41:24.767 |-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
  5004. 2017-07-27 10:41:24.767 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5005. 2017-07-27 10:41:24.793 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5006. 2017-07-27 10:41:24.796 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5007. 2017-07-27 10:41:24.796 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5008. 2017-07-27 10:41:24.797 |-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=?)
  5009. 2017-07-27 10:41:24.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5010. 2017-07-27 10:41:24.797 |-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=?)
  5011. 2017-07-27 10:41:24.798 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5012. 2017-07-27 10:41:24.818 |-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
  5013. 2017-07-27 10:41:24.818 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5014. 2017-07-27 10:41:24.823 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5015. 2017-07-27 10:41:24.824 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5016. 2017-07-27 10:41:24.828 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5017. 2017-07-27 10:41:24.828 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5018. 2017-07-27 10:41:24.830 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5019. 2017-07-27 10:41:24.830 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5020. 2017-07-27 10:41:24.834 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  5021. 2017-07-27 10:41:24.835 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  5022. 2017-07-27 10:41:24.847 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5023. 2017-07-27 10:41:24.848 |-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=?)
  5024. 2017-07-27 10:41:24.849 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5025. 2017-07-27 10:41:24.865 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  5026. 2017-07-27 10:41:24.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5027. 2017-07-27 10:41:24.878 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5028. 2017-07-27 10:41:24.879 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5029. 2017-07-27 10:41:24.882 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  5030. 2017-07-27 10:41:24.883 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5031. 2017-07-27 10:41:24.909 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  5032. 2017-07-27 10:41:24.933 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5033. 2017-07-27 10:41:24.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5034. 2017-07-27 10:41:25.022 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5035. 2017-07-27 10:41:29.659 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5036. 2017-07-27 10:41:29.659 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5037. 2017-07-27 10:41:29.662 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5038. 2017-07-27 10:41:29.663 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5039. 2017-07-27 10:41:29.663 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5040. 2017-07-27 10:41:29.664 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5041. 2017-07-27 10:41:29.665 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5042. 2017-07-27 10:41:29.667 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5043. 2017-07-27 10:41:29.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5044. 2017-07-27 10:41:29.670 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5045. 2017-07-27 10:41:29.691 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5046. 2017-07-27 10:41:29.691 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5047. 2017-07-27 10:41:29.692 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5048. 2017-07-27 10:41:29.692 |-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
  5049. 2017-07-27 10:41:29.692 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5050. 2017-07-27 10:41:29.692 |-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
  5051. 2017-07-27 10:41:29.692 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5052. 2017-07-27 10:41:29.693 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5053. 2017-07-27 10:41:29.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5054. 2017-07-27 10:41:29.696 |-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
  5055. 2017-07-27 10:41:29.697 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5056. 2017-07-27 10:41:29.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5057. 2017-07-27 10:41:29.720 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5058. 2017-07-27 10:41:29.721 |-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
  5059. 2017-07-27 10:41:29.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5060. 2017-07-27 10:41:29.722 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5061. 2017-07-27 10:41:29.722 |-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=?)
  5062. 2017-07-27 10:41:29.722 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5063. 2017-07-27 10:41:29.725 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5064. 2017-07-27 10:41:29.725 |-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=?)
  5065. 2017-07-27 10:41:29.726 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5066. 2017-07-27 10:41:29.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5067. 2017-07-27 10:41:29.749 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5068. 2017-07-27 10:41:29.749 |-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=?)
  5069. 2017-07-27 10:41:29.749 |-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=?)
  5070. 2017-07-27 10:41:29.750 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5071. 2017-07-27 10:41:29.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5072. 2017-07-27 10:41:29.751 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5073. 2017-07-27 10:41:29.751 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5074. 2017-07-27 10:41:29.753 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5075. 2017-07-27 10:41:29.754 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5076. 2017-07-27 10:41:29.755 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5077. 2017-07-27 10:41:29.758 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  5078. 2017-07-27 10:41:29.759 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  5079. 2017-07-27 10:41:29.774 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5080. 2017-07-27 10:41:29.775 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  5081. 2017-07-27 10:41:29.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5082. 2017-07-27 10:41:29.776 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5083. 2017-07-27 10:41:29.777 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5084. 2017-07-27 10:41:29.778 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5085. 2017-07-27 10:41:29.778 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5086. 2017-07-27 10:41:29.780 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5087. 2017-07-27 10:41:29.788 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  5088. 2017-07-27 10:41:29.803 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  5089. 2017-07-27 10:41:29.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5090. 2017-07-27 10:41:29.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5091. 2017-07-27 10:41:29.933 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5092. 2017-07-27 10:41:29.933 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5093. 2017-07-27 10:41:30.015 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5094. 2017-07-27 10:41:30.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5095. 2017-07-27 10:41:40.763 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5096. 2017-07-27 10:41:40.764 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5097. 2017-07-27 10:41:40.763 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5098. 2017-07-27 10:41:40.765 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5099. 2017-07-27 10:41:40.767 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5100. 2017-07-27 10:41:40.768 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5101. 2017-07-27 10:41:40.768 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5102. 2017-07-27 10:41:40.768 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5103. 2017-07-27 10:41:40.769 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5104. 2017-07-27 10:41:40.768 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5105. 2017-07-27 10:41:40.768 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5106. 2017-07-27 10:41:40.770 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5107. 2017-07-27 10:41:40.797 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5108. 2017-07-27 10:41:40.797 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5109. 2017-07-27 10:41:40.797 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5110. 2017-07-27 10:41:40.798 |-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
  5111. 2017-07-27 10:41:40.798 |-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
  5112. 2017-07-27 10:41:40.798 |-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
  5113. 2017-07-27 10:41:40.798 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5114. 2017-07-27 10:41:40.799 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5115. 2017-07-27 10:41:40.799 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5116. 2017-07-27 10:41:40.799 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5117. 2017-07-27 10:41:40.800 |-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
  5118. 2017-07-27 10:41:40.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5119. 2017-07-27 10:41:40.826 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5120. 2017-07-27 10:41:40.827 |-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=?)
  5121. 2017-07-27 10:41:40.827 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5122. 2017-07-27 10:41:40.827 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5123. 2017-07-27 10:41:40.828 |-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=?)
  5124. 2017-07-27 10:41:40.828 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5125. 2017-07-27 10:41:40.828 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5126. 2017-07-27 10:41:40.829 |-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=?)
  5127. 2017-07-27 10:41:40.829 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5128. 2017-07-27 10:41:40.829 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5129. 2017-07-27 10:41:40.829 |-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=?)
  5130. 2017-07-27 10:41:40.830 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5131. 2017-07-27 10:41:40.851 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5132. 2017-07-27 10:41:40.853 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5133. 2017-07-27 10:41:40.854 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5134. 2017-07-27 10:41:40.856 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5135. 2017-07-27 10:41:40.856 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5136. 2017-07-27 10:41:40.856 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5137. 2017-07-27 10:41:40.858 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5138. 2017-07-27 10:41:40.858 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5139. 2017-07-27 10:41:40.859 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5140. 2017-07-27 10:41:40.860 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5141. 2017-07-27 10:41:40.864 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  5142. 2017-07-27 10:41:40.865 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-05-29 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5143. 2017-07-27 10:41:40.866 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5144. 2017-07-27 10:41:40.868 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5145. 2017-07-27 10:41:40.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  5146. 2017-07-27 10:41:40.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  5147. 2017-07-27 10:41:40.894 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  5148. 2017-07-27 10:41:40.903 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  5149. 2017-07-27 10:41:41.006 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5150. 2017-07-27 10:41:41.006 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-05-29 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5151. 2017-07-27 10:41:41.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5152. 2017-07-27 10:41:41.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-05-29 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5153. 2017-07-27 10:41:41.098 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5154. 2017-07-27 10:41:41.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5155. 2017-07-27 10:41:51.843 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5156. 2017-07-27 10:41:51.845 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5157. 2017-07-27 10:41:51.845 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5158. 2017-07-27 10:41:51.846 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5159. 2017-07-27 10:41:51.846 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5160. 2017-07-27 10:41:51.848 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5161. 2017-07-27 10:41:51.848 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5162. 2017-07-27 10:41:51.846 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5163. 2017-07-27 10:41:51.849 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5164. 2017-07-27 10:41:51.850 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5165. 2017-07-27 10:41:51.850 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5166. 2017-07-27 10:41:51.851 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5167. 2017-07-27 10:41:51.873 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5168. 2017-07-27 10:41:51.874 |-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
  5169. 2017-07-27 10:41:51.874 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5170. 2017-07-27 10:41:51.878 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5171. 2017-07-27 10:41:51.879 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5172. 2017-07-27 10:41:51.879 |-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
  5173. 2017-07-27 10:41:51.879 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5174. 2017-07-27 10:41:51.878 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5175. 2017-07-27 10:41:51.879 |-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
  5176. 2017-07-27 10:41:51.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5177. 2017-07-27 10:41:51.881 |-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
  5178. 2017-07-27 10:41:51.881 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5179. 2017-07-27 10:41:51.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5180. 2017-07-27 10:41:51.904 |-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=?)
  5181. 2017-07-27 10:41:51.904 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5182. 2017-07-27 10:41:51.907 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5183. 2017-07-27 10:41:51.908 |-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=?)
  5184. 2017-07-27 10:41:51.908 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5185. 2017-07-27 10:41:51.908 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5186. 2017-07-27 10:41:51.909 |-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=?)
  5187. 2017-07-27 10:41:51.909 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5188. 2017-07-27 10:41:51.909 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5189. 2017-07-27 10:41:51.910 |-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=?)
  5190. 2017-07-27 10:41:51.910 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5191. 2017-07-27 10:41:51.930 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5192. 2017-07-27 10:41:51.933 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5193. 2017-07-27 10:41:51.933 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5194. 2017-07-27 10:41:51.935 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5195. 2017-07-27 10:41:51.935 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5196. 2017-07-27 10:41:51.938 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  5197. 2017-07-27 10:41:51.938 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5198. 2017-07-27 10:41:51.938 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  5199. 2017-07-27 10:41:51.938 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5200. 2017-07-27 10:41:51.938 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5201. 2017-07-27 10:41:51.939 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5202. 2017-07-27 10:41:51.941 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5203. 2017-07-27 10:41:51.942 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5204. 2017-07-27 10:41:51.940 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5205. 2017-07-27 10:41:51.944 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  5206. 2017-07-27 10:41:51.947 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-05-31 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5207. 2017-07-27 10:41:51.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  5208. 2017-07-27 10:41:51.975 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  5209. 2017-07-27 10:41:52.079 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5210. 2017-07-27 10:41:52.080 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-05-31 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5211. 2017-07-27 10:41:52.089 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  5212. 2017-07-27 10:41:52.090 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-05-31 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5213. 2017-07-27 10:41:52.167 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5214. 2017-07-27 10:41:52.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5215. 2017-07-27 10:42:03.865 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5216. 2017-07-27 10:42:03.868 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5217. 2017-07-27 10:42:03.869 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5218. 2017-07-27 10:42:03.897 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5219. 2017-07-27 10:42:03.897 |-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
  5220. 2017-07-27 10:42:03.898 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5221. 2017-07-27 10:42:03.926 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5222. 2017-07-27 10:42:03.927 |-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=?)
  5223. 2017-07-27 10:42:03.928 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5224. 2017-07-27 10:42:03.954 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5225. 2017-07-27 10:42:03.956 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5226. 2017-07-27 10:42:03.957 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5227. 2017-07-27 10:42:03.958 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5228. 2017-07-27 10:42:03.959 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5229. 2017-07-27 10:42:03.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5230. 2017-07-27 10:42:04.066 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5231. 2017-07-27 10:42:04.067 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5232. 2017-07-27 10:42:04.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5233. 2017-07-27 10:42:04.068 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5234. 2017-07-27 10:42:04.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5235. 2017-07-27 10:42:04.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5236. 2017-07-27 10:42:04.095 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5237. 2017-07-27 10:42:04.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5238. 2017-07-27 10:42:04.096 |-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
  5239. 2017-07-27 10:42:04.097 |-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
  5240. 2017-07-27 10:42:04.097 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5241. 2017-07-27 10:42:04.097 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5242. 2017-07-27 10:42:04.125 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5243. 2017-07-27 10:42:04.126 |-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=?)
  5244. 2017-07-27 10:42:04.126 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5245. 2017-07-27 10:42:04.126 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5246. 2017-07-27 10:42:04.127 |-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=?)
  5247. 2017-07-27 10:42:04.127 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5248. 2017-07-27 10:42:04.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5249. 2017-07-27 10:42:04.154 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5250. 2017-07-27 10:42:04.156 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5251. 2017-07-27 10:42:04.157 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5252. 2017-07-27 10:42:04.157 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5253. 2017-07-27 10:42:04.158 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5254. 2017-07-27 10:42:04.163 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Preparing: SELECT COUNT(1) AS all_checkman, COUNT(1) AS all_task_num, COUNT(cs.check_item_score) AS checked_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute, COUNT(DISTINCT(t.checked_person)) AS all_checked_num, SUM(cs.check_item_score) AS all_checked_score FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ?
  5255. 2017-07-27 10:42:04.164 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5256. 2017-07-27 10:42:04.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL
  5257. 2017-07-27 10:42:04.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5258. 2017-07-27 10:42:04.314 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5259. 2017-07-27 10:42:04.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  5260. 2017-07-27 10:42:04.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5261. 2017-07-27 10:42:04.404 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5262. 2017-07-27 10:42:05.095 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| <== Total: 1
  5263. 2017-07-27 10:43:37.833 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5264. 2017-07-27 10:43:37.839 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5265. 2017-07-27 10:43:37.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5266. 2017-07-27 10:43:37.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5267. 2017-07-27 10:43:37.866 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5268. 2017-07-27 10:43:37.866 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5269. 2017-07-27 10:43:37.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5270. 2017-07-27 10:43:37.894 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5271. 2017-07-27 10:43:37.916 |-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
  5272. 2017-07-27 10:43:37.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5273. 2017-07-27 10:43:37.918 |-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
  5274. 2017-07-27 10:43:37.919 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5275. 2017-07-27 10:43:37.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5276. 2017-07-27 10:43:37.947 |-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=?)
  5277. 2017-07-27 10:43:37.948 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5278. 2017-07-27 10:43:37.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5279. 2017-07-27 10:43:37.948 |-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=?)
  5280. 2017-07-27 10:43:37.949 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5281. 2017-07-27 10:43:37.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5282. 2017-07-27 10:43:37.975 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5283. 2017-07-27 10:43:37.977 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5284. 2017-07-27 10:43:37.978 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5285. 2017-07-27 10:43:37.981 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5286. 2017-07-27 10:43:37.982 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5287. 2017-07-27 10:43:37.990 |-DEBUG [http-nio-8089-exec-1] 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
  5288. 2017-07-27 10:43:37.990 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5289. 2017-07-27 10:43:38.019 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5290. 2017-07-27 10:43:38.021 |-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
  5291. 2017-07-27 10:43:38.021 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5292. 2017-07-27 10:43:38.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5293. 2017-07-27 10:43:38.096 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5294. 2017-07-27 10:43:38.096 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5295. 2017-07-27 10:43:38.098 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5296. 2017-07-27 10:43:38.098 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5297. 2017-07-27 10:43:38.099 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5298. 2017-07-27 10:43:38.099 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5299. 2017-07-27 10:43:38.126 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5300. 2017-07-27 10:43:38.126 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5301. 2017-07-27 10:43:38.127 |-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
  5302. 2017-07-27 10:43:38.127 |-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
  5303. 2017-07-27 10:43:38.127 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5304. 2017-07-27 10:43:38.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5305. 2017-07-27 10:43:38.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5306. 2017-07-27 10:43:38.157 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5307. 2017-07-27 10:43:38.157 |-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=?)
  5308. 2017-07-27 10:43:38.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5309. 2017-07-27 10:43:38.158 |-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=?)
  5310. 2017-07-27 10:43:38.158 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5311. 2017-07-27 10:43:38.184 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5312. 2017-07-27 10:43:38.185 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5313. 2017-07-27 10:43:38.186 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5314. 2017-07-27 10:43:38.186 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5315. 2017-07-27 10:43:38.186 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5316. 2017-07-27 10:43:38.187 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5317. 2017-07-27 10:43:38.188 |-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
  5318. 2017-07-27 10:43:38.188 |-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
  5319. 2017-07-27 10:43:38.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5320. 2017-07-27 10:43:38.188 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5321. 2017-07-27 10:43:38.216 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5322. 2017-07-27 10:43:38.217 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5323. 2017-07-27 10:43:38.227 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5324. 2017-07-27 10:43:38.228 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5325. 2017-07-27 10:43:38.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5326. 2017-07-27 10:43:38.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5327. 2017-07-27 10:43:38.259 |-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
  5328. 2017-07-27 10:43:38.259 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5329. 2017-07-27 10:43:38.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5330. 2017-07-27 10:43:38.290 |-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=?)
  5331. 2017-07-27 10:43:38.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5332. 2017-07-27 10:43:38.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5333. 2017-07-27 10:43:38.320 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5334. 2017-07-27 10:43:38.320 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5335. 2017-07-27 10:43:38.324 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5336. 2017-07-27 10:43:38.325 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5337. 2017-07-27 10:43:38.411 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5338. 2017-07-27 10:43:38.443 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5339. 2017-07-27 10:43:38.445 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5340. 2017-07-27 10:43:38.445 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5341. 2017-07-27 10:43:38.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5342. 2017-07-27 10:43:38.474 |-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
  5343. 2017-07-27 10:43:38.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5344. 2017-07-27 10:43:38.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5345. 2017-07-27 10:43:38.504 |-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=?)
  5346. 2017-07-27 10:43:38.505 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5347. 2017-07-27 10:43:38.532 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5348. 2017-07-27 10:43:38.534 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5349. 2017-07-27 10:43:38.535 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5350. 2017-07-27 10:43:38.537 |-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=?
  5351. 2017-07-27 10:43:38.537 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5352. 2017-07-27 10:43:38.565 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  5353. 2017-07-27 10:43:43.405 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5354. 2017-07-27 10:43:43.405 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5355. 2017-07-27 10:43:43.408 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5356. 2017-07-27 10:43:43.408 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5357. 2017-07-27 10:43:43.408 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5358. 2017-07-27 10:43:43.408 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5359. 2017-07-27 10:43:43.437 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5360. 2017-07-27 10:43:43.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5361. 2017-07-27 10:43:43.437 |-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
  5362. 2017-07-27 10:43:43.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
  5363. 2017-07-27 10:43:43.438 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5364. 2017-07-27 10:43:43.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5365. 2017-07-27 10:43:43.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5366. 2017-07-27 10:43:43.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5367. 2017-07-27 10:43:43.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=?)
  5368. 2017-07-27 10:43:43.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=?)
  5369. 2017-07-27 10:43:43.469 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5370. 2017-07-27 10:43:43.469 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5371. 2017-07-27 10:43:43.495 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5372. 2017-07-27 10:43:43.496 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5373. 2017-07-27 10:43:43.500 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5374. 2017-07-27 10:43:43.500 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5375. 2017-07-27 10:43:43.501 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5376. 2017-07-27 10:43:43.501 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5377. 2017-07-27 10:43:43.506 |-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
  5378. 2017-07-27 10:43:43.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5379. 2017-07-27 10:43:43.536 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5380. 2017-07-27 10:43:43.537 |-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
  5381. 2017-07-27 10:43:43.538 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5382. 2017-07-27 10:43:43.568 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5383. 2017-07-27 10:43:43.623 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5384. 2017-07-27 10:43:43.623 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5385. 2017-07-27 10:43:43.625 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5386. 2017-07-27 10:43:43.626 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5387. 2017-07-27 10:43:43.626 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5388. 2017-07-27 10:43:43.626 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5389. 2017-07-27 10:43:43.663 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5390. 2017-07-27 10:43:43.663 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5391. 2017-07-27 10:43:43.663 |-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
  5392. 2017-07-27 10:43:43.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
  5393. 2017-07-27 10:43:43.664 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5394. 2017-07-27 10:43:43.664 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5395. 2017-07-27 10:43:43.693 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5396. 2017-07-27 10:43:43.693 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5397. 2017-07-27 10:43:43.694 |-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=?)
  5398. 2017-07-27 10:43:43.694 |-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=?)
  5399. 2017-07-27 10:43:43.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5400. 2017-07-27 10:43:43.694 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5401. 2017-07-27 10:43:43.721 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5402. 2017-07-27 10:43:43.721 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5403. 2017-07-27 10:43:43.724 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5404. 2017-07-27 10:43:43.724 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5405. 2017-07-27 10:43:43.725 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5406. 2017-07-27 10:43:43.726 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5407. 2017-07-27 10:43:43.726 |-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
  5408. 2017-07-27 10:43:43.727 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5409. 2017-07-27 10:43:43.727 |-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
  5410. 2017-07-27 10:43:43.727 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5411. 2017-07-27 10:43:43.755 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5412. 2017-07-27 10:43:43.756 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5413. 2017-07-27 10:43:43.768 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5414. 2017-07-27 10:43:43.770 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5415. 2017-07-27 10:43:43.770 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5416. 2017-07-27 10:43:43.798 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5417. 2017-07-27 10:43:43.799 |-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
  5418. 2017-07-27 10:43:43.799 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5419. 2017-07-27 10:43:43.830 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5420. 2017-07-27 10:43:43.831 |-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=?)
  5421. 2017-07-27 10:43:43.831 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5422. 2017-07-27 10:43:43.859 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5423. 2017-07-27 10:43:43.862 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5424. 2017-07-27 10:43:43.863 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5425. 2017-07-27 10:43:43.867 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5426. 2017-07-27 10:43:43.868 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5427. 2017-07-27 10:43:43.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5428. 2017-07-27 10:43:43.981 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5429. 2017-07-27 10:43:43.983 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5430. 2017-07-27 10:43:43.983 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5431. 2017-07-27 10:43:44.011 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5432. 2017-07-27 10:43:44.012 |-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
  5433. 2017-07-27 10:43:44.012 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5434. 2017-07-27 10:43:44.043 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5435. 2017-07-27 10:43:44.043 |-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=?)
  5436. 2017-07-27 10:43:44.044 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5437. 2017-07-27 10:43:44.071 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5438. 2017-07-27 10:43:44.076 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5439. 2017-07-27 10:43:44.078 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5440. 2017-07-27 10:43:44.083 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5441. 2017-07-27 10:43:44.083 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5442. 2017-07-27 10:43:44.111 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  5443. 2017-07-27 10:44:10.066 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5444. 2017-07-27 10:44:10.069 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5445. 2017-07-27 10:44:10.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5446. 2017-07-27 10:44:10.070 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5447. 2017-07-27 10:44:10.074 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5448. 2017-07-27 10:44:10.075 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5449. 2017-07-27 10:44:10.099 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5450. 2017-07-27 10:44:10.099 |-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
  5451. 2017-07-27 10:44:10.100 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5452. 2017-07-27 10:44:10.102 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5453. 2017-07-27 10:44:10.103 |-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
  5454. 2017-07-27 10:44:10.103 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5455. 2017-07-27 10:44:10.129 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5456. 2017-07-27 10:44:10.130 |-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=?)
  5457. 2017-07-27 10:44:10.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5458. 2017-07-27 10:44:10.131 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5459. 2017-07-27 10:44:10.132 |-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=?)
  5460. 2017-07-27 10:44:10.132 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5461. 2017-07-27 10:44:10.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5462. 2017-07-27 10:44:10.158 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5463. 2017-07-27 10:44:10.160 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5464. 2017-07-27 10:44:10.160 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5465. 2017-07-27 10:44:10.162 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5466. 2017-07-27 10:44:10.162 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5467. 2017-07-27 10:44:10.166 |-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
  5468. 2017-07-27 10:44:10.167 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5469. 2017-07-27 10:44:10.196 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5470. 2017-07-27 10:44:10.197 |-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
  5471. 2017-07-27 10:44:10.198 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5472. 2017-07-27 10:44:10.227 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5473. 2017-07-27 10:44:10.285 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5474. 2017-07-27 10:44:10.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5475. 2017-07-27 10:44:10.286 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5476. 2017-07-27 10:44:10.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5477. 2017-07-27 10:44:10.288 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5478. 2017-07-27 10:44:10.288 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5479. 2017-07-27 10:44:10.314 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5480. 2017-07-27 10:44:10.315 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5481. 2017-07-27 10:44:10.315 |-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
  5482. 2017-07-27 10:44:10.315 |-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
  5483. 2017-07-27 10:44:10.315 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5484. 2017-07-27 10:44:10.316 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5485. 2017-07-27 10:44:10.344 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5486. 2017-07-27 10:44:10.345 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5487. 2017-07-27 10:44:10.345 |-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=?)
  5488. 2017-07-27 10:44:10.346 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5489. 2017-07-27 10:44:10.346 |-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=?)
  5490. 2017-07-27 10:44:10.347 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5491. 2017-07-27 10:44:10.372 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5492. 2017-07-27 10:44:10.374 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5493. 2017-07-27 10:44:10.375 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5494. 2017-07-27 10:44:10.376 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5495. 2017-07-27 10:44:10.376 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5496. 2017-07-27 10:44:10.377 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5497. 2017-07-27 10:44:10.379 |-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
  5498. 2017-07-27 10:44:10.379 |-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
  5499. 2017-07-27 10:44:10.380 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5500. 2017-07-27 10:44:10.380 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5501. 2017-07-27 10:44:10.408 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5502. 2017-07-27 10:44:10.409 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5503. 2017-07-27 10:44:10.421 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5504. 2017-07-27 10:44:10.422 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5505. 2017-07-27 10:44:10.422 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5506. 2017-07-27 10:44:10.450 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5507. 2017-07-27 10:44:10.451 |-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
  5508. 2017-07-27 10:44:10.451 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5509. 2017-07-27 10:44:10.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5510. 2017-07-27 10:44:10.482 |-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=?)
  5511. 2017-07-27 10:44:10.482 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5512. 2017-07-27 10:44:10.510 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5513. 2017-07-27 10:44:10.511 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5514. 2017-07-27 10:44:10.512 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5515. 2017-07-27 10:44:10.515 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5516. 2017-07-27 10:44:10.516 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5517. 2017-07-27 10:44:10.600 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5518. 2017-07-27 10:44:10.640 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5519. 2017-07-27 10:44:10.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5520. 2017-07-27 10:44:10.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5521. 2017-07-27 10:44:10.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5522. 2017-07-27 10:44:10.670 |-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
  5523. 2017-07-27 10:44:10.670 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5524. 2017-07-27 10:44:10.701 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5525. 2017-07-27 10:44:10.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=?)
  5526. 2017-07-27 10:44:10.703 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5527. 2017-07-27 10:44:10.730 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5528. 2017-07-27 10:44:10.733 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5529. 2017-07-27 10:44:10.734 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5530. 2017-07-27 10:44:10.739 |-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=?
  5531. 2017-07-27 10:44:10.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5532. 2017-07-27 10:44:10.768 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  5533. 2017-07-27 10:44:10.864 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5534. 2017-07-27 10:44:10.865 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5535. 2017-07-27 10:44:10.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5536. 2017-07-27 10:44:10.893 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5537. 2017-07-27 10:44:10.894 |-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
  5538. 2017-07-27 10:44:10.894 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5539. 2017-07-27 10:44:10.925 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5540. 2017-07-27 10:44:10.926 |-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=?)
  5541. 2017-07-27 10:44:10.927 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5542. 2017-07-27 10:44:10.956 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5543. 2017-07-27 10:44:10.959 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5544. 2017-07-27 10:44:10.960 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5545. 2017-07-27 10:44:10.962 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5546. 2017-07-27 10:44:10.962 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5547. 2017-07-27 10:44:10.991 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5548. 2017-07-27 10:44:11.097 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5549. 2017-07-27 10:44:11.097 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5550. 2017-07-27 10:44:11.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5551. 2017-07-27 10:44:11.099 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5552. 2017-07-27 10:44:11.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5553. 2017-07-27 10:44:11.100 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5554. 2017-07-27 10:44:11.128 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5555. 2017-07-27 10:44:11.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5556. 2017-07-27 10:44:11.129 |-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
  5557. 2017-07-27 10:44:11.129 |-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
  5558. 2017-07-27 10:44:11.129 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5559. 2017-07-27 10:44:11.129 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5560. 2017-07-27 10:44:11.158 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5561. 2017-07-27 10:44:11.158 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5562. 2017-07-27 10:44:11.158 |-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=?)
  5563. 2017-07-27 10:44:11.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=?)
  5564. 2017-07-27 10:44:11.159 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5565. 2017-07-27 10:44:11.159 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5566. 2017-07-27 10:44:11.185 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5567. 2017-07-27 10:44:11.185 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5568. 2017-07-27 10:44:11.188 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5569. 2017-07-27 10:44:11.189 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5570. 2017-07-27 10:44:11.190 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5571. 2017-07-27 10:44:11.191 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5572. 2017-07-27 10:44:11.192 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Preparing: SELECT COUNT(1) AS all_checkman, COUNT(1) AS all_task_num, COUNT(cs.check_item_score) AS checked_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute, COUNT(DISTINCT(t.checked_person)) AS all_checked_num, SUM(cs.check_item_score) AS all_checked_score FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ?
  5573. 2017-07-27 10:44:11.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5574. 2017-07-27 10:44:11.274 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL
  5575. 2017-07-27 10:44:11.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5576. 2017-07-27 10:44:11.356 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5577. 2017-07-27 10:44:11.358 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  5578. 2017-07-27 10:44:11.358 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5579. 2017-07-27 10:44:11.449 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5580. 2017-07-27 10:44:12.161 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| <== Total: 1
  5581. 2017-07-27 10:44:33.256 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5582. 2017-07-27 10:44:33.260 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5583. 2017-07-27 10:44:33.260 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5584. 2017-07-27 10:44:33.260 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5585. 2017-07-27 10:44:33.262 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5586. 2017-07-27 10:44:33.262 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5587. 2017-07-27 10:44:33.267 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5588. 2017-07-27 10:44:33.288 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5589. 2017-07-27 10:44:33.288 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5590. 2017-07-27 10:44:33.289 |-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
  5591. 2017-07-27 10:44:33.289 |-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
  5592. 2017-07-27 10:44:33.289 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5593. 2017-07-27 10:44:33.290 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5594. 2017-07-27 10:44:33.295 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5595. 2017-07-27 10:44:33.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5596. 2017-07-27 10:44:33.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5597. 2017-07-27 10:44:33.319 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5598. 2017-07-27 10:44:33.319 |-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=?)
  5599. 2017-07-27 10:44:33.319 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5600. 2017-07-27 10:44:33.319 |-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=?)
  5601. 2017-07-27 10:44:33.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5602. 2017-07-27 10:44:33.326 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5603. 2017-07-27 10:44:33.345 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5604. 2017-07-27 10:44:33.348 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5605. 2017-07-27 10:44:33.349 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5606. 2017-07-27 10:44:33.350 |-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
  5607. 2017-07-27 10:44:33.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5608. 2017-07-27 10:44:33.351 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5609. 2017-07-27 10:44:33.355 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5610. 2017-07-27 10:44:33.357 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5611. 2017-07-27 10:44:33.378 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5612. 2017-07-27 10:44:33.379 |-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=?)
  5613. 2017-07-27 10:44:33.379 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5614. 2017-07-27 10:44:33.404 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5615. 2017-07-27 10:44:33.408 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5616. 2017-07-27 10:44:33.409 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5617. 2017-07-27 10:44:33.410 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Preparing: SELECT COUNT(1) AS all_checkman, COUNT(1) AS all_task_num, COUNT(cs.check_item_score) AS checked_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute, COUNT(DISTINCT(t.checked_person)) AS all_checked_num, SUM(cs.check_item_score) AS all_checked_score FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ?
  5618. 2017-07-27 10:44:33.411 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Parameters: 2017-07-05 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5619. 2017-07-27 10:44:33.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL
  5620. 2017-07-27 10:44:33.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-05 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5621. 2017-07-27 10:44:33.474 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL
  5622. 2017-07-27 10:44:33.474 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-05 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5623. 2017-07-27 10:44:33.560 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5624. 2017-07-27 10:44:33.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  5625. 2017-07-27 10:44:33.563 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-05 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5626. 2017-07-27 10:44:33.568 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5627. 2017-07-27 10:44:33.569 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  5628. 2017-07-27 10:44:33.570 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-05 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5629. 2017-07-27 10:44:33.655 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5630. 2017-07-27 10:44:33.663 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5631. 2017-07-27 10:44:34.092 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| <== Total: 1
  5632. 2017-07-27 10:44:49.574 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5633. 2017-07-27 10:44:49.577 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5634. 2017-07-27 10:44:49.577 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5635. 2017-07-27 10:44:49.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5636. 2017-07-27 10:44:49.607 |-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
  5637. 2017-07-27 10:44:49.607 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5638. 2017-07-27 10:44:49.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5639. 2017-07-27 10:44:49.635 |-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=?)
  5640. 2017-07-27 10:44:49.635 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5641. 2017-07-27 10:44:49.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5642. 2017-07-27 10:44:49.663 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5643. 2017-07-27 10:44:49.664 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5644. 2017-07-27 10:44:49.667 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  5645. 2017-07-27 10:44:49.667 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5646. 2017-07-27 10:44:49.696 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  5647. 2017-07-27 10:44:49.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  5648. 2017-07-27 10:44:49.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5649. 2017-07-27 10:44:49.733 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  5650. 2017-07-27 10:44:49.735 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  5651. 2017-07-27 10:44:49.735 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5652. 2017-07-27 10:44:49.765 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 219
  5653. 2017-07-27 10:44:58.751 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5654. 2017-07-27 10:44:58.755 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5655. 2017-07-27 10:44:58.756 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5656. 2017-07-27 10:44:58.785 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5657. 2017-07-27 10:44:58.786 |-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
  5658. 2017-07-27 10:44:58.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5659. 2017-07-27 10:44:58.814 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5660. 2017-07-27 10:44:58.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=?)
  5661. 2017-07-27 10:44:58.815 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5662. 2017-07-27 10:44:58.839 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5663. 2017-07-27 10:44:58.844 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5664. 2017-07-27 10:44:58.845 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5665. 2017-07-27 10:44:58.849 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  5666. 2017-07-27 10:44:58.850 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5667. 2017-07-27 10:44:58.878 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  5668. 2017-07-27 10:44:58.881 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  5669. 2017-07-27 10:44:58.882 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5670. 2017-07-27 10:44:58.915 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  5671. 2017-07-27 10:44:58.917 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  5672. 2017-07-27 10:44:58.918 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5673. 2017-07-27 10:44:58.948 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 219
  5674. 2017-07-27 10:45:12.814 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5675. 2017-07-27 10:45:12.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5676. 2017-07-27 10:45:12.820 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5677. 2017-07-27 10:45:12.848 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5678. 2017-07-27 10:45:12.849 |-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
  5679. 2017-07-27 10:45:12.850 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5680. 2017-07-27 10:45:12.877 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5681. 2017-07-27 10:45:12.878 |-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=?)
  5682. 2017-07-27 10:45:12.878 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5683. 2017-07-27 10:45:12.902 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5684. 2017-07-27 10:45:12.907 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5685. 2017-07-27 10:45:12.909 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5686. 2017-07-27 10:45:12.913 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  5687. 2017-07-27 10:45:12.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5688. 2017-07-27 10:45:12.943 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  5689. 2017-07-27 10:45:12.946 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  5690. 2017-07-27 10:45:12.947 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-19 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5691. 2017-07-27 10:45:12.976 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  5692. 2017-07-27 10:45:12.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  5693. 2017-07-27 10:45:12.979 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-19 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5694. 2017-07-27 10:45:13.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 10
  5695. 2017-07-27 10:45:44.055 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5696. 2017-07-27 10:45:44.057 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5697. 2017-07-27 10:45:44.058 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5698. 2017-07-27 10:45:44.086 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5699. 2017-07-27 10:45:44.087 |-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
  5700. 2017-07-27 10:45:44.088 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5701. 2017-07-27 10:45:44.115 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5702. 2017-07-27 10:45:44.116 |-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=?)
  5703. 2017-07-27 10:45:44.116 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5704. 2017-07-27 10:45:44.141 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5705. 2017-07-27 10:45:44.143 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5706. 2017-07-27 10:45:44.144 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5707. 2017-07-27 10:45:44.146 |-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
  5708. 2017-07-27 10:45:44.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  5709. 2017-07-27 10:45:44.174 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  5710. 2017-07-27 10:45:44.184 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5711. 2017-07-27 10:45:44.187 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5712. 2017-07-27 10:45:44.187 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5713. 2017-07-27 10:45:44.215 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5714. 2017-07-27 10:45:44.216 |-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
  5715. 2017-07-27 10:45:44.216 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5716. 2017-07-27 10:45:44.244 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5717. 2017-07-27 10:45:44.245 |-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=?)
  5718. 2017-07-27 10:45:44.245 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5719. 2017-07-27 10:45:44.270 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5720. 2017-07-27 10:45:44.273 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5721. 2017-07-27 10:45:44.274 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5722. 2017-07-27 10:45:44.277 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5723. 2017-07-27 10:45:44.277 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5724. 2017-07-27 10:45:44.421 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5725. 2017-07-27 10:45:44.460 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5726. 2017-07-27 10:45:44.463 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5727. 2017-07-27 10:45:44.463 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5728. 2017-07-27 10:45:44.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5729. 2017-07-27 10:45:44.492 |-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
  5730. 2017-07-27 10:45:44.492 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5731. 2017-07-27 10:45:44.520 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5732. 2017-07-27 10:45:44.521 |-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=?)
  5733. 2017-07-27 10:45:44.521 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5734. 2017-07-27 10:45:44.546 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5735. 2017-07-27 10:45:44.551 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5736. 2017-07-27 10:45:44.552 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5737. 2017-07-27 10:45:44.556 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5738. 2017-07-27 10:45:44.557 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5739. 2017-07-27 10:45:44.673 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5740. 2017-07-27 10:45:44.675 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class t LEFT JOIN check_task ct ON t.id = ct.user_class_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date , t.user_id
  5741. 2017-07-27 10:45:44.676 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5742. 2017-07-27 10:45:47.131 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5743. 2017-07-27 10:45:47.133 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5744. 2017-07-27 10:45:47.133 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5745. 2017-07-27 10:45:47.162 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5746. 2017-07-27 10:45:47.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
  5747. 2017-07-27 10:45:47.187 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5748. 2017-07-27 10:45:47.216 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5749. 2017-07-27 10:45:47.217 |-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=?)
  5750. 2017-07-27 10:45:47.218 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5751. 2017-07-27 10:45:47.244 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5752. 2017-07-27 10:45:47.248 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5753. 2017-07-27 10:45:47.250 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5754. 2017-07-27 10:45:47.255 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  5755. 2017-07-27 10:45:47.256 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5756. 2017-07-27 10:45:47.284 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  5757. 2017-07-27 10:45:47.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  5758. 2017-07-27 10:45:47.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5759. 2017-07-27 10:45:47.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  5760. 2017-07-27 10:45:47.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  5761. 2017-07-27 10:45:47.330 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5762. 2017-07-27 10:45:47.364 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 91
  5763. 2017-07-27 10:45:52.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| <== Total: 5206
  5764. 2017-07-27 10:45:52.089 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id
  5765. 2017-07-27 10:45:52.089 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5766. 2017-07-27 10:45:52.140 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| <== Total: 449
  5767. 2017-07-27 10:46:08.737 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5768. 2017-07-27 10:46:08.740 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5769. 2017-07-27 10:46:08.741 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5770. 2017-07-27 10:46:08.769 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5771. 2017-07-27 10:46:08.769 |-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
  5772. 2017-07-27 10:46:08.770 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5773. 2017-07-27 10:46:08.796 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5774. 2017-07-27 10:46:08.797 |-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=?)
  5775. 2017-07-27 10:46:08.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5776. 2017-07-27 10:46:08.822 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5777. 2017-07-27 10:46:08.828 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5778. 2017-07-27 10:46:08.830 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5779. 2017-07-27 10:46:08.833 |-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
  5780. 2017-07-27 10:46:08.833 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  5781. 2017-07-27 10:46:08.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  5782. 2017-07-27 10:46:08.872 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5783. 2017-07-27 10:46:08.874 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5784. 2017-07-27 10:46:08.875 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5785. 2017-07-27 10:46:08.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5786. 2017-07-27 10:46:08.904 |-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
  5787. 2017-07-27 10:46:08.904 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5788. 2017-07-27 10:46:08.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5789. 2017-07-27 10:46:08.932 |-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=?)
  5790. 2017-07-27 10:46:08.933 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5791. 2017-07-27 10:46:08.958 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5792. 2017-07-27 10:46:08.963 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5793. 2017-07-27 10:46:08.965 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5794. 2017-07-27 10:46:08.969 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5795. 2017-07-27 10:46:08.970 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5796. 2017-07-27 10:46:09.055 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5797. 2017-07-27 10:46:09.089 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5798. 2017-07-27 10:46:09.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5799. 2017-07-27 10:46:09.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5800. 2017-07-27 10:46:09.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5801. 2017-07-27 10:46:09.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
  5802. 2017-07-27 10:46:09.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5803. 2017-07-27 10:46:09.148 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5804. 2017-07-27 10:46:09.149 |-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=?)
  5805. 2017-07-27 10:46:09.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5806. 2017-07-27 10:46:09.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5807. 2017-07-27 10:46:09.177 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5808. 2017-07-27 10:46:09.178 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5809. 2017-07-27 10:46:09.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5810. 2017-07-27 10:46:09.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5811. 2017-07-27 10:46:09.256 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5812. 2017-07-27 10:46:09.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class_unregular t LEFT JOIN check_task ct ON t.id = ct.user_class_unregular_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date
  5813. 2017-07-27 10:46:09.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5814. 2017-07-27 10:46:10.287 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5815. 2017-07-27 10:46:10.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5816. 2017-07-27 10:46:10.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5817. 2017-07-27 10:46:10.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5818. 2017-07-27 10:46:10.324 |-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
  5819. 2017-07-27 10:46:10.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5820. 2017-07-27 10:46:10.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5821. 2017-07-27 10:46:10.353 |-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=?)
  5822. 2017-07-27 10:46:10.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5823. 2017-07-27 10:46:10.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5824. 2017-07-27 10:46:10.384 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5825. 2017-07-27 10:46:10.386 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5826. 2017-07-27 10:46:10.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  5827. 2017-07-27 10:46:10.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5828. 2017-07-27 10:46:10.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 308
  5829. 2017-07-27 10:46:10.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  5830. 2017-07-27 10:46:10.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5831. 2017-07-27 10:46:10.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 533
  5832. 2017-07-27 10:46:10.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5833. 2017-07-27 10:46:10.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5834. 2017-07-27 10:46:10.571 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5835. 2017-07-27 10:46:10.574 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  5836. 2017-07-27 10:46:10.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5837. 2017-07-27 10:46:10.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 0
  5838. 2017-07-27 10:46:10.614 |-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
  5839. 2017-07-27 10:46:10.615 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5840. 2017-07-27 10:46:10.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5841. 2017-07-27 10:46:17.755 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5842. 2017-07-27 10:46:17.757 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5843. 2017-07-27 10:46:17.758 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5844. 2017-07-27 10:46:17.788 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5845. 2017-07-27 10:46:17.790 |-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
  5846. 2017-07-27 10:46:17.790 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5847. 2017-07-27 10:46:17.819 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5848. 2017-07-27 10:46:17.820 |-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=?)
  5849. 2017-07-27 10:46:17.820 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5850. 2017-07-27 10:46:17.846 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5851. 2017-07-27 10:46:17.851 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5852. 2017-07-27 10:46:17.853 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5853. 2017-07-27 10:46:17.857 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  5854. 2017-07-27 10:46:17.858 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-19 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5855. 2017-07-27 10:46:17.904 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 379
  5856. 2017-07-27 10:46:17.908 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  5857. 2017-07-27 10:46:17.908 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-19 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5858. 2017-07-27 10:46:17.945 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 535
  5859. 2017-07-27 10:46:17.948 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5860. 2017-07-27 10:46:17.949 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5861. 2017-07-27 10:46:18.033 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5862. 2017-07-27 10:46:18.036 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  5863. 2017-07-27 10:46:18.036 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-19 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5864. 2017-07-27 10:46:18.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 0
  5865. 2017-07-27 10:46:18.073 |-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
  5866. 2017-07-27 10:46:18.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5867. 2017-07-27 10:46:18.102 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5868. 2017-07-27 10:46:23.591 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5869. 2017-07-27 10:46:23.611 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5870. 2017-07-27 10:46:23.612 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5871. 2017-07-27 10:46:23.645 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5872. 2017-07-27 10:46:23.646 |-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
  5873. 2017-07-27 10:46:23.646 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5874. 2017-07-27 10:46:23.675 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5875. 2017-07-27 10:46:23.676 |-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=?)
  5876. 2017-07-27 10:46:23.677 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5877. 2017-07-27 10:46:23.703 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5878. 2017-07-27 10:46:23.706 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5879. 2017-07-27 10:46:23.706 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5880. 2017-07-27 10:46:23.708 |-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
  5881. 2017-07-27 10:46:23.708 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  5882. 2017-07-27 10:46:23.739 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  5883. 2017-07-27 10:46:23.751 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5884. 2017-07-27 10:46:23.754 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5885. 2017-07-27 10:46:23.754 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5886. 2017-07-27 10:46:23.784 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5887. 2017-07-27 10:46:23.785 |-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
  5888. 2017-07-27 10:46:23.785 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5889. 2017-07-27 10:46:23.814 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5890. 2017-07-27 10:46:23.815 |-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=?)
  5891. 2017-07-27 10:46:23.815 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5892. 2017-07-27 10:46:23.842 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5893. 2017-07-27 10:46:23.845 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5894. 2017-07-27 10:46:23.846 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5895. 2017-07-27 10:46:23.849 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5896. 2017-07-27 10:46:23.849 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5897. 2017-07-27 10:46:23.934 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5898. 2017-07-27 10:46:23.976 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5899. 2017-07-27 10:46:23.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5900. 2017-07-27 10:46:23.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5901. 2017-07-27 10:46:24.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5902. 2017-07-27 10:46:24.013 |-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
  5903. 2017-07-27 10:46:24.013 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5904. 2017-07-27 10:46:24.042 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5905. 2017-07-27 10:46:24.043 |-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=?)
  5906. 2017-07-27 10:46:24.043 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5907. 2017-07-27 10:46:24.069 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5908. 2017-07-27 10:46:24.072 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5909. 2017-07-27 10:46:24.073 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5910. 2017-07-27 10:46:24.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5911. 2017-07-27 10:46:24.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5912. 2017-07-27 10:46:24.161 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5913. 2017-07-27 10:46:24.163 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  5914. 2017-07-27 10:46:24.164 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5915. 2017-07-27 10:46:24.320 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1266
  5916. 2017-07-27 10:46:26.936 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5917. 2017-07-27 10:46:26.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5918. 2017-07-27 10:46:26.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5919. 2017-07-27 10:46:27.237 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5920. 2017-07-27 10:46:27.238 |-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
  5921. 2017-07-27 10:46:27.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5922. 2017-07-27 10:46:27.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5923. 2017-07-27 10:46:27.269 |-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=?)
  5924. 2017-07-27 10:46:27.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5925. 2017-07-27 10:46:27.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5926. 2017-07-27 10:46:27.298 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5927. 2017-07-27 10:46:27.299 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5928. 2017-07-27 10:46:27.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5929. 2017-07-27 10:46:27.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5930. 2017-07-27 10:46:27.823 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5931. 2017-07-27 10:46:27.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  5932. 2017-07-27 10:46:27.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5933. 2017-07-27 10:46:28.406 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| <== Total: 11547
  5934. 2017-07-27 10:46:28.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id
  5935. 2017-07-27 10:46:28.409 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5936. 2017-07-27 10:46:28.574 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| <== Total: 500
  5937. 2017-07-27 10:46:28.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1266
  5938. 2017-07-27 10:47:31.308 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5939. 2017-07-27 10:47:31.337 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5940. 2017-07-27 10:47:31.337 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5941. 2017-07-27 10:47:31.365 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5942. 2017-07-27 10:47:31.391 |-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
  5943. 2017-07-27 10:47:31.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5944. 2017-07-27 10:47:31.420 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5945. 2017-07-27 10:47:31.421 |-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=?)
  5946. 2017-07-27 10:47:31.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5947. 2017-07-27 10:47:31.463 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5948. 2017-07-27 10:47:31.467 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5949. 2017-07-27 10:47:31.468 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5950. 2017-07-27 10:47:31.471 |-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
  5951. 2017-07-27 10:47:31.471 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  5952. 2017-07-27 10:47:31.499 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  5953. 2017-07-27 10:47:31.525 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5954. 2017-07-27 10:47:31.527 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5955. 2017-07-27 10:47:31.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5956. 2017-07-27 10:47:31.556 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5957. 2017-07-27 10:47:31.557 |-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
  5958. 2017-07-27 10:47:31.558 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5959. 2017-07-27 10:47:31.587 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5960. 2017-07-27 10:47:31.588 |-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=?)
  5961. 2017-07-27 10:47:31.589 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5962. 2017-07-27 10:47:31.615 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5963. 2017-07-27 10:47:31.619 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5964. 2017-07-27 10:47:31.620 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5965. 2017-07-27 10:47:31.624 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5966. 2017-07-27 10:47:31.624 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5967. 2017-07-27 10:47:31.926 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5968. 2017-07-27 10:47:31.970 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5969. 2017-07-27 10:47:31.973 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5970. 2017-07-27 10:47:31.973 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5971. 2017-07-27 10:47:32.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5972. 2017-07-27 10:47:32.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
  5973. 2017-07-27 10:47:32.003 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  5974. 2017-07-27 10:47:32.032 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  5975. 2017-07-27 10:47:32.033 |-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=?)
  5976. 2017-07-27 10:47:32.033 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  5977. 2017-07-27 10:47:32.060 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5978. 2017-07-27 10:47:32.064 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  5979. 2017-07-27 10:47:32.066 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5980. 2017-07-27 10:47:32.070 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5981. 2017-07-27 10:47:32.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5982. 2017-07-27 10:47:32.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  5983. 2017-07-27 10:47:32.204 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  5984. 2017-07-27 10:47:32.204 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  5985. 2017-07-27 10:47:32.500 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5986. 2017-07-27 10:47:32.500 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  5987. 2017-07-27 10:47:32.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  5988. 2017-07-27 10:47:32.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  5989. 2017-07-27 10:47:32.519 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1268
  5990. 2017-07-27 10:47:32.526 |-ERROR [http-nio-8089-exec-10] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
  5991. org.apache.catalina.connector.ClientAbortException: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  5992. at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:356)
  5993. at org.apache.catalina.connector.OutputBuffer.flushByteBuffer(OutputBuffer.java:808)
  5994. at org.apache.catalina.connector.OutputBuffer.append(OutputBuffer.java:713)
  5995. at org.apache.catalina.connector.OutputBuffer.writeBytes(OutputBuffer.java:391)
  5996. at org.apache.catalina.connector.OutputBuffer.write(OutputBuffer.java:369)
  5997. at org.apache.catalina.connector.CoyoteOutputStream.write(CoyoteOutputStream.java:96)
  5998. at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:221)
  5999. at sun.nio.cs.StreamEncoder.implWrite(StreamEncoder.java:282)
  6000. at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:125)
  6001. at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:135)
  6002. at java.io.OutputStreamWriter.write(OutputStreamWriter.java:220)
  6003. at java.io.Writer.write(Writer.java:157)
  6004. at org.springframework.util.StreamUtils.copy(StreamUtils.java:109)
  6005. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  6006. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  6007. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  6008. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  6009. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  6010. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  6011. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  6012. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  6013. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  6014. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  6015. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  6016. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  6017. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  6018. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  6019. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  6020. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  6021. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  6022. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  6023. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6024. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  6025. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6026. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6027. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  6028. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6029. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6030. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6031. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  6032. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6033. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6034. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  6035. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6036. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6037. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  6038. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6039. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6040. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6041. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  6042. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6043. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6044. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  6045. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6046. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6047. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6048. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  6049. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  6050. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  6051. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6052. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  6053. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6054. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  6055. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6056. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  6057. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6058. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  6059. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6060. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  6061. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6062. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  6063. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6064. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6065. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  6066. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6067. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  6068. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6069. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6070. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  6071. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6072. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6073. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  6074. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6075. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  6076. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6077. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6078. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  6079. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  6080. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  6081. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  6082. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6083. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6084. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  6085. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6086. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6087. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6088. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  6089. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6090. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6091. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6092. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  6093. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6094. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6095. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6096. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  6097. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6098. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6099. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6100. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  6101. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6102. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6103. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6104. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  6105. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  6106. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  6107. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  6108. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  6109. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  6110. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  6111. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  6112. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  6113. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  6114. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  6115. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  6116. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  6117. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  6118. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  6119. at java.lang.Thread.run(Thread.java:745)
  6120. Caused by: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  6121. at sun.nio.ch.SocketDispatcher.write0(Native Method)
  6122. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
  6123. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  6124. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  6125. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  6126. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  6127. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  6128. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  6129. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  6130. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  6131. at org.apache.tomcat.util.net.SocketWrapperBase.writeBlocking(SocketWrapperBase.java:450)
  6132. at org.apache.tomcat.util.net.SocketWrapperBase.write(SocketWrapperBase.java:388)
  6133. at org.apache.coyote.http11.Http11OutputBuffer$SocketOutputBuffer.doWrite(Http11OutputBuffer.java:581)
  6134. at org.apache.coyote.http11.filters.IdentityOutputFilter.doWrite(IdentityOutputFilter.java:118)
  6135. at org.apache.coyote.http11.Http11OutputBuffer.doWrite(Http11OutputBuffer.java:223)
  6136. at org.apache.coyote.Response.doWrite(Response.java:517)
  6137. at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:351)
  6138. ... 127 common frames omitted
  6139. 2017-07-27 10:47:32.528 |-WARN [http-nio-8089-exec-10] 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)
  6140. org.apache.catalina.connector.ClientAbortException: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  6141. at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:356)
  6142. at org.apache.catalina.connector.OutputBuffer.flushByteBuffer(OutputBuffer.java:808)
  6143. at org.apache.catalina.connector.OutputBuffer.append(OutputBuffer.java:713)
  6144. at org.apache.catalina.connector.OutputBuffer.writeBytes(OutputBuffer.java:391)
  6145. at org.apache.catalina.connector.OutputBuffer.write(OutputBuffer.java:369)
  6146. at org.apache.catalina.connector.CoyoteOutputStream.write(CoyoteOutputStream.java:96)
  6147. at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:221)
  6148. at sun.nio.cs.StreamEncoder.implFlushBuffer(StreamEncoder.java:291)
  6149. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:295)
  6150. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  6151. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  6152. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  6153. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  6154. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  6155. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  6156. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  6157. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  6158. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  6159. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  6160. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:380)
  6161. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  6162. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  6163. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:74)
  6164. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1218)
  6165. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1030)
  6166. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
  6167. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  6168. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  6169. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  6170. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  6171. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  6172. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  6173. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  6174. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6175. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  6176. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6177. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6178. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  6179. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6180. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6181. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6182. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  6183. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6184. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6185. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  6186. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6187. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6188. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  6189. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6190. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6191. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6192. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  6193. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6194. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6195. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  6196. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6197. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6198. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6199. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  6200. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  6201. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  6202. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6203. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  6204. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6205. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  6206. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6207. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  6208. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6209. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  6210. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6211. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  6212. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6213. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  6214. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6215. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6216. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  6217. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6218. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  6219. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6220. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6221. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  6222. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6223. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6224. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  6225. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6226. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  6227. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6228. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  6229. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  6230. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  6231. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  6232. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  6233. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6234. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6235. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  6236. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6237. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6238. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6239. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  6240. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6241. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6242. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6243. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  6244. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6245. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6246. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6247. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  6248. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6249. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6250. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6251. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  6252. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  6253. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  6254. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  6255. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  6256. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  6257. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  6258. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  6259. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  6260. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  6261. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  6262. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  6263. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  6264. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  6265. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  6266. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  6267. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  6268. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  6269. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  6270. at java.lang.Thread.run(Thread.java:745)
  6271. Caused by: java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
  6272. at sun.nio.ch.SocketDispatcher.write0(Native Method)
  6273. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
  6274. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  6275. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  6276. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  6277. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  6278. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  6279. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  6280. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  6281. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  6282. at org.apache.tomcat.util.net.SocketWrapperBase.writeBlocking(SocketWrapperBase.java:450)
  6283. at org.apache.tomcat.util.net.SocketWrapperBase.write(SocketWrapperBase.java:388)
  6284. at org.apache.coyote.http11.Http11OutputBuffer$SocketOutputBuffer.doWrite(Http11OutputBuffer.java:581)
  6285. at org.apache.coyote.http11.filters.IdentityOutputFilter.doWrite(IdentityOutputFilter.java:118)
  6286. at org.apache.coyote.http11.Http11OutputBuffer.doWrite(Http11OutputBuffer.java:223)
  6287. at org.apache.coyote.Response.doWrite(Response.java:517)
  6288. at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:351)
  6289. ... 129 common frames omitted
  6290. 2017-07-27 10:47:32.530 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6291. 2017-07-27 10:47:32.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6292. 2017-07-27 10:47:32.531 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6293. 2017-07-27 10:47:32.532 |-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
  6294. 2017-07-27 10:47:32.532 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6295. 2017-07-27 10:47:32.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6296. 2017-07-27 10:47:32.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6297. 2017-07-27 10:47:32.561 |-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=?)
  6298. 2017-07-27 10:47:32.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6299. 2017-07-27 10:47:32.632 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6300. 2017-07-27 10:47:32.632 |-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
  6301. 2017-07-27 10:47:32.633 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6302. 2017-07-27 10:47:32.635 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6303. 2017-07-27 10:47:32.638 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6304. 2017-07-27 10:47:32.642 |-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
  6305. 2017-07-27 10:47:32.642 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6306. 2017-07-27 10:47:32.660 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6307. 2017-07-27 10:47:32.661 |-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=?)
  6308. 2017-07-27 10:47:32.661 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6309. 2017-07-27 10:47:32.670 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  6310. 2017-07-27 10:47:32.671 |-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
  6311. 2017-07-27 10:47:32.671 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6312. 2017-07-27 10:47:32.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6313. 2017-07-27 10:47:32.688 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6314. 2017-07-27 10:47:32.689 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6315. 2017-07-27 10:47:32.701 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6316. 2017-07-27 10:47:32.752 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6317. 2017-07-27 10:47:32.752 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6318. 2017-07-27 10:47:32.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6319. 2017-07-27 10:47:32.755 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6320. 2017-07-27 10:47:32.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6321. 2017-07-27 10:47:32.755 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6322. 2017-07-27 10:47:32.782 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6323. 2017-07-27 10:47:32.782 |-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
  6324. 2017-07-27 10:47:32.783 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6325. 2017-07-27 10:47:32.783 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6326. 2017-07-27 10:47:32.784 |-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
  6327. 2017-07-27 10:47:32.784 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6328. 2017-07-27 10:47:32.810 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6329. 2017-07-27 10:47:32.811 |-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=?)
  6330. 2017-07-27 10:47:32.812 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6331. 2017-07-27 10:47:32.812 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6332. 2017-07-27 10:47:32.813 |-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=?)
  6333. 2017-07-27 10:47:32.813 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6334. 2017-07-27 10:47:32.838 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6335. 2017-07-27 10:47:32.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6336. 2017-07-27 10:47:32.844 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6337. 2017-07-27 10:47:32.844 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6338. 2017-07-27 10:47:32.846 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6339. 2017-07-27 10:47:32.846 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6340. 2017-07-27 10:47:32.848 |-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
  6341. 2017-07-27 10:47:32.848 |-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
  6342. 2017-07-27 10:47:32.849 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6343. 2017-07-27 10:47:32.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6344. 2017-07-27 10:47:32.937 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6345. 2017-07-27 10:47:32.954 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6346. 2017-07-27 10:47:32.969 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6347. 2017-07-27 10:47:32.972 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6348. 2017-07-27 10:47:32.972 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6349. 2017-07-27 10:47:33.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6350. 2017-07-27 10:47:33.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
  6351. 2017-07-27 10:47:33.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6352. 2017-07-27 10:47:33.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6353. 2017-07-27 10:47:33.095 |-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=?)
  6354. 2017-07-27 10:47:33.095 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6355. 2017-07-27 10:47:33.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6356. 2017-07-27 10:47:33.124 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6357. 2017-07-27 10:47:33.124 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6358. 2017-07-27 10:47:33.128 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6359. 2017-07-27 10:47:33.128 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6360. 2017-07-27 10:47:33.217 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6361. 2017-07-27 10:47:33.251 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6362. 2017-07-27 10:47:33.254 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6363. 2017-07-27 10:47:33.254 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6364. 2017-07-27 10:47:33.281 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6365. 2017-07-27 10:47:33.282 |-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
  6366. 2017-07-27 10:47:33.283 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6367. 2017-07-27 10:47:33.375 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6368. 2017-07-27 10:47:33.377 |-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=?)
  6369. 2017-07-27 10:47:33.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6370. 2017-07-27 10:47:33.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6371. 2017-07-27 10:47:33.408 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6372. 2017-07-27 10:47:33.410 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6373. 2017-07-27 10:47:33.414 |-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=?
  6374. 2017-07-27 10:47:33.414 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6375. 2017-07-27 10:47:33.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  6376. 2017-07-27 10:47:33.473 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6377. 2017-07-27 10:47:33.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6378. 2017-07-27 10:47:33.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6379. 2017-07-27 10:47:33.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6380. 2017-07-27 10:47:33.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
  6381. 2017-07-27 10:47:33.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6382. 2017-07-27 10:47:33.533 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6383. 2017-07-27 10:47:33.535 |-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=?)
  6384. 2017-07-27 10:47:33.535 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6385. 2017-07-27 10:47:33.561 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6386. 2017-07-27 10:47:33.564 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6387. 2017-07-27 10:47:33.565 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6388. 2017-07-27 10:47:33.569 |-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
  6389. 2017-07-27 10:47:33.570 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6390. 2017-07-27 10:47:33.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6391. 2017-07-27 10:47:33.659 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6392. 2017-07-27 10:47:33.661 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6393. 2017-07-27 10:47:33.661 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6394. 2017-07-27 10:47:33.689 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6395. 2017-07-27 10:47:33.691 |-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
  6396. 2017-07-27 10:47:33.691 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6397. 2017-07-27 10:47:33.792 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6398. 2017-07-27 10:47:33.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=?)
  6399. 2017-07-27 10:47:33.793 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6400. 2017-07-27 10:47:33.820 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6401. 2017-07-27 10:47:33.824 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6402. 2017-07-27 10:47:33.825 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6403. 2017-07-27 10:47:33.828 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6404. 2017-07-27 10:47:33.829 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6405. 2017-07-27 10:47:33.903 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6406. 2017-07-27 10:47:33.938 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6407. 2017-07-27 10:47:33.941 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6408. 2017-07-27 10:47:33.942 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6409. 2017-07-27 10:47:34.006 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6410. 2017-07-27 10:47:34.007 |-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
  6411. 2017-07-27 10:47:34.007 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6412. 2017-07-27 10:47:34.036 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6413. 2017-07-27 10:47:34.037 |-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=?)
  6414. 2017-07-27 10:47:34.038 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6415. 2017-07-27 10:47:34.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6416. 2017-07-27 10:47:34.069 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6417. 2017-07-27 10:47:34.070 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6418. 2017-07-27 10:47:34.074 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6419. 2017-07-27 10:47:34.074 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6420. 2017-07-27 10:47:34.149 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6421. 2017-07-27 10:47:34.150 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6422. 2017-07-27 10:47:34.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6423. 2017-07-27 10:47:34.440 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1268
  6424. 2017-07-27 10:47:45.272 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6425. 2017-07-27 10:47:45.275 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6426. 2017-07-27 10:47:45.276 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6427. 2017-07-27 10:47:45.304 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6428. 2017-07-27 10:47:45.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
  6429. 2017-07-27 10:47:45.305 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6430. 2017-07-27 10:47:45.334 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6431. 2017-07-27 10:47:45.335 |-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=?)
  6432. 2017-07-27 10:47:45.335 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6433. 2017-07-27 10:47:45.361 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6434. 2017-07-27 10:47:45.364 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6435. 2017-07-27 10:47:45.366 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6436. 2017-07-27 10:47:45.368 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6437. 2017-07-27 10:47:45.369 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6438. 2017-07-27 10:47:45.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6439. 2017-07-27 10:47:45.459 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6440. 2017-07-27 10:47:45.459 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-06 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6441. 2017-07-27 10:47:45.590 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1401
  6442. 2017-07-27 10:47:54.211 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6443. 2017-07-27 10:47:54.213 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6444. 2017-07-27 10:47:54.214 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6445. 2017-07-27 10:47:54.241 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6446. 2017-07-27 10:47:54.242 |-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
  6447. 2017-07-27 10:47:54.242 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6448. 2017-07-27 10:47:54.270 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6449. 2017-07-27 10:47:54.271 |-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=?)
  6450. 2017-07-27 10:47:54.272 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6451. 2017-07-27 10:47:54.298 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6452. 2017-07-27 10:47:54.301 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6453. 2017-07-27 10:47:54.302 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6454. 2017-07-27 10:47:54.304 |-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
  6455. 2017-07-27 10:47:54.304 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6456. 2017-07-27 10:47:54.332 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6457. 2017-07-27 10:47:54.343 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6458. 2017-07-27 10:47:54.345 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6459. 2017-07-27 10:47:54.345 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6460. 2017-07-27 10:47:54.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6461. 2017-07-27 10:47:54.375 |-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
  6462. 2017-07-27 10:47:54.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6463. 2017-07-27 10:47:54.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6464. 2017-07-27 10:47:54.405 |-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=?)
  6465. 2017-07-27 10:47:54.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6466. 2017-07-27 10:47:54.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6467. 2017-07-27 10:47:54.436 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6468. 2017-07-27 10:47:54.437 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6469. 2017-07-27 10:47:54.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6470. 2017-07-27 10:47:54.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6471. 2017-07-27 10:47:54.526 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6472. 2017-07-27 10:47:54.567 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6473. 2017-07-27 10:47:54.569 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6474. 2017-07-27 10:47:54.569 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6475. 2017-07-27 10:47:54.596 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6476. 2017-07-27 10:47:54.597 |-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
  6477. 2017-07-27 10:47:54.597 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6478. 2017-07-27 10:47:54.628 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6479. 2017-07-27 10:47:54.630 |-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=?)
  6480. 2017-07-27 10:47:54.630 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6481. 2017-07-27 10:47:54.657 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6482. 2017-07-27 10:47:54.662 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6483. 2017-07-27 10:47:54.663 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6484. 2017-07-27 10:47:54.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6485. 2017-07-27 10:47:54.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6486. 2017-07-27 10:47:54.750 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6487. 2017-07-27 10:47:54.753 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6488. 2017-07-27 10:47:54.753 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6489. 2017-07-27 10:47:54.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1199
  6490. 2017-07-27 10:48:34.061 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6491. 2017-07-27 10:48:34.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6492. 2017-07-27 10:48:34.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6493. 2017-07-27 10:48:34.092 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6494. 2017-07-27 10:48:34.093 |-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
  6495. 2017-07-27 10:48:34.093 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6496. 2017-07-27 10:48:34.122 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6497. 2017-07-27 10:48:34.123 |-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=?)
  6498. 2017-07-27 10:48:34.123 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6499. 2017-07-27 10:48:34.149 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6500. 2017-07-27 10:48:34.152 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6501. 2017-07-27 10:48:34.153 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6502. 2017-07-27 10:48:34.155 |-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
  6503. 2017-07-27 10:48:34.155 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6504. 2017-07-27 10:48:34.183 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6505. 2017-07-27 10:48:34.192 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6506. 2017-07-27 10:48:34.194 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6507. 2017-07-27 10:48:34.195 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6508. 2017-07-27 10:48:34.222 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6509. 2017-07-27 10:48:34.223 |-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
  6510. 2017-07-27 10:48:34.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6511. 2017-07-27 10:48:34.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6512. 2017-07-27 10:48:34.253 |-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=?)
  6513. 2017-07-27 10:48:34.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6514. 2017-07-27 10:48:34.280 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6515. 2017-07-27 10:48:34.283 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6516. 2017-07-27 10:48:34.284 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6517. 2017-07-27 10:48:34.286 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6518. 2017-07-27 10:48:34.287 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6519. 2017-07-27 10:48:34.372 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6520. 2017-07-27 10:48:34.410 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6521. 2017-07-27 10:48:34.412 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6522. 2017-07-27 10:48:34.412 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6523. 2017-07-27 10:48:34.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6524. 2017-07-27 10:48:34.441 |-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
  6525. 2017-07-27 10:48:34.441 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6526. 2017-07-27 10:48:34.470 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6527. 2017-07-27 10:48:34.471 |-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=?)
  6528. 2017-07-27 10:48:34.471 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6529. 2017-07-27 10:48:34.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6530. 2017-07-27 10:48:34.501 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6531. 2017-07-27 10:48:34.502 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6532. 2017-07-27 10:48:34.504 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6533. 2017-07-27 10:48:34.505 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6534. 2017-07-27 10:48:34.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6535. 2017-07-27 10:48:34.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6536. 2017-07-27 10:48:34.582 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6537. 2017-07-27 10:48:34.729 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1207
  6538. 2017-07-27 10:48:35.416 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6539. 2017-07-27 10:48:35.416 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6540. 2017-07-27 10:48:35.419 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6541. 2017-07-27 10:48:35.420 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6542. 2017-07-27 10:48:35.446 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6543. 2017-07-27 10:48:35.446 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6544. 2017-07-27 10:48:35.447 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6545. 2017-07-27 10:48:35.448 |-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
  6546. 2017-07-27 10:48:35.448 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6547. 2017-07-27 10:48:35.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6548. 2017-07-27 10:48:35.476 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6549. 2017-07-27 10:48:35.477 |-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=?)
  6550. 2017-07-27 10:48:35.477 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6551. 2017-07-27 10:48:35.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
  6552. 2017-07-27 10:48:35.498 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6553. 2017-07-27 10:48:35.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6554. 2017-07-27 10:48:35.508 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6555. 2017-07-27 10:48:35.510 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6556. 2017-07-27 10:48:35.526 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6557. 2017-07-27 10:48:35.527 |-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=?)
  6558. 2017-07-27 10:48:35.527 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6559. 2017-07-27 10:48:35.551 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6560. 2017-07-27 10:48:35.554 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6561. 2017-07-27 10:48:35.555 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6562. 2017-07-27 10:48:35.559 |-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
  6563. 2017-07-27 10:48:35.559 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6564. 2017-07-27 10:48:35.586 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  6565. 2017-07-27 10:48:35.587 |-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
  6566. 2017-07-27 10:48:35.587 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6567. 2017-07-27 10:48:35.614 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6568. 2017-07-27 10:48:35.654 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6569. 2017-07-27 10:48:35.654 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6570. 2017-07-27 10:48:35.656 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6571. 2017-07-27 10:48:35.656 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6572. 2017-07-27 10:48:35.656 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6573. 2017-07-27 10:48:35.657 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6574. 2017-07-27 10:48:35.684 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6575. 2017-07-27 10:48:35.684 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6576. 2017-07-27 10:48:35.684 |-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
  6577. 2017-07-27 10:48:35.685 |-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
  6578. 2017-07-27 10:48:35.685 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6579. 2017-07-27 10:48:35.685 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6580. 2017-07-27 10:48:35.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6581. 2017-07-27 10:48:35.714 |-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=?)
  6582. 2017-07-27 10:48:35.714 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6583. 2017-07-27 10:48:35.715 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6584. 2017-07-27 10:48:35.715 |-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=?)
  6585. 2017-07-27 10:48:35.716 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6586. 2017-07-27 10:48:35.738 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6587. 2017-07-27 10:48:35.742 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6588. 2017-07-27 10:48:35.742 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6589. 2017-07-27 10:48:35.744 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6590. 2017-07-27 10:48:35.745 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6591. 2017-07-27 10:48:35.746 |-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
  6592. 2017-07-27 10:48:35.746 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6593. 2017-07-27 10:48:35.747 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6594. 2017-07-27 10:48:35.748 |-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
  6595. 2017-07-27 10:48:35.749 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6596. 2017-07-27 10:48:35.774 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6597. 2017-07-27 10:48:35.778 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6598. 2017-07-27 10:48:35.792 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6599. 2017-07-27 10:48:35.794 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6600. 2017-07-27 10:48:35.795 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6601. 2017-07-27 10:48:35.823 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6602. 2017-07-27 10:48:35.824 |-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
  6603. 2017-07-27 10:48:35.824 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6604. 2017-07-27 10:48:35.853 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6605. 2017-07-27 10:48:35.854 |-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=?)
  6606. 2017-07-27 10:48:35.855 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6607. 2017-07-27 10:48:35.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6608. 2017-07-27 10:48:35.885 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6609. 2017-07-27 10:48:35.886 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6610. 2017-07-27 10:48:35.892 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6611. 2017-07-27 10:48:35.893 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6612. 2017-07-27 10:48:35.982 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6613. 2017-07-27 10:48:36.024 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6614. 2017-07-27 10:48:36.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6615. 2017-07-27 10:48:36.026 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6616. 2017-07-27 10:48:36.054 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6617. 2017-07-27 10:48:36.055 |-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
  6618. 2017-07-27 10:48:36.055 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6619. 2017-07-27 10:48:36.084 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6620. 2017-07-27 10:48:36.085 |-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=?)
  6621. 2017-07-27 10:48:36.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6622. 2017-07-27 10:48:36.112 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6623. 2017-07-27 10:48:36.116 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6624. 2017-07-27 10:48:36.117 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6625. 2017-07-27 10:48:36.121 |-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=?
  6626. 2017-07-27 10:48:36.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6627. 2017-07-27 10:48:36.148 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  6628. 2017-07-27 10:48:36.175 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6629. 2017-07-27 10:48:36.177 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6630. 2017-07-27 10:48:36.177 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6631. 2017-07-27 10:48:36.205 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6632. 2017-07-27 10:48:36.206 |-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
  6633. 2017-07-27 10:48:36.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6634. 2017-07-27 10:48:36.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6635. 2017-07-27 10:48:36.236 |-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=?)
  6636. 2017-07-27 10:48:36.237 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6637. 2017-07-27 10:48:36.263 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6638. 2017-07-27 10:48:36.266 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6639. 2017-07-27 10:48:36.267 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6640. 2017-07-27 10:48:36.268 |-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
  6641. 2017-07-27 10:48:36.269 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6642. 2017-07-27 10:48:36.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6643. 2017-07-27 10:48:36.304 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6644. 2017-07-27 10:48:36.306 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6645. 2017-07-27 10:48:36.306 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6646. 2017-07-27 10:48:36.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6647. 2017-07-27 10:48:36.334 |-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
  6648. 2017-07-27 10:48:36.334 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6649. 2017-07-27 10:48:36.364 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6650. 2017-07-27 10:48:36.365 |-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=?)
  6651. 2017-07-27 10:48:36.365 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6652. 2017-07-27 10:48:36.392 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6653. 2017-07-27 10:48:36.394 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6654. 2017-07-27 10:48:36.395 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6655. 2017-07-27 10:48:36.397 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6656. 2017-07-27 10:48:36.398 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6657. 2017-07-27 10:48:36.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6658. 2017-07-27 10:48:36.504 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6659. 2017-07-27 10:48:36.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6660. 2017-07-27 10:48:36.507 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6661. 2017-07-27 10:48:36.534 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6662. 2017-07-27 10:48:36.535 |-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
  6663. 2017-07-27 10:48:36.535 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6664. 2017-07-27 10:48:36.564 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6665. 2017-07-27 10:48:36.566 |-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=?)
  6666. 2017-07-27 10:48:36.566 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6667. 2017-07-27 10:48:36.592 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6668. 2017-07-27 10:48:36.596 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6669. 2017-07-27 10:48:36.598 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6670. 2017-07-27 10:48:36.602 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6671. 2017-07-27 10:48:36.603 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6672. 2017-07-27 10:48:36.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6673. 2017-07-27 10:48:36.683 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6674. 2017-07-27 10:48:36.684 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6675. 2017-07-27 10:48:36.830 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1207
  6676. 2017-07-27 10:48:43.220 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6677. 2017-07-27 10:48:43.222 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6678. 2017-07-27 10:48:43.222 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6679. 2017-07-27 10:48:43.250 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6680. 2017-07-27 10:48:43.251 |-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
  6681. 2017-07-27 10:48:43.251 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6682. 2017-07-27 10:48:43.280 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6683. 2017-07-27 10:48:43.281 |-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=?)
  6684. 2017-07-27 10:48:43.281 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6685. 2017-07-27 10:48:43.307 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6686. 2017-07-27 10:48:43.310 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6687. 2017-07-27 10:48:43.311 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6688. 2017-07-27 10:48:43.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6689. 2017-07-27 10:48:43.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6690. 2017-07-27 10:48:43.397 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6691. 2017-07-27 10:48:43.399 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6692. 2017-07-27 10:48:43.399 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-13 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6693. 2017-07-27 10:48:43.564 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1278
  6694. 2017-07-27 10:48:48.768 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6695. 2017-07-27 10:48:48.770 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6696. 2017-07-27 10:48:48.770 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6697. 2017-07-27 10:48:48.798 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6698. 2017-07-27 10:48:48.798 |-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
  6699. 2017-07-27 10:48:48.799 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6700. 2017-07-27 10:48:48.828 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6701. 2017-07-27 10:48:48.829 |-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=?)
  6702. 2017-07-27 10:48:48.829 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6703. 2017-07-27 10:48:48.856 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6704. 2017-07-27 10:48:48.860 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6705. 2017-07-27 10:48:48.861 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6706. 2017-07-27 10:48:48.868 |-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
  6707. 2017-07-27 10:48:48.868 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6708. 2017-07-27 10:48:48.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6709. 2017-07-27 10:48:48.901 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Preparing: SELECT COUNT(t.appeal_dept) AS appeal_num ,t.appeal_dept AS dept_id,t.appeal_result FROM check_appeal t INNER JOIN check_task ct ON t.task_id = ct.id WHERE 1=1 AND t.appeal_time >= ? AND t.appeal_time <= ? GROUP BY t.appeal_dept , t.appeal_result ORDER BY t.appeal_dept
  6710. 2017-07-27 10:48:48.902 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6711. 2017-07-27 10:48:48.932 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| <== Total: 36
  6712. 2017-07-27 10:48:52.134 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6713. 2017-07-27 10:48:52.137 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6714. 2017-07-27 10:48:52.137 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6715. 2017-07-27 10:48:52.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6716. 2017-07-27 10:48:52.166 |-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
  6717. 2017-07-27 10:48:52.167 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6718. 2017-07-27 10:48:52.196 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6719. 2017-07-27 10:48:52.197 |-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=?)
  6720. 2017-07-27 10:48:52.197 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6721. 2017-07-27 10:48:52.223 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6722. 2017-07-27 10:48:52.225 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6723. 2017-07-27 10:48:52.226 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6724. 2017-07-27 10:48:52.229 |-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
  6725. 2017-07-27 10:48:52.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6726. 2017-07-27 10:48:52.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6727. 2017-07-27 10:48:52.259 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Preparing: SELECT COUNT(t.appeal_dept) AS appeal_num ,t.appeal_dept AS dept_id,t.appeal_result FROM check_appeal t INNER JOIN check_task ct ON t.task_id = ct.id WHERE 1=1 AND t.appeal_time >= ? AND t.appeal_time <= ? GROUP BY t.appeal_dept , t.appeal_result ORDER BY t.appeal_dept
  6728. 2017-07-27 10:48:52.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Parameters: 2017-04-25 23:00:00.0(Timestamp), 2017-05-25 23:00:00.0(Timestamp)
  6729. 2017-07-27 10:48:52.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| <== Total: 0
  6730. 2017-07-27 10:49:04.613 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6731. 2017-07-27 10:49:04.615 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6732. 2017-07-27 10:49:04.616 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6733. 2017-07-27 10:49:04.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6734. 2017-07-27 10:49:04.645 |-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
  6735. 2017-07-27 10:49:04.645 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6736. 2017-07-27 10:49:04.674 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6737. 2017-07-27 10:49:04.675 |-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=?)
  6738. 2017-07-27 10:49:04.676 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6739. 2017-07-27 10:49:04.702 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6740. 2017-07-27 10:49:04.705 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6741. 2017-07-27 10:49:04.706 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6742. 2017-07-27 10:49:04.708 |-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
  6743. 2017-07-27 10:49:04.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6744. 2017-07-27 10:49:04.736 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6745. 2017-07-27 10:49:04.751 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6746. 2017-07-27 10:49:04.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6747. 2017-07-27 10:49:04.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6748. 2017-07-27 10:49:04.781 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6749. 2017-07-27 10:49:04.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
  6750. 2017-07-27 10:49:04.782 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6751. 2017-07-27 10:49:04.811 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6752. 2017-07-27 10:49:04.812 |-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=?)
  6753. 2017-07-27 10:49:04.812 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6754. 2017-07-27 10:49:04.838 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6755. 2017-07-27 10:49:04.841 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6756. 2017-07-27 10:49:04.842 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6757. 2017-07-27 10:49:04.846 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6758. 2017-07-27 10:49:04.846 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6759. 2017-07-27 10:49:04.882 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6760. 2017-07-27 10:49:04.884 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6761. 2017-07-27 10:49:04.884 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6762. 2017-07-27 10:49:04.920 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6763. 2017-07-27 10:49:04.921 |-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
  6764. 2017-07-27 10:49:04.921 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6765. 2017-07-27 10:49:04.932 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6766. 2017-07-27 10:49:04.949 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6767. 2017-07-27 10:49:04.950 |-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=?)
  6768. 2017-07-27 10:49:04.950 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6769. 2017-07-27 10:49:04.976 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6770. 2017-07-27 10:49:04.979 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6771. 2017-07-27 10:49:04.980 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6772. 2017-07-27 10:49:04.981 |-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
  6773. 2017-07-27 10:49:04.982 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6774. 2017-07-27 10:49:05.002 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6775. 2017-07-27 10:49:05.004 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6776. 2017-07-27 10:49:05.005 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6777. 2017-07-27 10:49:05.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6778. 2017-07-27 10:49:05.020 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6779. 2017-07-27 10:49:05.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6780. 2017-07-27 10:49:05.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6781. 2017-07-27 10:49:05.033 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6782. 2017-07-27 10:49:05.033 |-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
  6783. 2017-07-27 10:49:05.034 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6784. 2017-07-27 10:49:05.049 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6785. 2017-07-27 10:49:05.050 |-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
  6786. 2017-07-27 10:49:05.050 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6787. 2017-07-27 10:49:05.062 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6788. 2017-07-27 10:49:05.063 |-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=?)
  6789. 2017-07-27 10:49:05.064 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6790. 2017-07-27 10:49:05.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6791. 2017-07-27 10:49:05.079 |-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=?)
  6792. 2017-07-27 10:49:05.079 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6793. 2017-07-27 10:49:05.090 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6794. 2017-07-27 10:49:05.092 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6795. 2017-07-27 10:49:05.093 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6796. 2017-07-27 10:49:05.096 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6797. 2017-07-27 10:49:05.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6798. 2017-07-27 10:49:05.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6799. 2017-07-27 10:49:05.105 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6800. 2017-07-27 10:49:05.106 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6801. 2017-07-27 10:49:05.109 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6802. 2017-07-27 10:49:05.109 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6803. 2017-07-27 10:49:05.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6804. 2017-07-27 10:49:05.173 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6805. 2017-07-27 10:49:05.173 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6806. 2017-07-27 10:49:05.220 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6807. 2017-07-27 10:49:05.256 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6808. 2017-07-27 10:49:05.258 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6809. 2017-07-27 10:49:05.258 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6810. 2017-07-27 10:49:05.279 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1268
  6811. 2017-07-27 10:49:05.286 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6812. 2017-07-27 10:49:05.287 |-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
  6813. 2017-07-27 10:49:05.287 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6814. 2017-07-27 10:49:05.314 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6815. 2017-07-27 10:49:05.315 |-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=?)
  6816. 2017-07-27 10:49:05.315 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6817. 2017-07-27 10:49:05.340 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6818. 2017-07-27 10:49:05.342 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6819. 2017-07-27 10:49:05.343 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6820. 2017-07-27 10:49:05.346 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6821. 2017-07-27 10:49:05.347 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6822. 2017-07-27 10:49:05.421 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6823. 2017-07-27 10:49:05.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  6824. 2017-07-27 10:49:05.423 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6825. 2017-07-27 10:49:05.517 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1268
  6826. 2017-07-27 10:49:05.533 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6827. 2017-07-27 10:49:05.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6828. 2017-07-27 10:49:05.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6829. 2017-07-27 10:49:05.563 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6830. 2017-07-27 10:49:05.564 |-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
  6831. 2017-07-27 10:49:05.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6832. 2017-07-27 10:49:05.591 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6833. 2017-07-27 10:49:05.592 |-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=?)
  6834. 2017-07-27 10:49:05.593 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6835. 2017-07-27 10:49:05.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6836. 2017-07-27 10:49:05.620 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6837. 2017-07-27 10:49:05.621 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6838. 2017-07-27 10:49:05.623 |-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
  6839. 2017-07-27 10:49:05.624 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6840. 2017-07-27 10:49:05.672 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6841. 2017-07-27 10:49:06.463 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6842. 2017-07-27 10:49:06.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6843. 2017-07-27 10:49:06.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6844. 2017-07-27 10:49:06.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6845. 2017-07-27 10:49:06.494 |-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
  6846. 2017-07-27 10:49:06.494 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6847. 2017-07-27 10:49:06.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6848. 2017-07-27 10:49:06.522 |-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=?)
  6849. 2017-07-27 10:49:06.523 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6850. 2017-07-27 10:49:06.547 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6851. 2017-07-27 10:49:06.549 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6852. 2017-07-27 10:49:06.551 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6853. 2017-07-27 10:49:06.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6854. 2017-07-27 10:49:06.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6855. 2017-07-27 10:49:06.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6856. 2017-07-27 10:49:07.173 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6857. 2017-07-27 10:49:07.175 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6858. 2017-07-27 10:49:07.175 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6859. 2017-07-27 10:49:07.205 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6860. 2017-07-27 10:49:07.206 |-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
  6861. 2017-07-27 10:49:07.206 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6862. 2017-07-27 10:49:07.233 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6863. 2017-07-27 10:49:07.234 |-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=?)
  6864. 2017-07-27 10:49:07.234 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6865. 2017-07-27 10:49:07.243 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6866. 2017-07-27 10:49:07.245 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6867. 2017-07-27 10:49:07.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6868. 2017-07-27 10:49:07.259 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6869. 2017-07-27 10:49:07.261 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6870. 2017-07-27 10:49:07.262 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6871. 2017-07-27 10:49:07.264 |-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
  6872. 2017-07-27 10:49:07.264 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  6873. 2017-07-27 10:49:07.274 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6874. 2017-07-27 10:49:07.275 |-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
  6875. 2017-07-27 10:49:07.275 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6876. 2017-07-27 10:49:07.291 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  6877. 2017-07-27 10:49:07.298 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6878. 2017-07-27 10:49: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 from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6879. 2017-07-27 10:49:07.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6880. 2017-07-27 10:49:07.302 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6881. 2017-07-27 10:49:07.303 |-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=?)
  6882. 2017-07-27 10:49:07.303 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6883. 2017-07-27 10:49:07.326 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6884. 2017-07-27 10:49:07.327 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6885. 2017-07-27 10:49:07.327 |-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
  6886. 2017-07-27 10:49:07.327 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6887. 2017-07-27 10:49:07.329 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6888. 2017-07-27 10:49:07.330 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6889. 2017-07-27 10:49:07.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6890. 2017-07-27 10:49:07.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6891. 2017-07-27 10:49:07.358 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6892. 2017-07-27 10:49:07.359 |-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=?)
  6893. 2017-07-27 10:49:07.359 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6894. 2017-07-27 10:49:07.386 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6895. 2017-07-27 10:49:07.389 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6896. 2017-07-27 10:49:07.391 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6897. 2017-07-27 10:49:07.395 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6898. 2017-07-27 10:49:07.396 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6899. 2017-07-27 10:49:07.422 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6900. 2017-07-27 10:49:07.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class_unregular t LEFT JOIN check_task ct ON t.id = ct.user_class_unregular_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date
  6901. 2017-07-27 10:49:07.425 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6902. 2017-07-27 10:49:07.485 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6903. 2017-07-27 10:49:07.537 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6904. 2017-07-27 10:49:07.539 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6905. 2017-07-27 10:49:07.539 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6906. 2017-07-27 10:49:07.568 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6907. 2017-07-27 10:49:07.569 |-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
  6908. 2017-07-27 10:49:07.569 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6909. 2017-07-27 10:49:07.597 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6910. 2017-07-27 10:49:07.598 |-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=?)
  6911. 2017-07-27 10:49:07.598 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6912. 2017-07-27 10:49:07.623 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6913. 2017-07-27 10:49:07.626 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6914. 2017-07-27 10:49:07.628 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6915. 2017-07-27 10:49:07.653 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6916. 2017-07-27 10:49:07.654 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6917. 2017-07-27 10:49:07.741 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  6918. 2017-07-27 10:49:07.743 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class t LEFT JOIN check_task ct ON t.id = ct.user_class_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date , t.user_id
  6919. 2017-07-27 10:49:07.744 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6920. 2017-07-27 10:49:15.151 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| <== Total: 5206
  6921. 2017-07-27 10:49:15.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id
  6922. 2017-07-27 10:49:15.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6923. 2017-07-27 10:49:15.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| <== Total: 449
  6924. 2017-07-27 10:49:18.282 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6925. 2017-07-27 10:49:18.284 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6926. 2017-07-27 10:49:18.285 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6927. 2017-07-27 10:49:18.316 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6928. 2017-07-27 10:49:18.316 |-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
  6929. 2017-07-27 10:49:18.317 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6930. 2017-07-27 10:49:18.344 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6931. 2017-07-27 10:49:18.345 |-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=?)
  6932. 2017-07-27 10:49:18.345 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6933. 2017-07-27 10:49:18.370 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6934. 2017-07-27 10:49:18.373 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6935. 2017-07-27 10:49:18.375 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6936. 2017-07-27 10:49:18.379 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  6937. 2017-07-27 10:49:18.380 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6938. 2017-07-27 10:49:18.408 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  6939. 2017-07-27 10:49:18.411 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  6940. 2017-07-27 10:49:18.411 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6941. 2017-07-27 10:49:18.445 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  6942. 2017-07-27 10:49:18.448 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  6943. 2017-07-27 10:49:18.449 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6944. 2017-07-27 10:49:18.480 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 219
  6945. 2017-07-27 10:49:19.916 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6946. 2017-07-27 10:49:19.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6947. 2017-07-27 10:49:19.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6948. 2017-07-27 10:49:19.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6949. 2017-07-27 10:49:19.948 |-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
  6950. 2017-07-27 10:49:19.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6951. 2017-07-27 10:49:19.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6952. 2017-07-27 10:49:19.977 |-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=?)
  6953. 2017-07-27 10:49:19.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6954. 2017-07-27 10:49:20.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6955. 2017-07-27 10:49:20.004 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6956. 2017-07-27 10:49:20.005 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6957. 2017-07-27 10:49:20.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  6958. 2017-07-27 10:49:20.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6959. 2017-07-27 10:49:20.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6960. 2017-07-27 10:49:20.132 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6961. 2017-07-27 10:49:20.132 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6962. 2017-07-27 10:49:20.134 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6963. 2017-07-27 10:49:20.134 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6964. 2017-07-27 10:49:20.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6965. 2017-07-27 10:49:20.135 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6966. 2017-07-27 10:49:20.162 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6967. 2017-07-27 10:49:20.162 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6968. 2017-07-27 10:49:20.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
  6969. 2017-07-27 10:49:20.164 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6970. 2017-07-27 10:49:20.190 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6971. 2017-07-27 10:49:20.191 |-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=?)
  6972. 2017-07-27 10:49:20.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6973. 2017-07-27 10:49:20.216 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6974. 2017-07-27 10:49:20.218 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6975. 2017-07-27 10:49:20.219 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6976. 2017-07-27 10:49:20.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Preparing: SELECT COUNT(1) AS all_checkman, COUNT(1) AS all_task_num, COUNT(cs.check_item_score) AS checked_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute, COUNT(DISTINCT(t.checked_person)) AS all_checked_num, SUM(cs.check_item_score) AS all_checked_score FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ?
  6977. 2017-07-27 10:49:20.221 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6978. 2017-07-27 10:49:21.186 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| <== Total: 1
  6979. 2017-07-27 10:49:22.166 |-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
  6980. 2017-07-27 10:49:22.166 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6981. 2017-07-27 10:49:22.194 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  6982. 2017-07-27 10:49:22.194 |-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=?)
  6983. 2017-07-27 10:49:22.195 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  6984. 2017-07-27 10:49:22.219 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6985. 2017-07-27 10:49:22.222 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  6986. 2017-07-27 10:49:22.222 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6987. 2017-07-27 10:49:22.286 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL
  6988. 2017-07-27 10:49:22.287 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  6989. 2017-07-27 10:49:22.366 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6990. 2017-07-27 10:49:22.368 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  6991. 2017-07-27 10:49:22.369 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  6992. 2017-07-27 10:49:22.452 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6993. 2017-07-27 10:49:22.619 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  6994. 2017-07-27 10:49:22.620 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  6995. 2017-07-27 10:49:22.621 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  6996. 2017-07-27 10:49:22.652 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6997. 2017-07-27 10:49:22.653 |-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
  6998. 2017-07-27 10:49:22.653 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  6999. 2017-07-27 10:49:22.681 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7000. 2017-07-27 10:49:22.682 |-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=?)
  7001. 2017-07-27 10:49:22.682 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7002. 2017-07-27 10:49:22.707 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7003. 2017-07-27 10:49:22.709 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7004. 2017-07-27 10:49:22.710 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7005. 2017-07-27 10:49:22.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7006. 2017-07-27 10:49:22.713 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7007. 2017-07-27 10:49:22.743 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7008. 2017-07-27 10:49:22.760 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7009. 2017-07-27 10:49:22.761 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7010. 2017-07-27 10:49:22.762 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7011. 2017-07-27 10:49:22.771 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7012. 2017-07-27 10:49:22.771 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7013. 2017-07-27 10:49:22.773 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7014. 2017-07-27 10:49:22.774 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7015. 2017-07-27 10:49:22.792 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7016. 2017-07-27 10:49:22.793 |-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
  7017. 2017-07-27 10:49:22.793 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7018. 2017-07-27 10:49:22.803 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7019. 2017-07-27 10:49:22.820 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7020. 2017-07-27 10:49:22.821 |-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
  7021. 2017-07-27 10:49:22.821 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7022. 2017-07-27 10:49:22.848 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7023. 2017-07-27 10:49:22.848 |-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=?)
  7024. 2017-07-27 10:49:22.849 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7025. 2017-07-27 10:49:22.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7026. 2017-07-27 10:49:22.873 |-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=?)
  7027. 2017-07-27 10:49:22.874 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7028. 2017-07-27 10:49:22.875 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7029. 2017-07-27 10:49:22.876 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7030. 2017-07-27 10:49:22.897 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7031. 2017-07-27 10:49:22.900 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7032. 2017-07-27 10:49:22.901 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7033. 2017-07-27 10:49:22.904 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  7034. 2017-07-27 10:49:22.904 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7035. 2017-07-27 10:49:22.930 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  7036. 2017-07-27 10:49:22.950 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  7037. 2017-07-27 10:49:22.950 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7038. 2017-07-27 10:49:23.032 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7039. 2017-07-27 10:49:23.082 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7040. 2017-07-27 10:49:23.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7041. 2017-07-27 10:49:23.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7042. 2017-07-27 10:49:23.112 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7043. 2017-07-27 10:49:23.113 |-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
  7044. 2017-07-27 10:49:23.113 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7045. 2017-07-27 10:49:23.143 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7046. 2017-07-27 10:49:23.144 |-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=?)
  7047. 2017-07-27 10:49:23.144 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7048. 2017-07-27 10:49:23.171 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7049. 2017-07-27 10:49:23.173 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7050. 2017-07-27 10:49:23.174 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7051. 2017-07-27 10:49:23.175 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  7052. 2017-07-27 10:49:23.175 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  7053. 2017-07-27 10:49:23.204 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  7054. 2017-07-27 10:49:23.272 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7055. 2017-07-27 10:49:23.274 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7056. 2017-07-27 10:49:23.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7057. 2017-07-27 10:49:23.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7058. 2017-07-27 10:49:23.276 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7059. 2017-07-27 10:49:23.276 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7060. 2017-07-27 10:49:23.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7061. 2017-07-27 10:49:23.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7062. 2017-07-27 10:49:23.303 |-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
  7063. 2017-07-27 10:49:23.303 |-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
  7064. 2017-07-27 10:49:23.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7065. 2017-07-27 10:49:23.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7066. 2017-07-27 10:49:23.331 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7067. 2017-07-27 10:49:23.332 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7068. 2017-07-27 10:49:23.332 |-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=?)
  7069. 2017-07-27 10:49:23.333 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7070. 2017-07-27 10:49:23.333 |-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=?)
  7071. 2017-07-27 10:49:23.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7072. 2017-07-27 10:49:23.357 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7073. 2017-07-27 10:49:23.360 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7074. 2017-07-27 10:49:23.360 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7075. 2017-07-27 10:49:23.360 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7076. 2017-07-27 10:49:23.362 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7077. 2017-07-27 10:49:23.362 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Preparing: SELECT COUNT(1) AS all_checkman, COUNT(1) AS all_task_num, COUNT(cs.check_item_score) AS checked_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute, COUNT(DISTINCT(t.checked_person)) AS all_checked_num, SUM(cs.check_item_score) AS all_checked_score FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ?
  7078. 2017-07-27 10:49:23.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7079. 2017-07-27 10:49:23.363 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7080. 2017-07-27 10:49:23.434 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL
  7081. 2017-07-27 10:49:23.435 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7082. 2017-07-27 10:49:23.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7083. 2017-07-27 10:49:23.524 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  7084. 2017-07-27 10:49:23.525 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  7085. 2017-07-27 10:49:23.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7086. 2017-07-27 10:49:23.773 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7087. 2017-07-27 10:49:23.774 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7088. 2017-07-27 10:49:23.803 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7089. 2017-07-27 10:49:23.804 |-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
  7090. 2017-07-27 10:49:23.804 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7091. 2017-07-27 10:49:23.831 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7092. 2017-07-27 10:49:23.832 |-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=?)
  7093. 2017-07-27 10:49:23.833 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7094. 2017-07-27 10:49:23.857 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7095. 2017-07-27 10:49:23.859 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7096. 2017-07-27 10:49:23.860 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7097. 2017-07-27 10:49:23.862 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  7098. 2017-07-27 10:49:23.863 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  7099. 2017-07-27 10:49:23.890 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  7100. 2017-07-27 10:49:24.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| <== Total: 1
  7101. 2017-07-27 10:49:25.391 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7102. 2017-07-27 10:49:25.393 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7103. 2017-07-27 10:49:25.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7104. 2017-07-27 10:49:25.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7105. 2017-07-27 10:49:25.458 |-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
  7106. 2017-07-27 10:49:25.459 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7107. 2017-07-27 10:49:25.741 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7108. 2017-07-27 10:49:25.742 |-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=?)
  7109. 2017-07-27 10:49:25.743 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7110. 2017-07-27 10:49:25.769 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7111. 2017-07-27 10:49:25.772 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7112. 2017-07-27 10:49:25.774 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7113. 2017-07-27 10:49:25.778 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7114. 2017-07-27 10:49:25.779 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7115. 2017-07-27 10:49:26.073 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7116. 2017-07-27 10:49:26.090 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7117. 2017-07-27 10:49:26.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7118. 2017-07-27 10:49:26.092 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7119. 2017-07-27 10:49:26.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7120. 2017-07-27 10:49:26.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7121. 2017-07-27 10:49:26.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7122. 2017-07-27 10:49:26.100 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7123. 2017-07-27 10:49:26.102 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7124. 2017-07-27 10:49:26.102 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7125. 2017-07-27 10:49:26.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7126. 2017-07-27 10:49:26.122 |-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
  7127. 2017-07-27 10:49:26.122 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7128. 2017-07-27 10:49:26.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7129. 2017-07-27 10:49:26.123 |-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
  7130. 2017-07-27 10:49:26.124 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7131. 2017-07-27 10:49:26.130 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7132. 2017-07-27 10:49:26.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7133. 2017-07-27 10:49:26.166 |-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
  7134. 2017-07-27 10:49:26.166 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7135. 2017-07-27 10:49:26.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7136. 2017-07-27 10:49:26.172 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| <== Total: 11547
  7137. 2017-07-27 10:49:26.172 |-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=?)
  7138. 2017-07-27 10:49:26.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7139. 2017-07-27 10:49:26.173 |-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=?)
  7140. 2017-07-27 10:49:26.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7141. 2017-07-27 10:49:26.196 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7142. 2017-07-27 10:49:26.196 |-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=?)
  7143. 2017-07-27 10:49:26.197 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7144. 2017-07-27 10:49:26.198 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7145. 2017-07-27 10:49:26.201 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7146. 2017-07-27 10:49:26.203 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7147. 2017-07-27 10:49:26.206 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  7148. 2017-07-27 10:49:26.207 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  7149. 2017-07-27 10:49:26.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7150. 2017-07-27 10:49:26.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id
  7151. 2017-07-27 10:49:26.211 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7152. 2017-07-27 10:49:26.213 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7153. 2017-07-27 10:49:26.214 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7154. 2017-07-27 10:49:26.223 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7155. 2017-07-27 10:49:26.224 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  7156. 2017-07-27 10:49:26.224 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7157. 2017-07-27 10:49:26.226 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7158. 2017-07-27 10:49:26.227 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7159. 2017-07-27 10:49:26.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  7160. 2017-07-27 10:49:26.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  7161. 2017-07-27 10:49:26.317 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  7162. 2017-07-27 10:49:26.318 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7163. 2017-07-27 10:49:26.396 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| <== Total: 500
  7164. 2017-07-27 10:49:26.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7165. 2017-07-27 10:50:07.290 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7166. 2017-07-27 10:50:07.290 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7167. 2017-07-27 10:50:07.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7168. 2017-07-27 10:50:07.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7169. 2017-07-27 10:50:07.295 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7170. 2017-07-27 10:50:07.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7171. 2017-07-27 10:50:07.374 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7172. 2017-07-27 10:50:07.374 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7173. 2017-07-27 10:50:07.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
  7174. 2017-07-27 10:50:07.375 |-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
  7175. 2017-07-27 10:50:07.376 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7176. 2017-07-27 10:50:07.376 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7177. 2017-07-27 10:50:07.407 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7178. 2017-07-27 10:50:07.407 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7179. 2017-07-27 10:50:07.408 |-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=?)
  7180. 2017-07-27 10:50:07.408 |-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=?)
  7181. 2017-07-27 10:50:07.408 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7182. 2017-07-27 10:50:07.409 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7183. 2017-07-27 10:50:07.435 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7184. 2017-07-27 10:50:07.437 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7185. 2017-07-27 10:50:07.440 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7186. 2017-07-27 10:50:07.440 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7187. 2017-07-27 10:50:07.441 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7188. 2017-07-27 10:50:07.442 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7189. 2017-07-27 10:50:07.446 |-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
  7190. 2017-07-27 10:50:07.447 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  7191. 2017-07-27 10:50:07.476 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  7192. 2017-07-27 10:50:07.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
  7193. 2017-07-27 10:50:07.478 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7194. 2017-07-27 10:50:07.508 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7195. 2017-07-27 10:50:07.579 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7196. 2017-07-27 10:50:07.579 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7197. 2017-07-27 10:50:07.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7198. 2017-07-27 10:50:07.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7199. 2017-07-27 10:50:07.582 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7200. 2017-07-27 10:50:07.582 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7201. 2017-07-27 10:50:07.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7202. 2017-07-27 10:50:07.609 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7203. 2017-07-27 10:50:07.611 |-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
  7204. 2017-07-27 10:50:07.611 |-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
  7205. 2017-07-27 10:50:07.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7206. 2017-07-27 10:50:07.611 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7207. 2017-07-27 10:50:07.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7208. 2017-07-27 10:50:07.640 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7209. 2017-07-27 10:50:07.641 |-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=?)
  7210. 2017-07-27 10:50:07.642 |-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=?)
  7211. 2017-07-27 10:50:07.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7212. 2017-07-27 10:50:07.642 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7213. 2017-07-27 10:50:07.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7214. 2017-07-27 10:50:07.681 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7215. 2017-07-27 10:50:07.686 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7216. 2017-07-27 10:50:07.686 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7217. 2017-07-27 10:50:07.687 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7218. 2017-07-27 10:50:07.687 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7219. 2017-07-27 10:50:07.689 |-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
  7220. 2017-07-27 10:50:07.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7221. 2017-07-27 10:50:07.689 |-DEBUG [http-nio-8089-exec-7] 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
  7222. 2017-07-27 10:50:07.691 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7223. 2017-07-27 10:50:07.718 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7224. 2017-07-27 10:50:07.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  7225. 2017-07-27 10:50:07.734 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7226. 2017-07-27 10:50:07.737 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7227. 2017-07-27 10:50:07.737 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7228. 2017-07-27 10:50:07.765 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7229. 2017-07-27 10:50:07.766 |-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
  7230. 2017-07-27 10:50:07.766 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7231. 2017-07-27 10:50:07.795 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7232. 2017-07-27 10:50:07.796 |-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=?)
  7233. 2017-07-27 10:50:07.797 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7234. 2017-07-27 10:50:07.823 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7235. 2017-07-27 10:50:07.827 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7236. 2017-07-27 10:50:07.829 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7237. 2017-07-27 10:50:07.835 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7238. 2017-07-27 10:50:07.836 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7239. 2017-07-27 10:50:07.923 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 582
  7240. 2017-07-27 10:50:07.970 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7241. 2017-07-27 10:50:07.972 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7242. 2017-07-27 10:50:07.972 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7243. 2017-07-27 10:50:08.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7244. 2017-07-27 10:50:08.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
  7245. 2017-07-27 10:50:08.001 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7246. 2017-07-27 10:50:08.030 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7247. 2017-07-27 10:50:08.031 |-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=?)
  7248. 2017-07-27 10:50:08.031 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7249. 2017-07-27 10:50:08.058 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7250. 2017-07-27 10:50:08.060 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7251. 2017-07-27 10:50:08.061 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7252. 2017-07-27 10:50:08.064 |-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=?
  7253. 2017-07-27 10:50:08.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7254. 2017-07-27 10:50:08.091 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  7255. 2017-07-27 10:50:08.477 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7256. 2017-07-27 10:50:08.479 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7257. 2017-07-27 10:50:08.480 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7258. 2017-07-27 10:50:08.507 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7259. 2017-07-27 10:50:08.508 |-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
  7260. 2017-07-27 10:50:08.509 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7261. 2017-07-27 10:50:08.538 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7262. 2017-07-27 10:50:08.539 |-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=?)
  7263. 2017-07-27 10:50:08.539 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7264. 2017-07-27 10:50:08.566 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7265. 2017-07-27 10:50:08.568 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7266. 2017-07-27 10:50:08.569 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7267. 2017-07-27 10:50:08.572 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7268. 2017-07-27 10:50:08.572 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7269. 2017-07-27 10:50:08.602 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7270. 2017-07-27 10:50:08.624 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7271. 2017-07-27 10:50:08.624 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7272. 2017-07-27 10:50:08.625 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7273. 2017-07-27 10:50:08.627 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7274. 2017-07-27 10:50:08.627 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7275. 2017-07-27 10:50:08.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7276. 2017-07-27 10:50:08.627 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7277. 2017-07-27 10:50:08.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7278. 2017-07-27 10:50:08.628 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7279. 2017-07-27 10:50:08.662 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7280. 2017-07-27 10:50:08.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7281. 2017-07-27 10:50:08.662 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7282. 2017-07-27 10:50:08.664 |-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
  7283. 2017-07-27 10:50:08.664 |-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
  7284. 2017-07-27 10:50:08.664 |-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
  7285. 2017-07-27 10:50:08.664 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7286. 2017-07-27 10:50:08.665 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7287. 2017-07-27 10:50:08.665 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7288. 2017-07-27 10:50:08.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7289. 2017-07-27 10:50:08.700 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7290. 2017-07-27 10:50:08.700 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7291. 2017-07-27 10:50:08.700 |-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=?)
  7292. 2017-07-27 10:50:08.701 |-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=?)
  7293. 2017-07-27 10:50:08.701 |-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=?)
  7294. 2017-07-27 10:50:08.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7295. 2017-07-27 10:50:08.701 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7296. 2017-07-27 10:50:08.701 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7297. 2017-07-27 10:50:08.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7298. 2017-07-27 10:50:08.728 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7299. 2017-07-27 10:50:08.728 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7300. 2017-07-27 10:50:08.733 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7301. 2017-07-27 10:50:08.733 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7302. 2017-07-27 10:50:08.733 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7303. 2017-07-27 10:50:08.735 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7304. 2017-07-27 10:50:08.735 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7305. 2017-07-27 10:50:08.735 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7306. 2017-07-27 10:50:08.739 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  7307. 2017-07-27 10:50:08.740 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  7308. 2017-07-27 10:50:08.742 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  7309. 2017-07-27 10:50:08.743 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7310. 2017-07-27 10:50:08.770 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  7311. 2017-07-27 10:50:08.771 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  7312. 2017-07-27 10:50:08.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  7313. 2017-07-27 10:50:08.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7314. 2017-07-27 10:50:08.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7315. 2017-07-27 10:50:09.225 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7316. 2017-07-27 10:50:09.225 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7317. 2017-07-27 10:50:09.227 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7318. 2017-07-27 10:50:09.228 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7319. 2017-07-27 10:50:09.228 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7320. 2017-07-27 10:50:09.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7321. 2017-07-27 10:50:09.230 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7322. 2017-07-27 10:50:09.230 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7323. 2017-07-27 10:50:09.232 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7324. 2017-07-27 10:50:09.233 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7325. 2017-07-27 10:50:09.233 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7326. 2017-07-27 10:50:09.233 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7327. 2017-07-27 10:50:09.256 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7328. 2017-07-27 10:50:09.256 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7329. 2017-07-27 10:50:09.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7330. 2017-07-27 10:50:09.256 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7331. 2017-07-27 10:50:09.256 |-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
  7332. 2017-07-27 10:50:09.256 |-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
  7333. 2017-07-27 10:50:09.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7334. 2017-07-27 10:50:09.257 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7335. 2017-07-27 10:50:09.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7336. 2017-07-27 10:50:09.257 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7337. 2017-07-27 10:50:09.264 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7338. 2017-07-27 10:50:09.265 |-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
  7339. 2017-07-27 10:50:09.265 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7340. 2017-07-27 10:50:09.284 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7341. 2017-07-27 10:50:09.284 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7342. 2017-07-27 10:50:09.285 |-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
  7343. 2017-07-27 10:50:09.285 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7344. 2017-07-27 10:50:09.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7345. 2017-07-27 10:50:09.286 |-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
  7346. 2017-07-27 10:50:09.286 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7347. 2017-07-27 10:50:09.287 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7348. 2017-07-27 10:50:09.287 |-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=?)
  7349. 2017-07-27 10:50:09.288 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7350. 2017-07-27 10:50:09.293 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7351. 2017-07-27 10:50:09.294 |-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=?)
  7352. 2017-07-27 10:50:09.294 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7353. 2017-07-27 10:50:09.312 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7354. 2017-07-27 10:50:09.312 |-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=?)
  7355. 2017-07-27 10:50:09.313 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7356. 2017-07-27 10:50:09.314 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7357. 2017-07-27 10:50:09.314 |-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=?)
  7358. 2017-07-27 10:50:09.314 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7359. 2017-07-27 10:50:09.315 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7360. 2017-07-27 10:50:09.315 |-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=?)
  7361. 2017-07-27 10:50:09.315 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7362. 2017-07-27 10:50:09.317 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7363. 2017-07-27 10:50:09.317 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7364. 2017-07-27 10:50:09.319 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7365. 2017-07-27 10:50:09.319 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7366. 2017-07-27 10:50:09.320 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7367. 2017-07-27 10:50:09.322 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7368. 2017-07-27 10:50:09.323 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7369. 2017-07-27 10:50:09.324 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7370. 2017-07-27 10:50:09.324 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7371. 2017-07-27 10:50:09.337 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7372. 2017-07-27 10:50:09.340 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7373. 2017-07-27 10:50:09.340 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7374. 2017-07-27 10:50:09.340 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7375. 2017-07-27 10:50:09.341 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7376. 2017-07-27 10:50:09.341 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7377. 2017-07-27 10:50:09.342 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7378. 2017-07-27 10:50:09.343 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  7379. 2017-07-27 10:50:09.343 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  7380. 2017-07-27 10:50:09.343 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7381. 2017-07-27 10:50:09.345 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7382. 2017-07-27 10:50:09.345 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  7383. 2017-07-27 10:50:09.345 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7384. 2017-07-27 10:50:09.345 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  7385. 2017-07-27 10:50:09.346 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7386. 2017-07-27 10:50:09.346 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7387. 2017-07-27 10:50:09.347 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1
  7388. 2017-07-27 10:50:09.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  7389. 2017-07-27 10:50:09.352 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7390. 2017-07-27 10:50:09.353 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  7391. 2017-07-27 10:50:09.354 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7392. 2017-07-27 10:50:09.376 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7393. 2017-07-27 10:50:09.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  7394. 2017-07-27 10:50:09.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7395. 2017-07-27 10:50:09.507 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7396. 2017-07-27 10:50:09.508 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  7397. 2017-07-27 10:50:09.508 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7398. 2017-07-27 10:50:09.510 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  7399. 2017-07-27 10:50:09.520 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  7400. 2017-07-27 10:50:09.521 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7401. 2017-07-27 10:50:09.522 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7402. 2017-07-27 10:50:09.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 220
  7403. 2017-07-27 10:50:09.540 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7404. 2017-07-27 10:50:09.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  7405. 2017-07-27 10:50:09.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7406. 2017-07-27 10:50:09.548 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  7407. 2017-07-27 10:50:09.549 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7408. 2017-07-27 10:50:09.551 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7409. 2017-07-27 10:50:09.551 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/06(String)
  7410. 2017-07-27 10:50:09.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  7411. 2017-07-27 10:50:09.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  7412. 2017-07-27 10:50:10.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7413. 2017-07-27 10:50:10.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7414. 2017-07-27 10:50:10.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7415. 2017-07-27 10:50:10.263 |-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
  7416. 2017-07-27 10:50:10.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7417. 2017-07-27 10:50:10.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7418. 2017-07-27 10:50:10.293 |-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=?)
  7419. 2017-07-27 10:50:10.293 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7420. 2017-07-27 10:50:10.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7421. 2017-07-27 10:50:10.321 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7422. 2017-07-27 10:50:10.322 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7423. 2017-07-27 10:50:10.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7424. 2017-07-27 10:50:10.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  7425. 2017-07-27 10:50:10.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  7426. 2017-07-27 10:50:13.490 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7427. 2017-07-27 10:50:13.492 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7428. 2017-07-27 10:50:13.493 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7429. 2017-07-27 10:50:13.495 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7430. 2017-07-27 10:50:13.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7431. 2017-07-27 10:50:13.498 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7432. 2017-07-27 10:50:13.500 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7433. 2017-07-27 10:50:13.501 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7434. 2017-07-27 10:50:13.503 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7435. 2017-07-27 10:50:13.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7436. 2017-07-27 10:50:13.503 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7437. 2017-07-27 10:50:13.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7438. 2017-07-27 10:50:13.521 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7439. 2017-07-27 10:50:13.522 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7440. 2017-07-27 10:50:13.523 |-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
  7441. 2017-07-27 10:50:13.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7442. 2017-07-27 10:50:13.524 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7443. 2017-07-27 10:50:13.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7444. 2017-07-27 10:50:13.526 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7445. 2017-07-27 10:50:13.527 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7446. 2017-07-27 10:50:13.527 |-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
  7447. 2017-07-27 10:50:13.528 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7448. 2017-07-27 10:50:13.529 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7449. 2017-07-27 10:50:13.529 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7450. 2017-07-27 10:50:13.530 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7451. 2017-07-27 10:50:13.532 |-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
  7452. 2017-07-27 10:50:13.532 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7453. 2017-07-27 10:50:13.532 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7454. 2017-07-27 10:50:13.533 |-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
  7455. 2017-07-27 10:50:13.533 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7456. 2017-07-27 10:50:13.554 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7457. 2017-07-27 10:50:13.555 |-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=?)
  7458. 2017-07-27 10:50:13.555 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7459. 2017-07-27 10:50:13.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7460. 2017-07-27 10:50:13.556 |-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=?)
  7461. 2017-07-27 10:50:13.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7462. 2017-07-27 10:50:13.557 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7463. 2017-07-27 10:50:13.557 |-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
  7464. 2017-07-27 10:50:13.557 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7465. 2017-07-27 10:50:13.557 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7466. 2017-07-27 10:50:13.558 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7467. 2017-07-27 10:50:13.559 |-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
  7468. 2017-07-27 10:50:13.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7469. 2017-07-27 10:50:13.562 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7470. 2017-07-27 10:50:13.562 |-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=?)
  7471. 2017-07-27 10:50:13.562 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7472. 2017-07-27 10:50:13.581 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7473. 2017-07-27 10:50:13.581 |-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=?)
  7474. 2017-07-27 10:50:13.582 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7475. 2017-07-27 10:50:13.582 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7476. 2017-07-27 10:50:13.585 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7477. 2017-07-27 10:50:13.585 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7478. 2017-07-27 10:50:13.586 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7479. 2017-07-27 10:50:13.586 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7480. 2017-07-27 10:50:13.586 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7481. 2017-07-27 10:50:13.586 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7482. 2017-07-27 10:50:13.587 |-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=?)
  7483. 2017-07-27 10:50:13.587 |-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=?)
  7484. 2017-07-27 10:50:13.587 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7485. 2017-07-27 10:50:13.587 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7486. 2017-07-27 10:50:13.588 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7487. 2017-07-27 10:50:13.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7488. 2017-07-27 10:50:13.588 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7489. 2017-07-27 10:50:13.588 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7490. 2017-07-27 10:50:13.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7491. 2017-07-27 10:50:13.591 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7492. 2017-07-27 10:50:13.592 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7493. 2017-07-27 10:50:13.594 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7494. 2017-07-27 10:50:13.595 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7495. 2017-07-27 10:50:13.609 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7496. 2017-07-27 10:50:13.612 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7497. 2017-07-27 10:50:13.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7498. 2017-07-27 10:50:13.613 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7499. 2017-07-27 10:50:13.613 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7500. 2017-07-27 10:50:13.615 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7501. 2017-07-27 10:50:13.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7502. 2017-07-27 10:50:13.616 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  7503. 2017-07-27 10:50:13.616 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7504. 2017-07-27 10:50:13.615 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7505. 2017-07-27 10:50:13.617 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7506. 2017-07-27 10:50:13.617 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7507. 2017-07-27 10:50:13.617 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7508. 2017-07-27 10:50:13.618 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7509. 2017-07-27 10:50:13.619 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  7510. 2017-07-27 10:50:13.619 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth
  7511. 2017-07-27 10:50:13.620 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 39(Long)
  7512. 2017-07-27 10:50:13.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7513. 2017-07-27 10:50:13.637 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7514. 2017-07-27 10:50:13.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7515. 2017-07-27 10:50:13.638 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  7516. 2017-07-27 10:50:13.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  7517. 2017-07-27 10:50:13.644 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  7518. 2017-07-27 10:50:13.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7519. 2017-07-27 10:50:13.645 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  7520. 2017-07-27 10:50:13.673 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  7521. 2017-07-27 10:50:13.675 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7522. 2017-07-27 10:50:13.675 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
  7523. 2017-07-27 10:50:13.704 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 3
  7524. 2017-07-27 10:50:13.739 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  7525. 2017-07-27 10:50:13.740 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  7526. 2017-07-27 10:50:13.762 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  7527. 2017-07-27 10:50:13.764 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7528. 2017-07-27 10:50:13.764 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7529. 2017-07-27 10:50:13.766 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  7530. 2017-07-27 10:50:13.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7531. 2017-07-27 10:50:13.768 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7532. 2017-07-27 10:50:13.794 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7533. 2017-07-27 10:50:13.801 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7534. 2017-07-27 10:50:13.805 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7535. 2017-07-27 10:50:13.806 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
  7536. 2017-07-27 10:50:13.906 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 10
  7537. 2017-07-27 10:50:13.908 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7538. 2017-07-27 10:50:13.909 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7539. 2017-07-27 10:50:13.941 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7540. 2017-07-27 10:50:14.009 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7541. 2017-07-27 10:50:14.009 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7542. 2017-07-27 10:50:14.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7543. 2017-07-27 10:50:14.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7544. 2017-07-27 10:50:14.014 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7545. 2017-07-27 10:50:14.014 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7546. 2017-07-27 10:50:14.017 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7547. 2017-07-27 10:50:14.019 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7548. 2017-07-27 10:50:14.021 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7549. 2017-07-27 10:50:14.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7550. 2017-07-27 10:50:14.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7551. 2017-07-27 10:50:14.021 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7552. 2017-07-27 10:50:14.023 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7553. 2017-07-27 10:50:14.024 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7554. 2017-07-27 10:50:14.024 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7555. 2017-07-27 10:50:14.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7556. 2017-07-27 10:50:14.041 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7557. 2017-07-27 10:50:14.042 |-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
  7558. 2017-07-27 10:50:14.042 |-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
  7559. 2017-07-27 10:50:14.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7560. 2017-07-27 10:50:14.043 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7561. 2017-07-27 10:50:14.049 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7562. 2017-07-27 10:50:14.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
  7563. 2017-07-27 10:50:14.050 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7564. 2017-07-27 10:50:14.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7565. 2017-07-27 10:50:14.050 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7566. 2017-07-27 10:50:14.051 |-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
  7567. 2017-07-27 10:50:14.051 |-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
  7568. 2017-07-27 10:50:14.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7569. 2017-07-27 10:50:14.051 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7570. 2017-07-27 10:50:14.064 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7571. 2017-07-27 10:50:14.066 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7572. 2017-07-27 10:50:14.067 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7573. 2017-07-27 10:50:14.072 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7574. 2017-07-27 10:50:14.072 |-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=?)
  7575. 2017-07-27 10:50:14.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7576. 2017-07-27 10:50:14.079 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7577. 2017-07-27 10:50:14.081 |-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=?)
  7578. 2017-07-27 10:50:14.081 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7579. 2017-07-27 10:50:14.082 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7580. 2017-07-27 10:50:14.082 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7581. 2017-07-27 10:50:14.083 |-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=?)
  7582. 2017-07-27 10:50:14.083 |-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=?)
  7583. 2017-07-27 10:50:14.084 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7584. 2017-07-27 10:50:14.083 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7585. 2017-07-27 10:50:14.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7586. 2017-07-27 10:50:14.085 |-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=?)
  7587. 2017-07-27 10:50:14.085 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7588. 2017-07-27 10:50:14.095 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7589. 2017-07-27 10:50:14.096 |-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
  7590. 2017-07-27 10:50:14.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7591. 2017-07-27 10:50:14.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7592. 2017-07-27 10:50:14.105 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7593. 2017-07-27 10:50:14.106 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7594. 2017-07-27 10:50:14.107 |-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 parentid = ?
  7595. 2017-07-27 10:50:14.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  7596. 2017-07-27 10:50:14.109 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7597. 2017-07-27 10:50:14.111 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7598. 2017-07-27 10:50:14.112 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7599. 2017-07-27 10:50:14.114 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7600. 2017-07-27 10:50:14.114 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7601. 2017-07-27 10:50:14.116 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7602. 2017-07-27 10:50:14.118 |-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 parentid = ?
  7603. 2017-07-27 10:50:14.118 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  7604. 2017-07-27 10:50:14.114 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7605. 2017-07-27 10:50:14.114 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7606. 2017-07-27 10:50:14.122 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7607. 2017-07-27 10:50:14.125 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7608. 2017-07-27 10:50:14.125 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7609. 2017-07-27 10:50:14.125 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7610. 2017-07-27 10:50:14.126 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7611. 2017-07-27 10:50:14.127 |-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=?)
  7612. 2017-07-27 10:50:14.127 |-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 parentid = ?
  7613. 2017-07-27 10:50:14.127 |-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 parentid = ?
  7614. 2017-07-27 10:50:14.127 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7615. 2017-07-27 10:50:14.127 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  7616. 2017-07-27 10:50:14.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  7617. 2017-07-27 10:50:14.128 |-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 parentid = ?
  7618. 2017-07-27 10:50:14.129 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  7619. 2017-07-27 10:50:14.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  7620. 2017-07-27 10:50:14.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  7621. 2017-07-27 10:50:14.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  7622. 2017-07-27 10:50:14.148 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  7623. 2017-07-27 10:50:14.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7624. 2017-07-27 10:50:14.152 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  7625. 2017-07-27 10:50:14.154 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7626. 2017-07-27 10:50:14.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  7627. 2017-07-27 10:50:14.158 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7628. 2017-07-27 10:50:14.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  7629. 2017-07-27 10:50:14.160 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7630. 2017-07-27 10:50:14.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  7631. 2017-07-27 10:50:14.161 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  7632. 2017-07-27 10:50:14.161 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? )
  7633. 2017-07-27 10:50:14.162 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  7634. 2017-07-27 10:50:14.162 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
  7635. 2017-07-27 10:50:14.162 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  7636. 2017-07-27 10:50:14.162 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  7637. 2017-07-27 10:50:14.163 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
  7638. 2017-07-27 10:50:14.163 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  7639. 2017-07-27 10:50:14.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  7640. 2017-07-27 10:50:14.170 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? )
  7641. 2017-07-27 10:50:14.171 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  7642. 2017-07-27 10:50:14.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  7643. 2017-07-27 10:50:14.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  7644. 2017-07-27 10:50:14.189 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <== Total: 1
  7645. 2017-07-27 10:50:14.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY tab.mth
  7646. 2017-07-27 10:50:14.191 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7647. 2017-07-27 10:50:14.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  7648. 2017-07-27 10:50:14.191 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
  7649. 2017-07-27 10:50:14.222 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  7650. 2017-07-27 10:50:14.224 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7651. 2017-07-27 10:50:14.225 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/06(String)
  7652. 2017-07-27 10:50:14.256 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 6
  7653. 2017-07-27 10:50:14.289 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  7654. 2017-07-27 10:50:14.386 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 21
  7655. 2017-07-27 10:50:14.387 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7656. 2017-07-27 10:50:14.387 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7657. 2017-07-27 10:50:14.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  7658. 2017-07-27 10:50:14.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 54
  7659. 2017-07-27 10:50:14.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7660. 2017-07-27 10:50:14.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7661. 2017-07-27 10:50:14.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7662. 2017-07-27 10:50:14.418 |-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 parentid = ?
  7663. 2017-07-27 10:50:14.419 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  7664. 2017-07-27 10:50:14.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  7665. 2017-07-27 10:50:14.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 190
  7666. 2017-07-27 10:50:23.834 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7667. 2017-07-27 10:50:23.834 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7668. 2017-07-27 10:50:23.835 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7669. 2017-07-27 10:50:23.835 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7670. 2017-07-27 10:50:23.836 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7671. 2017-07-27 10:50:23.837 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7672. 2017-07-27 10:50:23.837 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7673. 2017-07-27 10:50:23.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7674. 2017-07-27 10:50:23.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7675. 2017-07-27 10:50:23.837 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7676. 2017-07-27 10:50:23.838 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7677. 2017-07-27 10:50:23.838 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7678. 2017-07-27 10:50:23.838 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7679. 2017-07-27 10:50:23.837 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7680. 2017-07-27 10:50:23.841 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7681. 2017-07-27 10:50:23.841 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7682. 2017-07-27 10:50:23.881 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7683. 2017-07-27 10:50:23.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7684. 2017-07-27 10:50:23.881 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7685. 2017-07-27 10:50:23.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7686. 2017-07-27 10:50:23.882 |-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
  7687. 2017-07-27 10:50:23.882 |-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
  7688. 2017-07-27 10:50:23.882 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7689. 2017-07-27 10:50:23.882 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7690. 2017-07-27 10:50:23.882 |-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
  7691. 2017-07-27 10:50:23.882 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7692. 2017-07-27 10:50:23.882 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7693. 2017-07-27 10:50:23.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7694. 2017-07-27 10:50:23.883 |-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
  7695. 2017-07-27 10:50:23.883 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7696. 2017-07-27 10:50:23.884 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7697. 2017-07-27 10:50:23.884 |-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
  7698. 2017-07-27 10:50:23.885 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7699. 2017-07-27 10:50:23.927 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7700. 2017-07-27 10:50:23.927 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7701. 2017-07-27 10:50:23.928 |-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=?)
  7702. 2017-07-27 10:50:23.928 |-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
  7703. 2017-07-27 10:50:23.929 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7704. 2017-07-27 10:50:23.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7705. 2017-07-27 10:50:23.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7706. 2017-07-27 10:50:23.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7707. 2017-07-27 10:50:23.930 |-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=?)
  7708. 2017-07-27 10:50:23.930 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7709. 2017-07-27 10:50:23.930 |-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=?)
  7710. 2017-07-27 10:50:23.930 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7711. 2017-07-27 10:50:23.930 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7712. 2017-07-27 10:50:23.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7713. 2017-07-27 10:50:23.930 |-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=?)
  7714. 2017-07-27 10:50:23.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=?)
  7715. 2017-07-27 10:50:23.931 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7716. 2017-07-27 10:50:23.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7717. 2017-07-27 10:50:23.971 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7718. 2017-07-27 10:50:23.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7719. 2017-07-27 10:50:23.973 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7720. 2017-07-27 10:50:23.974 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7721. 2017-07-27 10:50:23.974 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7722. 2017-07-27 10:50:23.974 |-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=?)
  7723. 2017-07-27 10:50:23.975 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7724. 2017-07-27 10:50:23.975 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7725. 2017-07-27 10:50:23.977 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7726. 2017-07-27 10:50:23.978 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7727. 2017-07-27 10:50:23.978 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7728. 2017-07-27 10:50:23.978 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7729. 2017-07-27 10:50:23.979 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7730. 2017-07-27 10:50:23.978 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7731. 2017-07-27 10:50:23.979 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7732. 2017-07-27 10:50:23.979 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7733. 2017-07-27 10:50:23.979 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7734. 2017-07-27 10:50:23.979 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7735. 2017-07-27 10:50:23.981 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7736. 2017-07-27 10:50:23.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7737. 2017-07-27 10:50:23.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7738. 2017-07-27 10:50:23.982 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7739. 2017-07-27 10:50:23.983 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  7740. 2017-07-27 10:50:23.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  7741. 2017-07-27 10:50:23.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7742. 2017-07-27 10:50:23.983 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7743. 2017-07-27 10:50:23.986 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  7744. 2017-07-27 10:50:23.986 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  7745. 2017-07-27 10:50:24.015 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7746. 2017-07-27 10:50:24.018 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7747. 2017-07-27 10:50:24.020 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7748. 2017-07-27 10:50:24.023 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7749. 2017-07-27 10:50:24.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  7750. 2017-07-27 10:50:24.026 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  7751. 2017-07-27 10:50:24.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7752. 2017-07-27 10:50:24.028 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7753. 2017-07-27 10:50:24.029 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  7754. 2017-07-27 10:50:24.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7755. 2017-07-27 10:50:24.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  7756. 2017-07-27 10:50:24.030 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7757. 2017-07-27 10:50:24.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth
  7758. 2017-07-27 10:50:24.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  7759. 2017-07-27 10:50:24.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 39(Long)
  7760. 2017-07-27 10:50:24.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 4
  7761. 2017-07-27 10:50:24.077 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  7762. 2017-07-27 10:50:24.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
  7763. 2017-07-27 10:50:24.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 3
  7764. 2017-07-27 10:50:24.124 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  7765. 2017-07-27 10:50:24.126 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7766. 2017-07-27 10:50:24.127 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7767. 2017-07-27 10:50:24.166 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  7768. 2017-07-27 10:50:24.168 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7769. 2017-07-27 10:50:24.169 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7770. 2017-07-27 10:50:24.171 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7771. 2017-07-27 10:50:24.212 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  7772. 2017-07-27 10:50:24.214 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7773. 2017-07-27 10:50:24.216 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 7
  7774. 2017-07-27 10:50:24.216 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  7775. 2017-07-27 10:50:24.217 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
  7776. 2017-07-27 10:50:24.324 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 10
  7777. 2017-07-27 10:50:24.327 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7778. 2017-07-27 10:50:24.328 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7779. 2017-07-27 10:50:24.365 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7780. 2017-07-27 10:50:37.553 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7781. 2017-07-27 10:50:37.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7782. 2017-07-27 10:50:37.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7783. 2017-07-27 10:50:37.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7784. 2017-07-27 10:50:37.585 |-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
  7785. 2017-07-27 10:50:37.585 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7786. 2017-07-27 10:50:37.615 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7787. 2017-07-27 10:50:37.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=?)
  7788. 2017-07-27 10:50:37.616 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7789. 2017-07-27 10:50:37.642 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7790. 2017-07-27 10:50:37.645 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7791. 2017-07-27 10:50:37.646 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7792. 2017-07-27 10:50:37.648 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7793. 2017-07-27 10:50:37.649 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7794. 2017-07-27 10:50:37.680 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 25
  7795. 2017-07-27 10:50:37.705 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7796. 2017-07-27 10:50:37.707 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7797. 2017-07-27 10:50:37.708 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7798. 2017-07-27 10:50:37.710 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7799. 2017-07-27 10:50:37.710 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7800. 2017-07-27 10:50:37.712 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7801. 2017-07-27 10:50:37.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  7802. 2017-07-27 10:50:37.712 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7803. 2017-07-27 10:50:37.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7804. 2017-07-27 10:50:37.736 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7805. 2017-07-27 10:50:37.737 |-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
  7806. 2017-07-27 10:50:37.737 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7807. 2017-07-27 10:50:37.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7808. 2017-07-27 10:50:37.740 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7809. 2017-07-27 10:50:37.741 |-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
  7810. 2017-07-27 10:50:37.741 |-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
  7811. 2017-07-27 10:50:37.741 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7812. 2017-07-27 10:50:37.741 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7813. 2017-07-27 10:50:37.767 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7814. 2017-07-27 10:50:37.768 |-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=?)
  7815. 2017-07-27 10:50:37.768 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7816. 2017-07-27 10:50:37.768 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7817. 2017-07-27 10:50:37.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=?)
  7818. 2017-07-27 10:50:37.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7819. 2017-07-27 10:50:37.770 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  7820. 2017-07-27 10:50:37.770 |-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=?)
  7821. 2017-07-27 10:50:37.771 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7822. 2017-07-27 10:50:37.793 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7823. 2017-07-27 10:50:37.795 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7824. 2017-07-27 10:50:37.796 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7825. 2017-07-27 10:50:37.796 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7826. 2017-07-27 10:50:37.797 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7827. 2017-07-27 10:50:37.797 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7828. 2017-07-27 10:50:37.798 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7829. 2017-07-27 10:50:37.799 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  7830. 2017-07-27 10:50:37.799 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7831. 2017-07-27 10:50:37.800 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7832. 2017-07-27 10:50:37.800 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7833. 2017-07-27 10:50:37.803 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  7834. 2017-07-27 10:50:37.804 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  7835. 2017-07-27 10:50:37.828 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  7836. 2017-07-27 10:50:37.833 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  7837. 2017-07-27 10:50:37.885 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  7838. 2017-07-27 10:50:37.885 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  7839. 2017-07-27 10:50:37.982 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7840. 2017-07-27 11:02:49.441 |-INFO [Thread-10] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@79694ff4: startup date [Thu Jul 27 09:29:08 CST 2017]; root of context hierarchy
  7841. 2017-07-27 11:02:49.462 |-INFO [Thread-10] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  7842. 2017-07-27 11:02:49.463 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  7843. 2017-07-27 11:02:49.464 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  7844. 2017-07-27 11:02:49.464 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  7845. 2017-07-27 11:02:49.464 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  7846. 2017-07-27 11:02:49.480 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  7847. 2017-07-27 11:02:49.484 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  7848. 2017-07-27 11:02:49.975 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 8624 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  7849. 2017-07-27 11:02:49.975 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  7850. 2017-07-27 11:02:50.001 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3849b5f1: startup date [Thu Jul 27 11:02:50 CST 2017]; root of context hierarchy
  7851. 2017-07-27 11:02:51.243 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  7852. 2017-07-27 11:02:51.527 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bcd9427b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7853. 2017-07-27 11:02:51.543 |-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$$55870ab5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7854. 2017-07-27 11:02:51.546 |-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)
  7855. 2017-07-27 11:02:51.548 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@341535b4' 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)
  7856. 2017-07-27 11:02:51.552 |-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$$7a5bad67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7857. 2017-07-27 11:02:51.558 |-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)
  7858. 2017-07-27 11:02:51.566 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$a81cb677] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7859. 2017-07-27 11:02:51.585 |-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)
  7860. 2017-07-27 11:02:51.587 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$5eb7899] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7861. 2017-07-27 11:02:51.831 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  7862. 2017-07-27 11:02:51.832 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  7863. 2017-07-27 11:02:51.832 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  7864. 2017-07-27 11:02:51.847 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  7865. 2017-07-27 11:02:51.848 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 1847 ms
  7866. 2017-07-27 11:02:52.146 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  7867. 2017-07-27 11:02:53.684 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  7868. 2017-07-27 11:02:53.685 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  7869. 2017-07-27 11:02:53.685 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  7870. 2017-07-27 11:02:53.685 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  7871. 2017-07-27 11:02:53.685 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  7872. 2017-07-27 11:02:53.685 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  7873. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  7874. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  7875. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  7876. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  7877. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  7878. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  7879. 2017-07-27 11:02:53.686 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  7880. 2017-07-27 11:02:53.687 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  7881. 2017-07-27 11:02:54.664 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  7882. 2017-07-27 11:02:54.664 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  7883. 2017-07-27 11:02:54.706 |-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@372273a9, org.springframework.security.web.context.SecurityContextPersistenceFilter@27885ecd, org.springframework.security.web.header.HeaderWriterFilter@af93fb7, org.springframework.web.filter.CorsFilter@3f05475d, org.springframework.security.web.authentication.logout.LogoutFilter@504de76c, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@4b95323f, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5d1979a3, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1e5ee130, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@583ea14e, org.springframework.security.web.session.SessionManagementFilter@13dbb0df, org.springframework.security.web.access.ExceptionTranslationFilter@15edf0d7, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5a260b75]
  7884. 2017-07-27 11:02:54.721 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@2270276, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@266a4434, org.springframework.security.web.context.SecurityContextPersistenceFilter@2b352b54, org.springframework.security.web.header.HeaderWriterFilter@406f4204, org.springframework.security.web.authentication.logout.LogoutFilter@75f38ecc, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@2d8aab30, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4585141f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7f4001c9, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7c61f9ba, org.springframework.security.web.session.SessionManagementFilter@16738944, org.springframework.security.web.access.ExceptionTranslationFilter@2bb8acc9, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7fd4b0ab]
  7885. 2017-07-27 11:02:54.786 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3849b5f1: startup date [Thu Jul 27 11:02:50 CST 2017]; root of context hierarchy
  7886. 2017-07-27 11:02:54.878 |-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)
  7887. 2017-07-27 11:02:54.879 |-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)
  7888. 2017-07-27 11:02:54.880 |-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)
  7889. 2017-07-27 11:02:54.880 |-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)
  7890. 2017-07-27 11:02:54.881 |-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)
  7891. 2017-07-27 11:02:54.881 |-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)
  7892. 2017-07-27 11:02:54.881 |-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)
  7893. 2017-07-27 11:02:54.881 |-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)
  7894. 2017-07-27 11:02:54.881 |-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)
  7895. 2017-07-27 11:02:54.883 |-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)
  7896. 2017-07-27 11:02:54.883 |-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)
  7897. 2017-07-27 11:02:54.884 |-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)
  7898. 2017-07-27 11:02:54.884 |-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)
  7899. 2017-07-27 11:02:54.884 |-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)
  7900. 2017-07-27 11:02:54.884 |-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)
  7901. 2017-07-27 11:02:54.885 |-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)
  7902. 2017-07-27 11:02:54.885 |-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)
  7903. 2017-07-27 11:02:54.885 |-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)
  7904. 2017-07-27 11:02:54.885 |-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()
  7905. 2017-07-27 11:02:54.887 |-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)
  7906. 2017-07-27 11:02:54.887 |-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)
  7907. 2017-07-27 11:02:54.887 |-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)
  7908. 2017-07-27 11:02:54.887 |-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()
  7909. 2017-07-27 11:02:54.887 |-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)
  7910. 2017-07-27 11:02:54.888 |-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)
  7911. 2017-07-27 11:02:54.888 |-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)
  7912. 2017-07-27 11:02:54.888 |-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)
  7913. 2017-07-27 11:02:54.889 |-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)
  7914. 2017-07-27 11:02:54.889 |-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)
  7915. 2017-07-27 11:02:54.890 |-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)
  7916. 2017-07-27 11:02:54.890 |-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)
  7917. 2017-07-27 11:02:54.890 |-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)
  7918. 2017-07-27 11:02:54.890 |-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)
  7919. 2017-07-27 11:02:54.891 |-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)
  7920. 2017-07-27 11:02:54.891 |-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>)
  7921. 2017-07-27 11:02:54.891 |-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)
  7922. 2017-07-27 11:02:54.892 |-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)
  7923. 2017-07-27 11:02:54.892 |-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)
  7924. 2017-07-27 11:02:54.893 |-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)
  7925. 2017-07-27 11:02:54.893 |-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)
  7926. 2017-07-27 11:02:54.894 |-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)
  7927. 2017-07-27 11:02:54.894 |-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)
  7928. 2017-07-27 11:02:54.894 |-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)
  7929. 2017-07-27 11:02:54.894 |-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)
  7930. 2017-07-27 11:02:54.896 |-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()
  7931. 2017-07-27 11:02:54.897 |-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)
  7932. 2017-07-27 11:02:54.897 |-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)
  7933. 2017-07-27 11:02:54.897 |-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
  7934. 2017-07-27 11:02:54.898 |-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)
  7935. 2017-07-27 11:02:54.898 |-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)
  7936. 2017-07-27 11:02:54.898 |-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)
  7937. 2017-07-27 11:02:54.898 |-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)
  7938. 2017-07-27 11:02:54.899 |-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()
  7939. 2017-07-27 11:02:54.899 |-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()
  7940. 2017-07-27 11:02:54.899 |-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)
  7941. 2017-07-27 11:02:54.900 |-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)
  7942. 2017-07-27 11:02:54.900 |-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)
  7943. 2017-07-27 11:02:54.901 |-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)
  7944. 2017-07-27 11:02:54.902 |-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.Integer,java.lang.Integer,java.lang.Integer)
  7945. 2017-07-27 11:02:54.902 |-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)
  7946. 2017-07-27 11:02:54.902 |-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)
  7947. 2017-07-27 11:02:54.903 |-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)
  7948. 2017-07-27 11:02:54.903 |-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.String,java.lang.String,java.lang.String,java.lang.String)
  7949. 2017-07-27 11:02:54.903 |-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)
  7950. 2017-07-27 11:02:54.905 |-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
  7951. 2017-07-27 11:02:54.905 |-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)
  7952. 2017-07-27 11:02:54.905 |-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)
  7953. 2017-07-27 11:02:54.905 |-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)
  7954. 2017-07-27 11:02:54.906 |-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)
  7955. 2017-07-27 11:02:54.906 |-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)
  7956. 2017-07-27 11:02:54.908 |-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()
  7957. 2017-07-27 11:02:54.908 |-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
  7958. 2017-07-27 11:02:54.909 |-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)
  7959. 2017-07-27 11:02:54.909 |-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
  7960. 2017-07-27 11:02:54.909 |-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
  7961. 2017-07-27 11:02:54.909 |-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
  7962. 2017-07-27 11:02:54.910 |-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)
  7963. 2017-07-27 11:02:54.910 |-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)
  7964. 2017-07-27 11:02:54.912 |-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)
  7965. 2017-07-27 11:02:54.912 |-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)
  7966. 2017-07-27 11:02:54.912 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  7967. 2017-07-27 11:02:54.913 |-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)
  7968. 2017-07-27 11:02:54.913 |-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)
  7969. 2017-07-27 11:02:54.913 |-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)
  7970. 2017-07-27 11:02:54.914 |-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)
  7971. 2017-07-27 11:02:54.914 |-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)
  7972. 2017-07-27 11:02:54.914 |-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)
  7973. 2017-07-27 11:02:54.914 |-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)
  7974. 2017-07-27 11:02:54.914 |-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
  7975. 2017-07-27 11:02:54.915 |-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)
  7976. 2017-07-27 11:02:54.916 |-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(com.xintong.visualinspection.bean.Score)
  7977. 2017-07-27 11:02:54.916 |-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)
  7978. 2017-07-27 11:02:54.916 |-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()
  7979. 2017-07-27 11:02:54.916 |-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)
  7980. 2017-07-27 11:02:54.917 |-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)
  7981. 2017-07-27 11:02:54.917 |-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)
  7982. 2017-07-27 11:02:54.923 |-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)
  7983. 2017-07-27 11:02:54.924 |-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)
  7984. 2017-07-27 11:02:54.924 |-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)
  7985. 2017-07-27 11:02:54.924 |-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)
  7986. 2017-07-27 11:02:54.924 |-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)
  7987. 2017-07-27 11:02:54.925 |-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)
  7988. 2017-07-27 11:02:54.925 |-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)
  7989. 2017-07-27 11:02:54.925 |-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)
  7990. 2017-07-27 11:02:54.925 |-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)
  7991. 2017-07-27 11:02:54.926 |-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)
  7992. 2017-07-27 11:02:54.926 |-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)
  7993. 2017-07-27 11:02:54.926 |-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)
  7994. 2017-07-27 11:02:54.926 |-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)
  7995. 2017-07-27 11:02:54.927 |-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)
  7996. 2017-07-27 11:02:54.927 |-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)
  7997. 2017-07-27 11:02:54.927 |-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)
  7998. 2017-07-27 11:02:54.927 |-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)
  7999. 2017-07-27 11:02:54.928 |-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)
  8000. 2017-07-27 11:02:54.928 |-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)
  8001. 2017-07-27 11:02:54.928 |-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)
  8002. 2017-07-27 11:02:54.928 |-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)
  8003. 2017-07-27 11:02:54.930 |-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)
  8004. 2017-07-27 11:02:54.931 |-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)
  8005. 2017-07-27 11:02:54.931 |-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)
  8006. 2017-07-27 11:02:54.931 |-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)
  8007. 2017-07-27 11:02:54.931 |-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)
  8008. 2017-07-27 11:02:54.931 |-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)
  8009. 2017-07-27 11:02:54.932 |-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)
  8010. 2017-07-27 11:02:54.932 |-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)
  8011. 2017-07-27 11:02:54.932 |-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)
  8012. 2017-07-27 11:02:54.932 |-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)
  8013. 2017-07-27 11:02:54.932 |-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)
  8014. 2017-07-27 11:02:54.933 |-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)
  8015. 2017-07-27 11:02:54.933 |-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)
  8016. 2017-07-27 11:02:54.933 |-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)
  8017. 2017-07-27 11:02:54.934 |-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)
  8018. 2017-07-27 11:02:54.935 |-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)
  8019. 2017-07-27 11:02:54.935 |-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)
  8020. 2017-07-27 11:02:54.935 |-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)
  8021. 2017-07-27 11:02:54.936 |-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)
  8022. 2017-07-27 11:02:54.936 |-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)
  8023. 2017-07-27 11:02:54.936 |-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)
  8024. 2017-07-27 11:02:54.936 |-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)
  8025. 2017-07-27 11:02:54.937 |-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)
  8026. 2017-07-27 11:02:54.937 |-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)
  8027. 2017-07-27 11:02:54.938 |-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)
  8028. 2017-07-27 11:02:54.938 |-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)
  8029. 2017-07-27 11:02:54.939 |-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)
  8030. 2017-07-27 11:02:54.939 |-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)
  8031. 2017-07-27 11:02:54.939 |-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)
  8032. 2017-07-27 11:02:54.939 |-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)
  8033. 2017-07-27 11:02:54.939 |-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)
  8034. 2017-07-27 11:02:54.940 |-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)
  8035. 2017-07-27 11:02:54.940 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  8036. 2017-07-27 11:02:54.941 |-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)
  8037. 2017-07-27 11:02:54.941 |-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()
  8038. 2017-07-27 11:02:54.941 |-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()
  8039. 2017-07-27 11:02:54.941 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  8040. 2017-07-27 11:02:54.941 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  8041. 2017-07-27 11:02:54.941 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  8042. 2017-07-27 11:02:54.942 |-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()
  8043. 2017-07-27 11:02:54.942 |-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>)
  8044. 2017-07-27 11:02:54.943 |-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>)
  8045. 2017-07-27 11:02:54.943 |-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)
  8046. 2017-07-27 11:02:54.943 |-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)
  8047. 2017-07-27 11:02:54.945 |-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()
  8048. 2017-07-27 11:02:54.945 |-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)
  8049. 2017-07-27 11:02:54.945 |-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)
  8050. 2017-07-27 11:02:54.946 |-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)
  8051. 2017-07-27 11:02:54.946 |-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)
  8052. 2017-07-27 11:02:54.946 |-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)
  8053. 2017-07-27 11:02:54.946 |-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()
  8054. 2017-07-27 11:02:54.946 |-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)
  8055. 2017-07-27 11:02:54.947 |-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
  8056. 2017-07-27 11:02:54.947 |-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)
  8057. 2017-07-27 11:02:54.948 |-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)
  8058. 2017-07-27 11:02:54.948 |-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)
  8059. 2017-07-27 11:02:54.948 |-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)
  8060. 2017-07-27 11:02:55.051 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  8061. 2017-07-27 11:02:55.136 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8062. 2017-07-27 11:02:55.136 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8063. 2017-07-27 11:02:55.172 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  8064. 2017-07-27 11:02:55.172 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  8065. 2017-07-27 11:02:55.173 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  8066. 2017-07-27 11:02:55.174 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  8067. 2017-07-27 11:02:55.174 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  8068. 2017-07-27 11:02:55.174 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  8069. 2017-07-27 11:02:55.175 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  8070. 2017-07-27 11:02:55.175 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  8071. 2017-07-27 11:02:55.176 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  8072. 2017-07-27 11:02:55.176 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  8073. 2017-07-27 11:02:55.176 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  8074. 2017-07-27 11:02:55.177 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  8075. 2017-07-27 11:02:55.177 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  8076. 2017-07-27 11:02:55.177 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  8077. 2017-07-27 11:02:55.178 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  8078. 2017-07-27 11:02:55.179 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  8079. 2017-07-27 11:02:55.180 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  8080. 2017-07-27 11:02:55.181 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  8081. 2017-07-27 11:02:55.182 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  8082. 2017-07-27 11:02:55.182 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  8083. 2017-07-27 11:02:55.182 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  8084. 2017-07-27 11:02:55.183 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  8085. 2017-07-27 11:02:55.183 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  8086. 2017-07-27 11:02:55.235 |-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]
  8087. 2017-07-27 11:02:55.587 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  8088. 2017-07-27 11:02:55.588 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  8089. 2017-07-27 11:02:55.588 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  8090. 2017-07-27 11:02:55.588 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  8091. 2017-07-27 11:02:55.588 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  8092. 2017-07-27 11:02:55.588 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  8093. 2017-07-27 11:02:55.588 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  8094. 2017-07-27 11:02:55.589 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  8095. 2017-07-27 11:02:55.589 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  8096. 2017-07-27 11:02:55.590 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  8097. 2017-07-27 11:02:55.590 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  8098. 2017-07-27 11:02:55.591 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  8099. 2017-07-27 11:02:55.591 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  8100. 2017-07-27 11:02:55.591 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  8101. 2017-07-27 11:02:55.591 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  8102. 2017-07-27 11:02:55.592 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  8103. 2017-07-27 11:02:55.592 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  8104. 2017-07-27 11:02:55.592 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  8105. 2017-07-27 11:02:55.596 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  8106. 2017-07-27 11:02:55.596 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  8107. 2017-07-27 11:02:55.596 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  8108. 2017-07-27 11:02:55.596 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  8109. 2017-07-27 11:02:55.596 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  8110. 2017-07-27 11:02:55.597 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  8111. 2017-07-27 11:02:55.597 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  8112. 2017-07-27 11:02:55.597 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  8113. 2017-07-27 11:02:55.601 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  8114. 2017-07-27 11:02:55.604 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  8115. 2017-07-27 11:02:55.605 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  8116. 2017-07-27 11:02:55.605 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  8117. 2017-07-27 11:02:55.605 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  8118. 2017-07-27 11:02:55.606 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  8119. 2017-07-27 11:02:55.916 |-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()
  8120. 2017-07-27 11:02:55.916 |-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()
  8121. 2017-07-27 11:02:55.917 |-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)
  8122. 2017-07-27 11:02:55.917 |-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()
  8123. 2017-07-27 11:02:55.918 |-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()
  8124. 2017-07-27 11:02:55.918 |-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()
  8125. 2017-07-27 11:02:55.918 |-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()
  8126. 2017-07-27 11:02:55.919 |-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)
  8127. 2017-07-27 11:02:55.920 |-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>)
  8128. 2017-07-27 11:02:55.920 |-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()
  8129. 2017-07-27 11:02:55.921 |-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
  8130. 2017-07-27 11:02:55.922 |-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()
  8131. 2017-07-27 11:02:55.922 |-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)
  8132. 2017-07-27 11:02:55.922 |-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()
  8133. 2017-07-27 11:02:55.923 |-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)
  8134. 2017-07-27 11:02:55.924 |-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)
  8135. 2017-07-27 11:02:55.925 |-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()
  8136. 2017-07-27 11:02:56.333 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  8137. 2017-07-27 11:02:56.340 |-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
  8138. 2017-07-27 11:02:56.657 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  8139. 2017-07-27 11:02:56.658 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  8140. 2017-07-27 11:02:56.658 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  8141. 2017-07-27 11:02:56.662 |-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]
  8142. 2017-07-27 11:02:56.663 |-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]
  8143. 2017-07-27 11:02:56.664 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  8144. 2017-07-27 11:02:56.665 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  8145. 2017-07-27 11:02:56.666 |-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]
  8146. 2017-07-27 11:02:56.669 |-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]
  8147. 2017-07-27 11:02:56.671 |-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]
  8148. 2017-07-27 11:02:56.674 |-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]
  8149. 2017-07-27 11:02:56.676 |-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]
  8150. 2017-07-27 11:02:56.678 |-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]
  8151. 2017-07-27 11:02:56.680 |-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]
  8152. 2017-07-27 11:02:56.682 |-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]
  8153. 2017-07-27 11:02:56.684 |-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]
  8154. 2017-07-27 11:02:56.686 |-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]
  8155. 2017-07-27 11:02:56.688 |-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]
  8156. 2017-07-27 11:02:56.690 |-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]
  8157. 2017-07-27 11:02:56.694 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-3} inited
  8158. 2017-07-27 11:02:56.956 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  8159. 2017-07-27 11:02:56.957 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  8160. 2017-07-27 11:02:56.991 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 30
  8161. 2017-07-27 11:02:56.992 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [36] -| 加载用户信息成功,数据数:0
  8162. 2017-07-27 11:02:56.996 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-4} inited
  8163. 2017-07-27 11:02:57.255 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  8164. 2017-07-27 11:02:57.256 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  8165. 2017-07-27 11:02:57.377 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 659
  8166. 2017-07-27 11:02:57.379 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:659
  8167. 2017-07-27 11:02:57.380 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  8168. 2017-07-27 11:02:57.381 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  8169. 2017-07-27 11:02:57.411 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  8170. 2017-07-27 11:02:57.412 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载部门信息成功,数据数:32
  8171. 2017-07-27 11:02:57.413 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8172. 2017-07-27 11:02:57.413 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8173. 2017-07-27 11:02:57.452 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8174. 2017-07-27 11:02:57.453 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [65] -| 加载用户信息成功,数据数:659
  8175. 2017-07-27 11:02:57.458 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  8176. 2017-07-27 11:02:57.458 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  8177. 2017-07-27 11:02:57.463 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  8178. 2017-07-27 11:02:57.477 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  8179. 2017-07-27 11:02:57.479 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 7.598 seconds (JVM running for 5633.93)
  8180. 2017-07-27 11:03:02.915 |-INFO [Thread-107] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3849b5f1: startup date [Thu Jul 27 11:02:50 CST 2017]; root of context hierarchy
  8181. 2017-07-27 11:03:02.917 |-INFO [Thread-107] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  8182. 2017-07-27 11:03:02.918 |-INFO [Thread-107] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  8183. 2017-07-27 11:03:02.918 |-INFO [Thread-107] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  8184. 2017-07-27 11:03:02.918 |-INFO [Thread-107] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  8185. 2017-07-27 11:03:02.918 |-INFO [Thread-107] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  8186. 2017-07-27 11:03:02.925 |-INFO [Thread-107] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-4} closed
  8187. 2017-07-27 11:03:02.926 |-INFO [Thread-107] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-3} closed
  8188. 2017-07-27 11:03:03.522 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 8624 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  8189. 2017-07-27 11:03:03.522 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  8190. 2017-07-27 11:03:03.525 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63fff613: startup date [Thu Jul 27 11:03:03 CST 2017]; root of context hierarchy
  8191. 2017-07-27 11:03:18.482 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 10100 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  8192. 2017-07-27 11:03:18.526 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  8193. 2017-07-27 11:03:18.864 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  8194. 2017-07-27 11:03:18.908 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63f0826a: startup date [Thu Jul 27 11:03:18 CST 2017]; root of context hierarchy
  8195. 2017-07-27 11:03:21.059 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  8196. 2017-07-27 11:03:22.085 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$434800ac] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8197. 2017-07-27 11:03:22.284 |-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$$dbf5c8e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8198. 2017-07-27 11:03:22.303 |-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)
  8199. 2017-07-27 11:03:22.308 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@7fbe3381' 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)
  8200. 2017-07-27 11:03:22.321 |-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$$ca6b98] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8201. 2017-07-27 11:03:22.346 |-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)
  8202. 2017-07-27 11:03:22.371 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$2e8b74a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8203. 2017-07-27 11:03:22.399 |-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)
  8204. 2017-07-27 11:03:22.402 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$8c5a36ca] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8205. 2017-07-27 11:03:23.319 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  8206. 2017-07-27 11:03:23.334 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  8207. 2017-07-27 11:03:23.335 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  8208. 2017-07-27 11:03:23.448 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  8209. 2017-07-27 11:03:23.449 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 4541 ms
  8210. 2017-07-27 11:03:23.897 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  8211. 2017-07-27 11:03:26.442 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  8212. 2017-07-27 11:03:26.443 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  8213. 2017-07-27 11:03:26.443 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  8214. 2017-07-27 11:03:26.443 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  8215. 2017-07-27 11:03:26.443 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  8216. 2017-07-27 11:03:26.445 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  8217. 2017-07-27 11:03:26.445 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  8218. 2017-07-27 11:03:26.446 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  8219. 2017-07-27 11:03:26.446 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  8220. 2017-07-27 11:03:26.446 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  8221. 2017-07-27 11:03:26.446 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  8222. 2017-07-27 11:03:26.446 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  8223. 2017-07-27 11:03:26.447 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  8224. 2017-07-27 11:03:26.448 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  8225. 2017-07-27 11:03:27.729 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  8226. 2017-07-27 11:03:27.729 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  8227. 2017-07-27 11:03:27.862 |-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@172d6702, org.springframework.security.web.context.SecurityContextPersistenceFilter@764be76a, org.springframework.security.web.header.HeaderWriterFilter@4be412e7, org.springframework.web.filter.CorsFilter@33001246, org.springframework.security.web.authentication.logout.LogoutFilter@47526358, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@79616e09, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@62cd315, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@8b37302, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@774d5356, org.springframework.security.web.session.SessionManagementFilter@7aedd494, org.springframework.security.web.access.ExceptionTranslationFilter@7fab75a1, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1985c488]
  8228. 2017-07-27 11:03:27.898 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@697873ec, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@569f46d4, org.springframework.security.web.context.SecurityContextPersistenceFilter@330c0ffc, org.springframework.security.web.header.HeaderWriterFilter@73add10f, org.springframework.security.web.authentication.logout.LogoutFilter@5e3f8fc4, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@3dce095f, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@14c2d6f9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@97a58c7, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@10548344, org.springframework.security.web.session.SessionManagementFilter@4013a76f, org.springframework.security.web.access.ExceptionTranslationFilter@5adfb6c2, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@a881089]
  8229. 2017-07-27 11:03:28.206 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63f0826a: startup date [Thu Jul 27 11:03:18 CST 2017]; root of context hierarchy
  8230. 2017-07-27 11:03:28.374 |-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)
  8231. 2017-07-27 11:03:28.376 |-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)
  8232. 2017-07-27 11:03:28.378 |-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)
  8233. 2017-07-27 11:03:28.379 |-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)
  8234. 2017-07-27 11:03:28.379 |-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)
  8235. 2017-07-27 11:03:28.379 |-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)
  8236. 2017-07-27 11:03:28.380 |-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)
  8237. 2017-07-27 11:03:28.380 |-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)
  8238. 2017-07-27 11:03:28.381 |-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)
  8239. 2017-07-27 11:03:28.385 |-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)
  8240. 2017-07-27 11:03:28.386 |-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)
  8241. 2017-07-27 11:03:28.386 |-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)
  8242. 2017-07-27 11:03:28.387 |-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)
  8243. 2017-07-27 11:03:28.387 |-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)
  8244. 2017-07-27 11:03:28.387 |-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)
  8245. 2017-07-27 11:03:28.388 |-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)
  8246. 2017-07-27 11:03:28.388 |-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)
  8247. 2017-07-27 11:03:28.388 |-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)
  8248. 2017-07-27 11:03:28.389 |-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()
  8249. 2017-07-27 11:03:28.391 |-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)
  8250. 2017-07-27 11:03:28.392 |-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)
  8251. 2017-07-27 11:03:28.392 |-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)
  8252. 2017-07-27 11:03:28.393 |-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()
  8253. 2017-07-27 11:03:28.393 |-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)
  8254. 2017-07-27 11:03:28.393 |-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)
  8255. 2017-07-27 11:03:28.394 |-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)
  8256. 2017-07-27 11:03:28.394 |-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)
  8257. 2017-07-27 11:03:28.396 |-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)
  8258. 2017-07-27 11:03:28.396 |-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)
  8259. 2017-07-27 11:03:28.397 |-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)
  8260. 2017-07-27 11:03:28.397 |-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)
  8261. 2017-07-27 11:03:28.397 |-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)
  8262. 2017-07-27 11:03:28.398 |-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)
  8263. 2017-07-27 11:03:28.398 |-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)
  8264. 2017-07-27 11:03:28.399 |-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>)
  8265. 2017-07-27 11:03:28.400 |-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)
  8266. 2017-07-27 11:03:28.400 |-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)
  8267. 2017-07-27 11:03:28.401 |-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)
  8268. 2017-07-27 11:03:28.403 |-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)
  8269. 2017-07-27 11:03:28.403 |-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)
  8270. 2017-07-27 11:03:28.403 |-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)
  8271. 2017-07-27 11:03:28.404 |-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)
  8272. 2017-07-27 11:03:28.404 |-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)
  8273. 2017-07-27 11:03:28.404 |-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)
  8274. 2017-07-27 11:03:28.407 |-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()
  8275. 2017-07-27 11:03:28.408 |-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)
  8276. 2017-07-27 11:03:28.408 |-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)
  8277. 2017-07-27 11:03:28.409 |-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
  8278. 2017-07-27 11:03:28.409 |-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)
  8279. 2017-07-27 11:03:28.410 |-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)
  8280. 2017-07-27 11:03:28.410 |-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)
  8281. 2017-07-27 11:03:28.410 |-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)
  8282. 2017-07-27 11:03:28.411 |-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()
  8283. 2017-07-27 11:03:28.411 |-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()
  8284. 2017-07-27 11:03:28.411 |-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)
  8285. 2017-07-27 11:03:28.412 |-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)
  8286. 2017-07-27 11:03:28.413 |-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)
  8287. 2017-07-27 11:03:28.413 |-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)
  8288. 2017-07-27 11:03:28.414 |-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.Integer,java.lang.Integer,java.lang.Integer)
  8289. 2017-07-27 11:03:28.415 |-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)
  8290. 2017-07-27 11:03:28.415 |-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)
  8291. 2017-07-27 11:03:28.415 |-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)
  8292. 2017-07-27 11:03:28.416 |-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.String,java.lang.String,java.lang.String,java.lang.String)
  8293. 2017-07-27 11:03:28.416 |-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)
  8294. 2017-07-27 11:03:28.418 |-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
  8295. 2017-07-27 11:03:28.419 |-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)
  8296. 2017-07-27 11:03:28.419 |-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)
  8297. 2017-07-27 11:03:28.419 |-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)
  8298. 2017-07-27 11:03:28.420 |-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)
  8299. 2017-07-27 11:03:28.420 |-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)
  8300. 2017-07-27 11:03:28.423 |-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
  8301. 2017-07-27 11:03:28.423 |-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)
  8302. 2017-07-27 11:03:28.423 |-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
  8303. 2017-07-27 11:03:28.424 |-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
  8304. 2017-07-27 11:03:28.424 |-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
  8305. 2017-07-27 11:03:28.425 |-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)
  8306. 2017-07-27 11:03:28.425 |-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)
  8307. 2017-07-27 11:03:28.425 |-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()
  8308. 2017-07-27 11:03:28.428 |-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
  8309. 2017-07-27 11:03:28.429 |-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)
  8310. 2017-07-27 11:03:28.429 |-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)
  8311. 2017-07-27 11:03:28.429 |-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)
  8312. 2017-07-27 11:03:28.429 |-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)
  8313. 2017-07-27 11:03:28.430 |-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)
  8314. 2017-07-27 11:03:28.430 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  8315. 2017-07-27 11:03:28.430 |-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)
  8316. 2017-07-27 11:03:28.431 |-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)
  8317. 2017-07-27 11:03:28.431 |-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)
  8318. 2017-07-27 11:03:28.431 |-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)
  8319. 2017-07-27 11:03:28.433 |-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)
  8320. 2017-07-27 11:03:28.433 |-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(com.xintong.visualinspection.bean.Score)
  8321. 2017-07-27 11:03:28.436 |-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)
  8322. 2017-07-27 11:03:28.436 |-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)
  8323. 2017-07-27 11:03:28.436 |-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)
  8324. 2017-07-27 11:03:28.437 |-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()
  8325. 2017-07-27 11:03:28.437 |-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)
  8326. 2017-07-27 11:03:28.440 |-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)
  8327. 2017-07-27 11:03:28.441 |-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)
  8328. 2017-07-27 11:03:28.442 |-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)
  8329. 2017-07-27 11:03:28.442 |-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)
  8330. 2017-07-27 11:03:28.442 |-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)
  8331. 2017-07-27 11:03:28.443 |-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)
  8332. 2017-07-27 11:03:28.443 |-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)
  8333. 2017-07-27 11:03:28.443 |-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)
  8334. 2017-07-27 11:03:28.443 |-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)
  8335. 2017-07-27 11:03:28.444 |-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)
  8336. 2017-07-27 11:03:28.444 |-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)
  8337. 2017-07-27 11:03:28.444 |-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)
  8338. 2017-07-27 11:03:28.445 |-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)
  8339. 2017-07-27 11:03:28.445 |-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)
  8340. 2017-07-27 11:03:28.445 |-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)
  8341. 2017-07-27 11:03:28.445 |-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)
  8342. 2017-07-27 11:03:28.446 |-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)
  8343. 2017-07-27 11:03:28.446 |-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)
  8344. 2017-07-27 11:03:28.446 |-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)
  8345. 2017-07-27 11:03:28.446 |-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)
  8346. 2017-07-27 11:03:28.447 |-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)
  8347. 2017-07-27 11:03:28.449 |-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)
  8348. 2017-07-27 11:03:28.450 |-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)
  8349. 2017-07-27 11:03:28.450 |-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)
  8350. 2017-07-27 11:03:28.450 |-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)
  8351. 2017-07-27 11:03:28.451 |-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)
  8352. 2017-07-27 11:03:28.451 |-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)
  8353. 2017-07-27 11:03:28.451 |-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)
  8354. 2017-07-27 11:03:28.452 |-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)
  8355. 2017-07-27 11:03:28.452 |-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)
  8356. 2017-07-27 11:03:28.452 |-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)
  8357. 2017-07-27 11:03:28.452 |-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)
  8358. 2017-07-27 11:03:28.453 |-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)
  8359. 2017-07-27 11:03:28.453 |-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)
  8360. 2017-07-27 11:03:28.453 |-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)
  8361. 2017-07-27 11:03:28.455 |-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)
  8362. 2017-07-27 11:03:28.456 |-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)
  8363. 2017-07-27 11:03:28.456 |-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)
  8364. 2017-07-27 11:03:28.457 |-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)
  8365. 2017-07-27 11:03:28.457 |-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)
  8366. 2017-07-27 11:03:28.457 |-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)
  8367. 2017-07-27 11:03:28.458 |-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)
  8368. 2017-07-27 11:03:28.458 |-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)
  8369. 2017-07-27 11:03:28.458 |-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)
  8370. 2017-07-27 11:03:28.459 |-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)
  8371. 2017-07-27 11:03:28.460 |-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)
  8372. 2017-07-27 11:03:28.463 |-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)
  8373. 2017-07-27 11:03:28.464 |-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)
  8374. 2017-07-27 11:03:28.464 |-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)
  8375. 2017-07-27 11:03:28.464 |-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)
  8376. 2017-07-27 11:03:28.465 |-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)
  8377. 2017-07-27 11:03:28.465 |-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)
  8378. 2017-07-27 11:03:28.465 |-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)
  8379. 2017-07-27 11:03:28.466 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  8380. 2017-07-27 11:03:28.466 |-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)
  8381. 2017-07-27 11:03:28.467 |-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()
  8382. 2017-07-27 11:03:28.467 |-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()
  8383. 2017-07-27 11:03:28.467 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  8384. 2017-07-27 11:03:28.467 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  8385. 2017-07-27 11:03:28.467 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  8386. 2017-07-27 11:03:28.468 |-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()
  8387. 2017-07-27 11:03:28.469 |-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)
  8388. 2017-07-27 11:03:28.469 |-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)
  8389. 2017-07-27 11:03:28.470 |-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>)
  8390. 2017-07-27 11:03:28.471 |-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>)
  8391. 2017-07-27 11:03:28.473 |-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
  8392. 2017-07-27 11:03:28.474 |-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()
  8393. 2017-07-27 11:03:28.474 |-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)
  8394. 2017-07-27 11:03:28.474 |-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)
  8395. 2017-07-27 11:03:28.474 |-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)
  8396. 2017-07-27 11:03:28.475 |-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)
  8397. 2017-07-27 11:03:28.475 |-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)
  8398. 2017-07-27 11:03:28.476 |-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()
  8399. 2017-07-27 11:03:28.476 |-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)
  8400. 2017-07-27 11:03:28.476 |-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)
  8401. 2017-07-27 11:03:28.477 |-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)
  8402. 2017-07-27 11:03:28.478 |-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)
  8403. 2017-07-27 11:03:28.478 |-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)
  8404. 2017-07-27 11:03:28.594 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  8405. 2017-07-27 11:03:28.693 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8406. 2017-07-27 11:03:28.693 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8407. 2017-07-27 11:03:28.751 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  8408. 2017-07-27 11:03:28.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  8409. 2017-07-27 11:03:28.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  8410. 2017-07-27 11:03:28.753 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  8411. 2017-07-27 11:03:28.754 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  8412. 2017-07-27 11:03:28.754 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  8413. 2017-07-27 11:03:28.754 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  8414. 2017-07-27 11:03:28.755 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  8415. 2017-07-27 11:03:28.755 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  8416. 2017-07-27 11:03:28.756 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  8417. 2017-07-27 11:03:28.756 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  8418. 2017-07-27 11:03:28.757 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  8419. 2017-07-27 11:03:28.757 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  8420. 2017-07-27 11:03:28.758 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  8421. 2017-07-27 11:03:28.758 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  8422. 2017-07-27 11:03:28.759 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  8423. 2017-07-27 11:03:28.760 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  8424. 2017-07-27 11:03:28.761 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  8425. 2017-07-27 11:03:28.762 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  8426. 2017-07-27 11:03:28.763 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  8427. 2017-07-27 11:03:28.763 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  8428. 2017-07-27 11:03:28.764 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  8429. 2017-07-27 11:03:28.764 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  8430. 2017-07-27 11:03:28.845 |-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]
  8431. 2017-07-27 11:03:29.759 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  8432. 2017-07-27 11:03:29.761 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  8433. 2017-07-27 11:03:29.763 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  8434. 2017-07-27 11:03:29.842 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  8435. 2017-07-27 11:03:29.846 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  8436. 2017-07-27 11:03:29.848 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  8437. 2017-07-27 11:03:29.850 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  8438. 2017-07-27 11:03:29.851 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  8439. 2017-07-27 11:03:29.853 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  8440. 2017-07-27 11:03:29.854 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  8441. 2017-07-27 11:03:29.855 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  8442. 2017-07-27 11:03:29.857 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  8443. 2017-07-27 11:03:29.857 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  8444. 2017-07-27 11:03:29.858 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  8445. 2017-07-27 11:03:29.858 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  8446. 2017-07-27 11:03:29.858 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  8447. 2017-07-27 11:03:29.858 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  8448. 2017-07-27 11:03:29.859 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  8449. 2017-07-27 11:03:29.869 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  8450. 2017-07-27 11:03:29.869 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  8451. 2017-07-27 11:03:29.869 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  8452. 2017-07-27 11:03:29.869 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  8453. 2017-07-27 11:03:29.882 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  8454. 2017-07-27 11:03:29.886 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  8455. 2017-07-27 11:03:29.886 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  8456. 2017-07-27 11:03:29.891 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  8457. 2017-07-27 11:03:29.965 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  8458. 2017-07-27 11:03:30.344 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  8459. 2017-07-27 11:03:30.409 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  8460. 2017-07-27 11:03:30.438 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  8461. 2017-07-27 11:03:30.438 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  8462. 2017-07-27 11:03:30.438 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  8463. 2017-07-27 11:03:30.439 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  8464. 2017-07-27 11:03:30.439 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  8465. 2017-07-27 11:03:31.099 |-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)
  8466. 2017-07-27 11:03:31.100 |-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()
  8467. 2017-07-27 11:03:31.101 |-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)
  8468. 2017-07-27 11:03:31.102 |-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>)
  8469. 2017-07-27 11:03:31.102 |-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()
  8470. 2017-07-27 11:03:31.103 |-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()
  8471. 2017-07-27 11:03:31.104 |-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)
  8472. 2017-07-27 11:03:31.104 |-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)
  8473. 2017-07-27 11:03:31.105 |-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()
  8474. 2017-07-27 11:03:31.105 |-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()
  8475. 2017-07-27 11:03:31.106 |-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()
  8476. 2017-07-27 11:03:31.106 |-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)
  8477. 2017-07-27 11:03:31.106 |-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()
  8478. 2017-07-27 11:03:31.107 |-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()
  8479. 2017-07-27 11:03:31.108 |-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
  8480. 2017-07-27 11:03:31.109 |-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()
  8481. 2017-07-27 11:03:31.109 |-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()
  8482. 2017-07-27 11:03:31.827 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  8483. 2017-07-27 11:03:31.840 |-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
  8484. 2017-07-27 11:03:32.199 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  8485. 2017-07-27 11:03:32.201 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  8486. 2017-07-27 11:03:32.201 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  8487. 2017-07-27 11:03:32.209 |-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]
  8488. 2017-07-27 11:03:32.212 |-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]
  8489. 2017-07-27 11:03:32.213 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  8490. 2017-07-27 11:03:32.219 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  8491. 2017-07-27 11:03:32.221 |-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]
  8492. 2017-07-27 11:03:32.242 |-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]
  8493. 2017-07-27 11:03:32.257 |-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]
  8494. 2017-07-27 11:03:32.263 |-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]
  8495. 2017-07-27 11:03:32.266 |-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]
  8496. 2017-07-27 11:03:32.271 |-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]
  8497. 2017-07-27 11:03:32.275 |-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]
  8498. 2017-07-27 11:03:32.284 |-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]
  8499. 2017-07-27 11:03:32.287 |-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]
  8500. 2017-07-27 11:03:32.289 |-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]
  8501. 2017-07-27 11:03:32.292 |-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]
  8502. 2017-07-27 11:03:32.294 |-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]
  8503. 2017-07-27 11:03:32.370 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  8504. 2017-07-27 11:03:32.991 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  8505. 2017-07-27 11:03:33.019 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  8506. 2017-07-27 11:03:33.075 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 30
  8507. 2017-07-27 11:03:33.077 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [36] -| 加载用户信息成功,数据数:0
  8508. 2017-07-27 11:03:33.088 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  8509. 2017-07-27 11:03:36.355 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  8510. 2017-07-27 11:03:36.356 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  8511. 2017-07-27 11:03:36.529 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 662
  8512. 2017-07-27 11:03:36.530 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:662
  8513. 2017-07-27 11:03:36.532 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  8514. 2017-07-27 11:03:36.532 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  8515. 2017-07-27 11:03:36.561 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  8516. 2017-07-27 11:03:36.562 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载部门信息成功,数据数:32
  8517. 2017-07-27 11:03:36.593 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8518. 2017-07-27 11:03:36.594 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8519. 2017-07-27 11:03:36.629 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8520. 2017-07-27 11:03:36.630 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [65] -| 加载用户信息成功,数据数:662
  8521. 2017-07-27 11:03:36.650 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  8522. 2017-07-27 11:03:36.665 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  8523. 2017-07-27 11:03:36.680 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  8524. 2017-07-27 11:03:36.711 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  8525. 2017-07-27 11:03:36.718 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 18.55 seconds (JVM running for 19.482)
  8526. 2017-07-27 11:03:43.305 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  8527. 2017-07-27 11:03:43.305 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  8528. 2017-07-27 11:03:43.337 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 30 ms
  8529. 2017-07-27 11:03:43.775 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8530. 2017-07-27 11:03:43.779 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8531. 2017-07-27 11:03:43.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8532. 2017-07-27 11:03:43.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8533. 2017-07-27 11:03:43.900 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8534. 2017-07-27 11:03:43.903 |-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
  8535. 2017-07-27 11:03:43.904 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8536. 2017-07-27 11:03:43.906 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8537. 2017-07-27 11:03:43.907 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8538. 2017-07-27 11:03:43.936 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8539. 2017-07-27 11:03:43.938 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8540. 2017-07-27 11:03:43.938 |-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=?)
  8541. 2017-07-27 11:03:43.938 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8542. 2017-07-27 11:03:43.965 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8543. 2017-07-27 11:03:43.966 |-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
  8544. 2017-07-27 11:03:43.967 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8545. 2017-07-27 11:03:44.000 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8546. 2017-07-27 11:03:44.002 |-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=?)
  8547. 2017-07-27 11:03:44.003 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8548. 2017-07-27 11:03:44.022 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8549. 2017-07-27 11:03:44.031 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8550. 2017-07-27 11:03:44.033 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8551. 2017-07-27 11:03:44.038 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8552. 2017-07-27 11:03:44.041 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8553. 2017-07-27 11:03:44.155 |-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
  8554. 2017-07-27 11:03:44.155 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8555. 2017-07-27 11:03:44.187 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  8556. 2017-07-27 11:03:44.189 |-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
  8557. 2017-07-27 11:03:44.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8558. 2017-07-27 11:03:44.219 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8559. 2017-07-27 11:03:44.349 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8560. 2017-07-27 11:03:44.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8561. 2017-07-27 11:03:44.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8562. 2017-07-27 11:03:44.376 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8563. 2017-07-27 11:03:44.385 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8564. 2017-07-27 11:03:44.386 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8565. 2017-07-27 11:03:44.396 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8566. 2017-07-27 11:03:44.397 |-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
  8567. 2017-07-27 11:03:44.398 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8568. 2017-07-27 11:03:44.419 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8569. 2017-07-27 11:03:44.421 |-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
  8570. 2017-07-27 11:03:44.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8571. 2017-07-27 11:03:44.427 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8572. 2017-07-27 11:03:44.428 |-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=?)
  8573. 2017-07-27 11:03:44.429 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8574. 2017-07-27 11:03:44.452 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8575. 2017-07-27 11:03:44.455 |-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=?)
  8576. 2017-07-27 11:03:44.468 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8577. 2017-07-27 11:03:44.464 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8578. 2017-07-27 11:03:44.485 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8579. 2017-07-27 11:03:44.488 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8580. 2017-07-27 11:03:44.508 |-DEBUG [http-nio-8089-exec-7] 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
  8581. 2017-07-27 11:03:44.509 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8582. 2017-07-27 11:03:44.509 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8583. 2017-07-27 11:03:44.524 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8584. 2017-07-27 11:03:44.526 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8585. 2017-07-27 11:03:44.531 |-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
  8586. 2017-07-27 11:03:44.532 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8587. 2017-07-27 11:03:44.548 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8588. 2017-07-27 11:03:44.569 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8589. 2017-07-27 11:03:44.627 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8590. 2017-07-27 11:03:44.631 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8591. 2017-07-27 11:03:44.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8592. 2017-07-27 11:03:44.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8593. 2017-07-27 11:03:44.668 |-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
  8594. 2017-07-27 11:03:44.669 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8595. 2017-07-27 11:03:44.697 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8596. 2017-07-27 11:03:44.698 |-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=?)
  8597. 2017-07-27 11:03:44.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8598. 2017-07-27 11:03:44.723 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8599. 2017-07-27 11:03:44.727 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8600. 2017-07-27 11:03:44.730 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8601. 2017-07-27 11:03:44.843 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8602. 2017-07-27 11:03:44.844 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8603. 2017-07-27 11:03:44.948 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  8604. 2017-07-27 11:03:45.052 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8605. 2017-07-27 11:03:45.055 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8606. 2017-07-27 11:03:45.056 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8607. 2017-07-27 11:03:45.084 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8608. 2017-07-27 11:03:45.085 |-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
  8609. 2017-07-27 11:03:45.086 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8610. 2017-07-27 11:03:45.114 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8611. 2017-07-27 11:03:45.115 |-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=?)
  8612. 2017-07-27 11:03:45.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8613. 2017-07-27 11:03:45.140 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8614. 2017-07-27 11:03:45.146 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8615. 2017-07-27 11:03:45.149 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8616. 2017-07-27 11:03:45.193 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8617. 2017-07-27 11:03:45.194 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8618. 2017-07-27 11:03:45.219 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8619. 2017-07-27 11:03:45.642 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8620. 2017-07-27 11:03:45.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8621. 2017-07-27 11:03:45.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8622. 2017-07-27 11:03:45.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8623. 2017-07-27 11:03:45.674 |-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
  8624. 2017-07-27 11:03:45.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8625. 2017-07-27 11:03:45.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8626. 2017-07-27 11:03:45.703 |-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=?)
  8627. 2017-07-27 11:03:45.704 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8628. 2017-07-27 11:03:45.727 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8629. 2017-07-27 11:03:45.736 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8630. 2017-07-27 11:03:45.738 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8631. 2017-07-27 11:03:45.743 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8632. 2017-07-27 11:03:45.744 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8633. 2017-07-27 11:03:45.774 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  8634. 2017-07-27 11:03:45.812 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8635. 2017-07-27 11:03:45.816 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8636. 2017-07-27 11:03:45.817 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8637. 2017-07-27 11:03:45.818 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8638. 2017-07-27 11:03:45.818 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8639. 2017-07-27 11:03:45.820 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8640. 2017-07-27 11:03:45.822 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8641. 2017-07-27 11:03:45.844 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8642. 2017-07-27 11:03:45.845 |-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
  8643. 2017-07-27 11:03:45.846 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8644. 2017-07-27 11:03:45.847 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8645. 2017-07-27 11:03:45.847 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8646. 2017-07-27 11:03:45.849 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8647. 2017-07-27 11:03:45.851 |-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
  8648. 2017-07-27 11:03:45.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8649. 2017-07-27 11:03:45.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8650. 2017-07-27 11:03:45.874 |-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=?)
  8651. 2017-07-27 11:03:45.874 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8652. 2017-07-27 11:03:45.874 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8653. 2017-07-27 11:03:45.880 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8654. 2017-07-27 11:03:45.881 |-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=?)
  8655. 2017-07-27 11:03:45.882 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8656. 2017-07-27 11:03:45.899 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8657. 2017-07-27 11:03:45.900 |-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
  8658. 2017-07-27 11:03:45.902 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8659. 2017-07-27 11:03:45.903 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8660. 2017-07-27 11:03:45.905 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8661. 2017-07-27 11:03:45.918 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8662. 2017-07-27 11:03:45.928 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8663. 2017-07-27 11:03:45.932 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8664. 2017-07-27 11:03:45.937 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8665. 2017-07-27 11:03:45.939 |-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=?)
  8666. 2017-07-27 11:03:45.941 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8667. 2017-07-27 11:03:45.946 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  8668. 2017-07-27 11:03:45.947 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8669. 2017-07-27 11:03:45.964 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8670. 2017-07-27 11:03:45.972 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8671. 2017-07-27 11:03:45.973 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  8672. 2017-07-27 11:03:45.977 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8673. 2017-07-27 11:03:45.988 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  8674. 2017-07-27 11:03:45.990 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  8675. 2017-07-27 11:03:46.019 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  8676. 2017-07-27 11:03:46.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8677. 2017-07-27 11:03:46.200 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8678. 2017-07-27 11:03:46.328 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8679. 2017-07-27 11:03:48.242 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8680. 2017-07-27 11:03:48.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8681. 2017-07-27 11:03:48.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8682. 2017-07-27 11:03:48.254 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8683. 2017-07-27 11:03:48.256 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8684. 2017-07-27 11:03:48.255 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8685. 2017-07-27 11:03:48.259 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8686. 2017-07-27 11:03:48.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8687. 2017-07-27 11:03:48.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8688. 2017-07-27 11:03:48.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8689. 2017-07-27 11:03:48.293 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8690. 2017-07-27 11:03:48.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8691. 2017-07-27 11:03:48.294 |-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
  8692. 2017-07-27 11:03:48.294 |-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
  8693. 2017-07-27 11:03:48.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8694. 2017-07-27 11:03:48.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8695. 2017-07-27 11:03:48.296 |-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
  8696. 2017-07-27 11:03:48.295 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8697. 2017-07-27 11:03:48.296 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8698. 2017-07-27 11:03:48.296 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8699. 2017-07-27 11:03:48.297 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8700. 2017-07-27 11:03:48.322 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8701. 2017-07-27 11:03:48.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8702. 2017-07-27 11:03:48.334 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8703. 2017-07-27 11:03:48.335 |-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=?)
  8704. 2017-07-27 11:03:48.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8705. 2017-07-27 11:03:48.335 |-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=?)
  8706. 2017-07-27 11:03:48.336 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8707. 2017-07-27 11:03:48.337 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8708. 2017-07-27 11:03:48.338 |-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
  8709. 2017-07-27 11:03:48.338 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8710. 2017-07-27 11:03:48.360 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8711. 2017-07-27 11:03:48.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8712. 2017-07-27 11:03:48.362 |-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=?)
  8713. 2017-07-27 11:03:48.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8714. 2017-07-27 11:03:48.365 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8715. 2017-07-27 11:03:48.366 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8716. 2017-07-27 11:03:48.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8717. 2017-07-27 11:03:48.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=?)
  8718. 2017-07-27 11:03:48.369 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8719. 2017-07-27 11:03:48.370 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8720. 2017-07-27 11:03:48.372 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8721. 2017-07-27 11:03:48.381 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  8722. 2017-07-27 11:03:48.384 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2159(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2159(Long)
  8723. 2017-07-27 11:03:48.388 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8724. 2017-07-27 11:03:48.391 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8725. 2017-07-27 11:03:48.397 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8726. 2017-07-27 11:03:48.402 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8727. 2017-07-27 11:03:48.411 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8728. 2017-07-27 11:03:48.414 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8729. 2017-07-27 11:03:48.421 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 2
  8730. 2017-07-27 11:03:48.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  8731. 2017-07-27 11:03:48.423 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2159(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8732. 2017-07-27 11:03:48.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 2
  8733. 2017-07-27 11:03:48.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8734. 2017-07-27 11:03:48.635 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2159(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8735. 2017-07-27 11:03:48.640 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8736. 2017-07-27 11:03:48.641 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2159(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8737. 2017-07-27 11:03:48.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8738. 2017-07-27 11:03:48.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  8739. 2017-07-27 11:03:48.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2159(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  8740. 2017-07-27 11:03:48.728 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8741. 2017-07-27 11:03:48.731 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  8742. 2017-07-27 11:03:48.732 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2159(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  8743. 2017-07-27 11:03:48.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 4
  8744. 2017-07-27 11:03:48.821 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 4
  8745. 2017-07-27 11:03:57.151 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8746. 2017-07-27 11:03:57.155 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8747. 2017-07-27 11:03:57.156 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8748. 2017-07-27 11:03:57.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8749. 2017-07-27 11:03:57.158 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8750. 2017-07-27 11:03:57.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8751. 2017-07-27 11:03:57.160 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8752. 2017-07-27 11:03:57.161 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8753. 2017-07-27 11:03:57.162 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8754. 2017-07-27 11:03:57.163 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8755. 2017-07-27 11:03:57.165 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8756. 2017-07-27 11:03:57.166 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8757. 2017-07-27 11:03:57.185 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8758. 2017-07-27 11:03:57.187 |-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
  8759. 2017-07-27 11:03:57.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8760. 2017-07-27 11:03:57.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8761. 2017-07-27 11:03:57.190 |-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
  8762. 2017-07-27 11:03:57.190 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8763. 2017-07-27 11:03:57.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8764. 2017-07-27 11:03:57.191 |-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
  8765. 2017-07-27 11:03:57.191 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8766. 2017-07-27 11:03:57.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8767. 2017-07-27 11:03:57.194 |-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
  8768. 2017-07-27 11:03:57.194 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8769. 2017-07-27 11:03:57.216 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8770. 2017-07-27 11:03:57.217 |-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=?)
  8771. 2017-07-27 11:03:57.217 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8772. 2017-07-27 11:03:57.219 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8773. 2017-07-27 11:03:57.219 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8774. 2017-07-27 11:03:57.219 |-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=?)
  8775. 2017-07-27 11:03:57.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8776. 2017-07-27 11:03:57.219 |-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=?)
  8777. 2017-07-27 11:03:57.220 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8778. 2017-07-27 11:03:57.220 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8779. 2017-07-27 11:03:57.221 |-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=?)
  8780. 2017-07-27 11:03:57.221 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8781. 2017-07-27 11:03:57.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8782. 2017-07-27 11:03:57.245 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8783. 2017-07-27 11:03:57.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8784. 2017-07-27 11:03:57.245 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8785. 2017-07-27 11:03:57.257 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8786. 2017-07-27 11:03:57.259 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8787. 2017-07-27 11:03:57.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  8788. 2017-07-27 11:03:57.264 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8789. 2017-07-27 11:03:57.264 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2163(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8790. 2017-07-27 11:03:57.267 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8791. 2017-07-27 11:03:57.268 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8792. 2017-07-27 11:03:57.270 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8793. 2017-07-27 11:03:57.282 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8794. 2017-07-27 11:03:57.284 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8795. 2017-07-27 11:03:57.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  8796. 2017-07-27 11:03:57.291 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2163(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2163(Long)
  8797. 2017-07-27 11:03:57.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  8798. 2017-07-27 11:03:57.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  8799. 2017-07-27 11:03:57.425 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8800. 2017-07-27 11:03:57.426 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2163(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8801. 2017-07-27 11:03:57.430 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8802. 2017-07-27 11:03:57.431 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2163(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8803. 2017-07-27 11:03:57.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8804. 2017-07-27 11:03:57.514 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8805. 2017-07-27 11:03:59.300 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8806. 2017-07-27 11:03:59.305 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8807. 2017-07-27 11:03:59.308 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8808. 2017-07-27 11:03:59.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8809. 2017-07-27 11:03:59.309 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8810. 2017-07-27 11:03:59.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8811. 2017-07-27 11:03:59.312 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8812. 2017-07-27 11:03:59.314 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8813. 2017-07-27 11:03:59.317 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8814. 2017-07-27 11:03:59.318 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8815. 2017-07-27 11:03:59.318 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8816. 2017-07-27 11:03:59.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8817. 2017-07-27 11:03:59.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8818. 2017-07-27 11:03:59.337 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8819. 2017-07-27 11:03:59.338 |-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
  8820. 2017-07-27 11:03:59.338 |-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
  8821. 2017-07-27 11:03:59.338 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8822. 2017-07-27 11:03:59.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8823. 2017-07-27 11:03:59.345 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8824. 2017-07-27 11:03:59.346 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8825. 2017-07-27 11:03:59.346 |-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
  8826. 2017-07-27 11:03:59.346 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8827. 2017-07-27 11:03:59.346 |-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
  8828. 2017-07-27 11:03:59.347 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8829. 2017-07-27 11:03:59.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8830. 2017-07-27 11:03:59.367 |-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=?)
  8831. 2017-07-27 11:03:59.367 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8832. 2017-07-27 11:03:59.368 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8833. 2017-07-27 11:03:59.369 |-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=?)
  8834. 2017-07-27 11:03:59.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8835. 2017-07-27 11:03:59.377 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8836. 2017-07-27 11:03:59.377 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8837. 2017-07-27 11:03:59.378 |-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=?)
  8838. 2017-07-27 11:03:59.378 |-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=?)
  8839. 2017-07-27 11:03:59.378 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8840. 2017-07-27 11:03:59.378 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8841. 2017-07-27 11:03:59.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8842. 2017-07-27 11:03:59.393 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8843. 2017-07-27 11:03:59.394 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8844. 2017-07-27 11:03:59.396 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8845. 2017-07-27 11:03:59.397 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8846. 2017-07-27 11:03:59.402 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8847. 2017-07-27 11:03:59.405 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8848. 2017-07-27 11:03:59.405 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  8849. 2017-07-27 11:03:59.406 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2154(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2154(Long)
  8850. 2017-07-27 11:03:59.409 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8851. 2017-07-27 11:03:59.416 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8852. 2017-07-27 11:03:59.418 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8853. 2017-07-27 11:03:59.419 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8854. 2017-07-27 11:03:59.421 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8855. 2017-07-27 11:03:59.422 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  8856. 2017-07-27 11:03:59.423 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2154(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8857. 2017-07-27 11:03:59.435 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  8858. 2017-07-27 11:03:59.449 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  8859. 2017-07-27 11:03:59.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8860. 2017-07-27 11:03:59.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2154(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8861. 2017-07-27 11:03:59.616 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8862. 2017-07-27 11:03:59.617 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2154(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8863. 2017-07-27 11:03:59.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8864. 2017-07-27 11:03:59.706 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8865. 2017-07-27 11:05:02.278 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8866. 2017-07-27 11:05:02.286 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8867. 2017-07-27 11:05:02.287 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8868. 2017-07-27 11:05:02.291 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8869. 2017-07-27 11:05:02.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8870. 2017-07-27 11:05:02.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8871. 2017-07-27 11:05:02.315 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8872. 2017-07-27 11:05:02.315 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8873. 2017-07-27 11:05:02.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8874. 2017-07-27 11:05:02.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8875. 2017-07-27 11:05:02.319 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8876. 2017-07-27 11:05:02.319 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8877. 2017-07-27 11:05:02.338 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8878. 2017-07-27 11:05:02.342 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8879. 2017-07-27 11:05:02.345 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8880. 2017-07-27 11:05:02.346 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8881. 2017-07-27 11:05:02.362 |-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
  8882. 2017-07-27 11:05:02.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8883. 2017-07-27 11:05:02.366 |-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
  8884. 2017-07-27 11:05:02.366 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8885. 2017-07-27 11:05:02.369 |-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
  8886. 2017-07-27 11:05:02.369 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8887. 2017-07-27 11:05:02.370 |-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
  8888. 2017-07-27 11:05:02.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8889. 2017-07-27 11:05:02.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8890. 2017-07-27 11:05:02.392 |-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=?)
  8891. 2017-07-27 11:05:02.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8892. 2017-07-27 11:05:02.394 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8893. 2017-07-27 11:05:02.395 |-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=?)
  8894. 2017-07-27 11:05:02.395 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8895. 2017-07-27 11:05:02.395 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8896. 2017-07-27 11:05:02.396 |-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=?)
  8897. 2017-07-27 11:05:02.396 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8898. 2017-07-27 11:05:02.397 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8899. 2017-07-27 11:05:02.398 |-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=?)
  8900. 2017-07-27 11:05:02.398 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8901. 2017-07-27 11:05:02.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8902. 2017-07-27 11:05:02.421 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8903. 2017-07-27 11:05:02.422 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8904. 2017-07-27 11:05:02.426 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8905. 2017-07-27 11:05:02.427 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8906. 2017-07-27 11:05:02.428 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8907. 2017-07-27 11:05:02.428 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8908. 2017-07-27 11:05:02.429 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8909. 2017-07-27 11:05:02.430 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8910. 2017-07-27 11:05:02.430 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8911. 2017-07-27 11:05:02.431 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8912. 2017-07-27 11:05:02.438 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  8913. 2017-07-27 11:05:02.439 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2171(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8914. 2017-07-27 11:05:02.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  8915. 2017-07-27 11:05:02.444 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2171(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2171(Long)
  8916. 2017-07-27 11:05:02.430 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8917. 2017-07-27 11:05:02.471 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 1
  8918. 2017-07-27 11:05:02.478 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 1
  8919. 2017-07-27 11:05:02.743 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8920. 2017-07-27 11:05:02.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2171(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8921. 2017-07-27 11:05:02.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  8922. 2017-07-27 11:05:02.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2171(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8923. 2017-07-27 11:05:02.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8924. 2017-07-27 11:05:02.874 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  8925. 2017-07-27 11:05:02.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  8926. 2017-07-27 11:05:02.876 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL limit ?,?
  8927. 2017-07-27 11:05:02.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2171(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  8928. 2017-07-27 11:05:02.876 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2171(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  8929. 2017-07-27 11:05:02.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 1
  8930. 2017-07-27 11:05:02.965 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 1
  8931. 2017-07-27 11:06:05.395 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8932. 2017-07-27 11:06:05.422 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8933. 2017-07-27 11:06:05.422 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8934. 2017-07-27 11:06:05.461 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8935. 2017-07-27 11:06:05.485 |-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
  8936. 2017-07-27 11:06:05.486 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8937. 2017-07-27 11:06:05.528 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8938. 2017-07-27 11:06:05.530 |-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=?)
  8939. 2017-07-27 11:06:05.530 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8940. 2017-07-27 11:06:05.566 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8941. 2017-07-27 11:06:05.570 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8942. 2017-07-27 11:06:05.572 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8943. 2017-07-27 11:06:05.576 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  8944. 2017-07-27 11:06:05.576 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8945. 2017-07-27 11:06:05.606 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8946. 2017-07-27 11:06:05.609 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  8947. 2017-07-27 11:06:05.610 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8948. 2017-07-27 11:06:05.649 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8949. 2017-07-27 11:06:05.651 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  8950. 2017-07-27 11:06:05.652 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  8951. 2017-07-27 11:06:05.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 248
  8952. 2017-07-27 11:06:06.243 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8953. 2017-07-27 11:06:06.245 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8954. 2017-07-27 11:06:06.246 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8955. 2017-07-27 11:06:06.274 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8956. 2017-07-27 11:06:06.275 |-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
  8957. 2017-07-27 11:06:06.275 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8958. 2017-07-27 11:06:06.302 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8959. 2017-07-27 11:06:06.303 |-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=?)
  8960. 2017-07-27 11:06:06.304 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8961. 2017-07-27 11:06:06.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8962. 2017-07-27 11:06:06.334 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8963. 2017-07-27 11:06:06.336 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8964. 2017-07-27 11:06:06.342 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8965. 2017-07-27 11:06:06.343 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8966. 2017-07-27 11:06:06.374 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  8967. 2017-07-27 11:06:06.410 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8968. 2017-07-27 11:06:06.410 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8969. 2017-07-27 11:06:06.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8970. 2017-07-27 11:06:06.412 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8971. 2017-07-27 11:06:06.413 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8972. 2017-07-27 11:06:06.438 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8973. 2017-07-27 11:06:06.438 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  8974. 2017-07-27 11:06:06.438 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8975. 2017-07-27 11:06:06.438 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8976. 2017-07-27 11:06:06.440 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8977. 2017-07-27 11:06:06.441 |-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
  8978. 2017-07-27 11:06:06.441 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8979. 2017-07-27 11:06:06.465 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8980. 2017-07-27 11:06:06.465 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8981. 2017-07-27 11:06:06.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8982. 2017-07-27 11:06:06.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=?)
  8983. 2017-07-27 11:06:06.467 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8984. 2017-07-27 11:06:06.489 |-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
  8985. 2017-07-27 11:06:06.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8986. 2017-07-27 11:06:06.490 |-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
  8987. 2017-07-27 11:06:06.491 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8988. 2017-07-27 11:06:06.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8989. 2017-07-27 11:06:06.495 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8990. 2017-07-27 11:06:06.496 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8991. 2017-07-27 11:06:06.500 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  8992. 2017-07-27 11:06:06.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  8993. 2017-07-27 11:06:06.517 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8994. 2017-07-27 11:06:06.517 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  8995. 2017-07-27 11:06:06.518 |-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=?)
  8996. 2017-07-27 11:06:06.518 |-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=?)
  8997. 2017-07-27 11:06:06.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8998. 2017-07-27 11:06:06.518 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8999. 2017-07-27 11:06:06.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  9000. 2017-07-27 11:06:06.543 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9001. 2017-07-27 11:06:06.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9002. 2017-07-27 11:06:06.549 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9003. 2017-07-27 11:06:06.549 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9004. 2017-07-27 11:06:06.551 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9005. 2017-07-27 11:06:06.554 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  9006. 2017-07-27 11:06:06.555 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9007. 2017-07-27 11:06:06.556 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9008. 2017-07-27 11:06:06.581 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  9009. 2017-07-27 11:06:06.661 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9010. 2017-07-27 11:06:06.662 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9011. 2017-07-27 11:06:06.791 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9012. 2017-07-27 11:06:07.161 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9013. 2017-07-27 11:06:07.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9014. 2017-07-27 11:06:07.165 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9015. 2017-07-27 11:06:07.192 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9016. 2017-07-27 11:06:07.194 |-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
  9017. 2017-07-27 11:06:07.194 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9018. 2017-07-27 11:06:07.222 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9019. 2017-07-27 11:06:07.223 |-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=?)
  9020. 2017-07-27 11:06:07.224 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9021. 2017-07-27 11:06:07.249 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9022. 2017-07-27 11:06:07.253 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9023. 2017-07-27 11:06:07.254 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9024. 2017-07-27 11:06:07.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  9025. 2017-07-27 11:06:07.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9026. 2017-07-27 11:06:07.287 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9027. 2017-07-27 11:06:07.290 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  9028. 2017-07-27 11:06:07.290 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9029. 2017-07-27 11:06:07.327 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9030. 2017-07-27 11:06:07.330 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  9031. 2017-07-27 11:06:07.331 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9032. 2017-07-27 11:06:07.364 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 248
  9033. 2017-07-27 11:10:03.454 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9034. 2017-07-27 11:10:03.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9035. 2017-07-27 11:10:03.482 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9036. 2017-07-27 11:10:03.508 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9037. 2017-07-27 11:10:03.532 |-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
  9038. 2017-07-27 11:10:03.533 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9039. 2017-07-27 11:10:03.561 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9040. 2017-07-27 11:10:03.563 |-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=?)
  9041. 2017-07-27 11:10:03.563 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9042. 2017-07-27 11:10:03.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9043. 2017-07-27 11:10:03.592 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9044. 2017-07-27 11:10:03.595 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9045. 2017-07-27 11:10:03.602 |-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
  9046. 2017-07-27 11:10:03.603 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  9047. 2017-07-27 11:10:03.632 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  9048. 2017-07-27 11:10:03.660 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9049. 2017-07-27 11:10:03.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9050. 2017-07-27 11:10:03.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9051. 2017-07-27 11:10:03.689 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9052. 2017-07-27 11:10:03.690 |-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
  9053. 2017-07-27 11:10:03.691 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9054. 2017-07-27 11:10:03.718 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9055. 2017-07-27 11:10:03.719 |-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=?)
  9056. 2017-07-27 11:10:03.720 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9057. 2017-07-27 11:10:03.745 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9058. 2017-07-27 11:10:03.748 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9059. 2017-07-27 11:10:03.750 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9060. 2017-07-27 11:10:03.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9061. 2017-07-27 11:10:03.754 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9062. 2017-07-27 11:10:03.840 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9063. 2017-07-27 11:10:03.909 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9064. 2017-07-27 11:10:03.910 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9065. 2017-07-27 11:10:03.911 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9066. 2017-07-27 11:10:03.938 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9067. 2017-07-27 11:10:03.939 |-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
  9068. 2017-07-27 11:10:03.939 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9069. 2017-07-27 11:10:03.967 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9070. 2017-07-27 11:10:03.968 |-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-07-27 11:10:03.969 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9072. 2017-07-27 11:10:03.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9073. 2017-07-27 11:10:03.996 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9074. 2017-07-27 11:10:03.998 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9075. 2017-07-27 11:10:04.003 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9076. 2017-07-27 11:10:04.004 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9077. 2017-07-27 11:10:04.082 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9078. 2017-07-27 11:10:04.089 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  9079. 2017-07-27 11:10:04.090 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9080. 2017-07-27 11:10:04.324 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1292
  9081. 2017-07-27 11:10:06.987 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9082. 2017-07-27 11:10:06.988 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9083. 2017-07-27 11:10:06.989 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9084. 2017-07-27 11:10:07.016 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9085. 2017-07-27 11:10:07.017 |-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
  9086. 2017-07-27 11:10:07.017 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9087. 2017-07-27 11:10:07.044 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9088. 2017-07-27 11:10:07.045 |-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=?)
  9089. 2017-07-27 11:10:07.046 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9090. 2017-07-27 11:10:07.071 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9091. 2017-07-27 11:10:07.074 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9092. 2017-07-27 11:10:07.076 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9093. 2017-07-27 11:10:07.079 |-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
  9094. 2017-07-27 11:10:07.079 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  9095. 2017-07-27 11:10:07.107 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  9096. 2017-07-27 11:10:07.116 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9097. 2017-07-27 11:10:07.118 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9098. 2017-07-27 11:10:07.119 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9099. 2017-07-27 11:10:07.146 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9100. 2017-07-27 11:10:07.146 |-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
  9101. 2017-07-27 11:10:07.147 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9102. 2017-07-27 11:10:07.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9103. 2017-07-27 11:10:07.175 |-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=?)
  9104. 2017-07-27 11:10:07.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9105. 2017-07-27 11:10:07.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9106. 2017-07-27 11:10:07.207 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9107. 2017-07-27 11:10:07.210 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9108. 2017-07-27 11:10:07.215 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9109. 2017-07-27 11:10:07.216 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9110. 2017-07-27 11:10:07.359 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9111. 2017-07-27 11:10:07.432 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9112. 2017-07-27 11:10:07.434 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9113. 2017-07-27 11:10:07.435 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9114. 2017-07-27 11:10:07.479 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9115. 2017-07-27 11:10:07.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
  9116. 2017-07-27 11:10:07.481 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9117. 2017-07-27 11:10:07.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9118. 2017-07-27 11:10:07.530 |-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=?)
  9119. 2017-07-27 11:10:07.530 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9120. 2017-07-27 11:10:07.577 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9121. 2017-07-27 11:10:07.580 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9122. 2017-07-27 11:10:07.582 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9123. 2017-07-27 11:10:07.586 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9124. 2017-07-27 11:10:07.587 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9125. 2017-07-27 11:10:07.723 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9126. 2017-07-27 11:10:07.726 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type
  9127. 2017-07-27 11:10:07.727 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9128. 2017-07-27 11:10:07.884 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1277
  9129. 2017-07-27 11:10:08.213 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9130. 2017-07-27 11:10:08.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9131. 2017-07-27 11:10:08.216 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9132. 2017-07-27 11:10:08.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9133. 2017-07-27 11:10:08.246 |-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
  9134. 2017-07-27 11:10:08.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9135. 2017-07-27 11:10:08.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9136. 2017-07-27 11:10:08.276 |-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=?)
  9137. 2017-07-27 11:10:08.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9138. 2017-07-27 11:10:08.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9139. 2017-07-27 11:10:08.304 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9140. 2017-07-27 11:10:08.306 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9141. 2017-07-27 11:10:08.308 |-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
  9142. 2017-07-27 11:10:08.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  9143. 2017-07-27 11:10:08.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  9144. 2017-07-27 11:10:08.345 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9145. 2017-07-27 11:10:08.347 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9146. 2017-07-27 11:10:08.347 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9147. 2017-07-27 11:10:08.375 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9148. 2017-07-27 11:10:08.376 |-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
  9149. 2017-07-27 11:10:08.377 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9150. 2017-07-27 11:10:08.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9151. 2017-07-27 11:10:08.406 |-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=?)
  9152. 2017-07-27 11:10:08.407 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9153. 2017-07-27 11:10:08.433 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9154. 2017-07-27 11:10:08.438 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9155. 2017-07-27 11:10:08.440 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9156. 2017-07-27 11:10:08.444 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9157. 2017-07-27 11:10:08.445 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9158. 2017-07-27 11:10:08.553 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9159. 2017-07-27 11:10:08.617 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9160. 2017-07-27 11:10:08.619 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9161. 2017-07-27 11:10:08.620 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9162. 2017-07-27 11:10:08.647 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9163. 2017-07-27 11:10:08.648 |-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
  9164. 2017-07-27 11:10:08.649 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9165. 2017-07-27 11:10:08.676 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9166. 2017-07-27 11:10:08.677 |-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=?)
  9167. 2017-07-27 11:10:08.677 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9168. 2017-07-27 11:10:08.708 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9169. 2017-07-27 11:10:08.711 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9170. 2017-07-27 11:10:08.712 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9171. 2017-07-27 11:10:08.716 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9172. 2017-07-27 11:10:08.716 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9173. 2017-07-27 11:10:08.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9174. 2017-07-27 11:10:08.818 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class_unregular t LEFT JOIN check_task ct ON t.id = ct.user_class_unregular_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date
  9175. 2017-07-27 11:10:08.818 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9176. 2017-07-27 11:10:09.552 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9177. 2017-07-27 11:10:09.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9178. 2017-07-27 11:10:09.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9179. 2017-07-27 11:10:09.582 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9180. 2017-07-27 11:10:10.861 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9181. 2017-07-27 11:10:10.862 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9182. 2017-07-27 11:10:10.862 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9183. 2017-07-27 11:10:10.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9184. 2017-07-27 11:10:11.862 |-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
  9185. 2017-07-27 11:10:11.863 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9186. 2017-07-27 11:10:11.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9187. 2017-07-27 11:10:11.894 |-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
  9188. 2017-07-27 11:10:11.895 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9189. 2017-07-27 11:10:11.925 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9190. 2017-07-27 11:10:11.926 |-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=?)
  9191. 2017-07-27 11:10:11.926 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9192. 2017-07-27 11:10:11.953 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9193. 2017-07-27 11:10:11.953 |-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=?)
  9194. 2017-07-27 11:10:11.954 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9195. 2017-07-27 11:10:11.957 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9196. 2017-07-27 11:10:11.959 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9197. 2017-07-27 11:10:11.963 |-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
  9198. 2017-07-27 11:10:11.964 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  9199. 2017-07-27 11:10:11.980 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9200. 2017-07-27 11:10:11.985 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9201. 2017-07-27 11:10:12.002 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  9202. 2017-07-27 11:10:12.003 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9203. 2017-07-27 11:10:12.009 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  9204. 2017-07-27 11:10:12.010 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9205. 2017-07-27 11:10:12.017 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9206. 2017-07-27 11:10:12.018 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9207. 2017-07-27 11:10:12.018 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9208. 2017-07-27 11:10:12.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9209. 2017-07-27 11:10:12.048 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 360
  9210. 2017-07-27 11:10:12.048 |-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
  9211. 2017-07-27 11:10:12.049 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9212. 2017-07-27 11:10:12.079 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9213. 2017-07-27 11:10:12.080 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  9214. 2017-07-27 11:10:12.080 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9215. 2017-07-27 11:10:12.116 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 534
  9216. 2017-07-27 11:10:12.116 |-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=?)
  9217. 2017-07-27 11:10:12.117 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9218. 2017-07-27 11:10:12.118 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9219. 2017-07-27 11:10:12.119 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9220. 2017-07-27 11:10:12.143 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9221. 2017-07-27 11:10:12.145 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9222. 2017-07-27 11:10:12.146 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9223. 2017-07-27 11:10:12.206 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9224. 2017-07-27 11:10:12.209 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  9225. 2017-07-27 11:10:12.210 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9226. 2017-07-27 11:10:12.254 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 13
  9227. 2017-07-27 11:10:12.263 |-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
  9228. 2017-07-27 11:10:12.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9229. 2017-07-27 11:10:12.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9230. 2017-07-27 11:10:13.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9231. 2017-07-27 11:10:13.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9232. 2017-07-27 11:10:13.241 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  9233. 2017-07-27 11:10:16.171 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9234. 2017-07-27 11:10:16.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9235. 2017-07-27 11:10:16.175 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9236. 2017-07-27 11:10:16.204 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9237. 2017-07-27 11:10:16.205 |-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
  9238. 2017-07-27 11:10:16.205 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9239. 2017-07-27 11:10:16.234 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9240. 2017-07-27 11:10:16.235 |-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=?)
  9241. 2017-07-27 11:10:16.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9242. 2017-07-27 11:10:16.261 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9243. 2017-07-27 11:10:16.265 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9244. 2017-07-27 11:10:16.267 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9245. 2017-07-27 11:10:16.271 |-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 parentid = ?
  9246. 2017-07-27 11:10:16.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 31(Integer)
  9247. 2017-07-27 11:10:16.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 6
  9248. 2017-07-27 11:10:22.045 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9249. 2017-07-27 11:10:22.046 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9250. 2017-07-27 11:10:22.047 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9251. 2017-07-27 11:10:22.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9252. 2017-07-27 11:10:22.077 |-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
  9253. 2017-07-27 11:10:22.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9254. 2017-07-27 11:10:22.107 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9255. 2017-07-27 11:10:22.108 |-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=?)
  9256. 2017-07-27 11:10:22.109 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9257. 2017-07-27 11:10:22.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9258. 2017-07-27 11:10:22.139 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9259. 2017-07-27 11:10:22.141 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9260. 2017-07-27 11:10:22.147 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? AND t.checked_dept =? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  9261. 2017-07-27 11:10:22.148 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 40(Long)
  9262. 2017-07-27 11:10:22.175 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 16
  9263. 2017-07-27 11:10:22.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept =? GROUP BY t.checked_person
  9264. 2017-07-27 11:10:22.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 40(Long)
  9265. 2017-07-27 11:10:22.209 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 24
  9266. 2017-07-27 11:10:22.213 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9267. 2017-07-27 11:10:22.214 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 40(Integer), 31(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9268. 2017-07-27 11:10:22.246 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 29
  9269. 2017-07-27 11:10:22.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  9270. 2017-07-27 11:10:22.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9271. 2017-07-27 11:10:22.293 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 13
  9272. 2017-07-27 11:10:22.294 |-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
  9273. 2017-07-27 11:10:22.294 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9274. 2017-07-27 11:10:22.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9275. 2017-07-27 11:10:34.471 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9276. 2017-07-27 11:10:34.472 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9277. 2017-07-27 11:10:34.473 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9278. 2017-07-27 11:10:34.501 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9279. 2017-07-27 11:10:34.502 |-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
  9280. 2017-07-27 11:10:34.503 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9281. 2017-07-27 11:10:34.532 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9282. 2017-07-27 11:10:34.534 |-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=?)
  9283. 2017-07-27 11:10:34.534 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9284. 2017-07-27 11:10:34.560 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9285. 2017-07-27 11:10:34.564 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9286. 2017-07-27 11:10:34.566 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9287. 2017-07-27 11:10:34.573 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time <= ? AND t.checked_dept =? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  9288. 2017-07-27 11:10:34.575 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-05-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 40(Long)
  9289. 2017-07-27 11:10:34.611 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 17
  9290. 2017-07-27 11:10:34.613 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept =? GROUP BY t.checked_person
  9291. 2017-07-27 11:10:34.614 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-05-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 40(Long)
  9292. 2017-07-27 11:10:34.644 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 26
  9293. 2017-07-27 11:10:34.647 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9294. 2017-07-27 11:10:34.647 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 40(Integer), 31(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9295. 2017-07-27 11:10:34.685 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 29
  9296. 2017-07-27 11:10:34.686 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT * from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time <= ? and a.check_status !=22
  9297. 2017-07-27 11:10:34.687 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-05-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp)
  9298. 2017-07-27 11:10:34.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 0
  9299. 2017-07-27 11:10:34.725 |-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
  9300. 2017-07-27 11:10:34.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9301. 2017-07-27 11:10:34.753 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9302. 2017-07-27 11:10:38.333 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| <== Total: 16409
  9303. 2017-07-27 11:10:38.342 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id
  9304. 2017-07-27 11:10:38.342 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9305. 2017-07-27 11:10:38.469 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| <== Total: 521
  9306. 2017-07-27 11:12:43.924 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9307. 2017-07-27 11:12:43.954 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9308. 2017-07-27 11:12:43.954 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9309. 2017-07-27 11:12:43.982 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9310. 2017-07-27 11:12:44.009 |-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
  9311. 2017-07-27 11:12:44.009 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9312. 2017-07-27 11:12:44.038 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9313. 2017-07-27 11:12:44.039 |-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=?)
  9314. 2017-07-27 11:12:44.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9315. 2017-07-27 11:12:44.065 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9316. 2017-07-27 11:12:44.070 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9317. 2017-07-27 11:12:44.072 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9318. 2017-07-27 11:12:44.076 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9319. 2017-07-27 11:12:44.076 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9320. 2017-07-27 11:12:44.107 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  9321. 2017-07-27 11:12:44.140 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9322. 2017-07-27 11:12:44.141 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9323. 2017-07-27 11:12:44.143 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9324. 2017-07-27 11:12:44.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9325. 2017-07-27 11:12:44.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9326. 2017-07-27 11:12:44.169 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9327. 2017-07-27 11:12:44.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9328. 2017-07-27 11:12:44.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9329. 2017-07-27 11:12:44.172 |-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
  9330. 2017-07-27 11:12:44.172 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9331. 2017-07-27 11:12:44.197 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9332. 2017-07-27 11:12:44.199 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9333. 2017-07-27 11:12:44.200 |-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=?)
  9334. 2017-07-27 11:12:44.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9335. 2017-07-27 11:12:44.221 |-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
  9336. 2017-07-27 11:12:44.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9337. 2017-07-27 11:12:44.225 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9338. 2017-07-27 11:12:44.229 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9339. 2017-07-27 11:12:44.230 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9340. 2017-07-27 11:12:44.250 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9341. 2017-07-27 11:12:44.251 |-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=?)
  9342. 2017-07-27 11:12:44.251 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9343. 2017-07-27 11:12:44.277 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9344. 2017-07-27 11:12:44.281 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9345. 2017-07-27 11:12:44.282 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9346. 2017-07-27 11:12:44.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  9347. 2017-07-27 11:12:44.287 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  9348. 2017-07-27 11:12:44.319 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  9349. 2017-07-27 11:12:44.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9350. 2017-07-27 11:12:44.337 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9351. 2017-07-27 11:12:44.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9352. 2017-07-27 11:12:45.147 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9353. 2017-07-27 11:12:45.148 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9354. 2017-07-27 11:12:45.175 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9355. 2017-07-27 11:12:45.176 |-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
  9356. 2017-07-27 11:12:45.177 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9357. 2017-07-27 11:12:45.205 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9358. 2017-07-27 11:12:45.206 |-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=?)
  9359. 2017-07-27 11:12:45.206 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9360. 2017-07-27 11:12:45.232 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9361. 2017-07-27 11:12:45.236 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9362. 2017-07-27 11:12:45.237 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9363. 2017-07-27 11:12:45.241 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  9364. 2017-07-27 11:12:45.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9365. 2017-07-27 11:12:45.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  9366. 2017-07-27 11:13:02.900 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9367. 2017-07-27 11:13:02.902 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9368. 2017-07-27 11:13:02.903 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9369. 2017-07-27 11:13:02.932 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9370. 2017-07-27 11:13:02.933 |-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
  9371. 2017-07-27 11:13:02.933 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9372. 2017-07-27 11:13:02.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9373. 2017-07-27 11:13:02.962 |-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=?)
  9374. 2017-07-27 11:13:02.962 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9375. 2017-07-27 11:13:02.988 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9376. 2017-07-27 11:13:02.993 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9377. 2017-07-27 11:13:02.995 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9378. 2017-07-27 11:13:03.000 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9379. 2017-07-27 11:13:03.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 40(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9380. 2017-07-27 11:13:03.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 29
  9381. 2017-07-27 11:13:03.071 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9382. 2017-07-27 11:13:03.072 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9383. 2017-07-27 11:13:03.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9384. 2017-07-27 11:13:03.073 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9385. 2017-07-27 11:13:03.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9386. 2017-07-27 11:13:03.074 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9387. 2017-07-27 11:13:03.074 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9388. 2017-07-27 11:13:03.075 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9389. 2017-07-27 11:13:03.076 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9390. 2017-07-27 11:13:03.076 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9391. 2017-07-27 11:13:03.102 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9392. 2017-07-27 11:13:03.102 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9393. 2017-07-27 11:13:03.102 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9394. 2017-07-27 11:13:03.103 |-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
  9395. 2017-07-27 11:13:03.103 |-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
  9396. 2017-07-27 11:13:03.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9397. 2017-07-27 11:13:03.104 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9398. 2017-07-27 11:13:03.128 |-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
  9399. 2017-07-27 11:13:03.129 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9400. 2017-07-27 11:13:03.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9401. 2017-07-27 11:13:03.131 |-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=?)
  9402. 2017-07-27 11:13:03.132 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9403. 2017-07-27 11:13:03.133 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9404. 2017-07-27 11:13:03.133 |-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=?)
  9405. 2017-07-27 11:13:03.134 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9406. 2017-07-27 11:13:03.156 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9407. 2017-07-27 11:13:03.157 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9408. 2017-07-27 11:13:03.158 |-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=?)
  9409. 2017-07-27 11:13:03.159 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9410. 2017-07-27 11:13:03.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9411. 2017-07-27 11:13:03.160 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9412. 2017-07-27 11:13:03.161 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9413. 2017-07-27 11:13:03.162 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9414. 2017-07-27 11:13:03.164 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9415. 2017-07-27 11:13:03.165 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  9416. 2017-07-27 11:13:03.166 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2490(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9417. 2017-07-27 11:13:03.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9418. 2017-07-27 11:13:03.190 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9419. 2017-07-27 11:13:03.193 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  9420. 2017-07-27 11:13:03.195 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9421. 2017-07-27 11:13:03.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  9422. 2017-07-27 11:13:03.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2490(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2490(Long)
  9423. 2017-07-27 11:13:03.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  9424. 2017-07-27 11:13:03.296 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9425. 2017-07-27 11:13:03.297 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2490(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9426. 2017-07-27 11:13:03.383 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9427. 2017-07-27 11:13:04.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9428. 2017-07-27 11:13:04.077 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9429. 2017-07-27 11:13:04.104 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9430. 2017-07-27 11:13:04.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
  9431. 2017-07-27 11:13:04.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9432. 2017-07-27 11:13:04.134 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9433. 2017-07-27 11:13:04.134 |-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=?)
  9434. 2017-07-27 11:13:04.135 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9435. 2017-07-27 11:13:04.160 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9436. 2017-07-27 11:13:04.166 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9437. 2017-07-27 11:13:04.168 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9438. 2017-07-27 11:13:04.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9439. 2017-07-27 11:13:04.276 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2490(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9440. 2017-07-27 11:13:04.359 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9441. 2017-07-27 11:14:26.430 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9442. 2017-07-27 11:14:26.433 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9443. 2017-07-27 11:14:26.437 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9444. 2017-07-27 11:14:26.437 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9445. 2017-07-27 11:14:26.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9446. 2017-07-27 11:14:26.461 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9447. 2017-07-27 11:14:26.461 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9448. 2017-07-27 11:14:26.461 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9449. 2017-07-27 11:14:26.464 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9450. 2017-07-27 11:14:26.464 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9451. 2017-07-27 11:14:26.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9452. 2017-07-27 11:14:26.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9453. 2017-07-27 11:14:26.488 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9454. 2017-07-27 11:14:26.488 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9455. 2017-07-27 11:14:26.492 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9456. 2017-07-27 11:14:26.492 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9457. 2017-07-27 11:14:26.513 |-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
  9458. 2017-07-27 11:14:26.514 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9459. 2017-07-27 11:14:26.514 |-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
  9460. 2017-07-27 11:14:26.514 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9461. 2017-07-27 11:14:26.517 |-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
  9462. 2017-07-27 11:14:26.518 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9463. 2017-07-27 11:14:26.543 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9464. 2017-07-27 11:14:26.543 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9465. 2017-07-27 11:14:26.544 |-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=?)
  9466. 2017-07-27 11:14:26.544 |-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=?)
  9467. 2017-07-27 11:14:26.544 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9468. 2017-07-27 11:14:26.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9469. 2017-07-27 11:14:26.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9470. 2017-07-27 11:14:26.545 |-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
  9471. 2017-07-27 11:14:26.546 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9472. 2017-07-27 11:14:26.570 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9473. 2017-07-27 11:14:26.570 |-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=?)
  9474. 2017-07-27 11:14:26.570 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9475. 2017-07-27 11:14:26.571 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9476. 2017-07-27 11:14:26.574 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9477. 2017-07-27 11:14:26.574 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9478. 2017-07-27 11:14:26.574 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9479. 2017-07-27 11:14:26.575 |-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=?)
  9480. 2017-07-27 11:14:26.575 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9481. 2017-07-27 11:14:26.575 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9482. 2017-07-27 11:14:26.576 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9483. 2017-07-27 11:14:26.578 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  9484. 2017-07-27 11:14:26.579 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2490(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9485. 2017-07-27 11:14:26.597 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9486. 2017-07-27 11:14:26.597 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  9487. 2017-07-27 11:14:26.598 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2490(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2490(Long)
  9488. 2017-07-27 11:14:26.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9489. 2017-07-27 11:14:26.600 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9490. 2017-07-27 11:14:26.601 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9491. 2017-07-27 11:14:26.602 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9492. 2017-07-27 11:14:26.603 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9493. 2017-07-27 11:14:26.607 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  9494. 2017-07-27 11:14:26.627 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  9495. 2017-07-27 11:14:26.744 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9496. 2017-07-27 11:14:26.745 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2490(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9497. 2017-07-27 11:14:26.750 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9498. 2017-07-27 11:14:26.750 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2490(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9499. 2017-07-27 11:14:26.833 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9500. 2017-07-27 11:14:26.838 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9501. 2017-07-27 11:14:30.854 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9502. 2017-07-27 11:14:30.857 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9503. 2017-07-27 11:14:30.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9504. 2017-07-27 11:14:30.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9505. 2017-07-27 11:14:30.860 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9506. 2017-07-27 11:14:30.860 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9507. 2017-07-27 11:14:30.861 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9508. 2017-07-27 11:14:30.862 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9509. 2017-07-27 11:14:30.862 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9510. 2017-07-27 11:14:30.865 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9511. 2017-07-27 11:14:30.867 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9512. 2017-07-27 11:14:30.867 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9513. 2017-07-27 11:14:30.887 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9514. 2017-07-27 11:14:30.887 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9515. 2017-07-27 11:14:30.888 |-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
  9516. 2017-07-27 11:14:30.888 |-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
  9517. 2017-07-27 11:14:30.888 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9518. 2017-07-27 11:14:30.888 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9519. 2017-07-27 11:14:30.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9520. 2017-07-27 11:14:30.889 |-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
  9521. 2017-07-27 11:14:30.889 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9522. 2017-07-27 11:14:30.900 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9523. 2017-07-27 11:14:30.901 |-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
  9524. 2017-07-27 11:14:30.901 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9525. 2017-07-27 11:14:30.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9526. 2017-07-27 11:14:30.924 |-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=?)
  9527. 2017-07-27 11:14:30.924 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9528. 2017-07-27 11:14:30.924 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9529. 2017-07-27 11:14:30.925 |-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=?)
  9530. 2017-07-27 11:14:30.926 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9531. 2017-07-27 11:14:30.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9532. 2017-07-27 11:14:30.931 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9533. 2017-07-27 11:14:30.932 |-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=?)
  9534. 2017-07-27 11:14:30.933 |-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=?)
  9535. 2017-07-27 11:14:30.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9536. 2017-07-27 11:14:30.933 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9537. 2017-07-27 11:14:30.951 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9538. 2017-07-27 11:14:30.951 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9539. 2017-07-27 11:14:30.957 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9540. 2017-07-27 11:14:30.958 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9541. 2017-07-27 11:14:30.957 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9542. 2017-07-27 11:14:30.965 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9543. 2017-07-27 11:14:30.966 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9544. 2017-07-27 11:14:30.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9545. 2017-07-27 11:14:30.966 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9546. 2017-07-27 11:14:30.973 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9547. 2017-07-27 11:14:30.974 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  9548. 2017-07-27 11:14:30.975 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2496(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2496(Long)
  9549. 2017-07-27 11:14:30.985 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9550. 2017-07-27 11:14:30.987 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9551. 2017-07-27 11:14:30.990 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  9552. 2017-07-27 11:14:30.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2496(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9553. 2017-07-27 11:14:31.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 1
  9554. 2017-07-27 11:14:31.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  9555. 2017-07-27 11:14:31.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9556. 2017-07-27 11:14:31.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2496(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9557. 2017-07-27 11:14:31.133 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9558. 2017-07-27 11:14:31.133 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2496(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9559. 2017-07-27 11:14:31.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9560. 2017-07-27 11:14:31.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9561. 2017-07-27 11:14:44.065 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9562. 2017-07-27 11:14:44.069 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9563. 2017-07-27 11:14:44.069 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9564. 2017-07-27 11:14:44.070 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9565. 2017-07-27 11:14:44.071 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9566. 2017-07-27 11:14:44.072 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9567. 2017-07-27 11:14:44.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9568. 2017-07-27 11:14:44.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9569. 2017-07-27 11:14:44.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9570. 2017-07-27 11:14:44.073 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  9571. 2017-07-27 11:14:44.074 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9572. 2017-07-27 11:14:44.074 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9573. 2017-07-27 11:14:44.119 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9574. 2017-07-27 11:14:44.120 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9575. 2017-07-27 11:14:44.120 |-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-07-27 11:14:44.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9577. 2017-07-27 11:14:44.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
  9578. 2017-07-27 11:14:44.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9579. 2017-07-27 11:14:44.122 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9580. 2017-07-27 11:14:44.122 |-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
  9581. 2017-07-27 11:14:44.122 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9582. 2017-07-27 11:14:44.123 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9583. 2017-07-27 11:14:44.124 |-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
  9584. 2017-07-27 11:14:44.124 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9585. 2017-07-27 11:14:44.148 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9586. 2017-07-27 11:14:44.148 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9587. 2017-07-27 11:14:44.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=?)
  9588. 2017-07-27 11:14:44.148 |-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=?)
  9589. 2017-07-27 11:14:44.149 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9590. 2017-07-27 11:14:44.149 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9591. 2017-07-27 11:14:44.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9592. 2017-07-27 11:14:44.151 |-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=?)
  9593. 2017-07-27 11:14:44.152 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  9594. 2017-07-27 11:14:44.152 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9595. 2017-07-27 11:14:44.153 |-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=?)
  9596. 2017-07-27 11:14:44.153 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9597. 2017-07-27 11:14:44.174 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9598. 2017-07-27 11:14:44.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9599. 2017-07-27 11:14:44.180 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9600. 2017-07-27 11:14:44.180 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9601. 2017-07-27 11:14:44.182 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9602. 2017-07-27 11:14:44.183 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9603. 2017-07-27 11:14:44.184 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9604. 2017-07-27 11:14:44.184 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9605. 2017-07-27 11:14:44.185 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9606. 2017-07-27 11:14:44.187 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9607. 2017-07-27 11:14:44.188 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  9608. 2017-07-27 11:14:44.189 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2496(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2496(Long)
  9609. 2017-07-27 11:14:44.190 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9610. 2017-07-27 11:14:44.192 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9611. 2017-07-27 11:14:44.196 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id
  9612. 2017-07-27 11:14:44.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2496(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9613. 2017-07-27 11:14:44.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 1
  9614. 2017-07-27 11:14:44.224 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  9615. 2017-07-27 11:14:44.368 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9616. 2017-07-27 11:14:44.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2496(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9617. 2017-07-27 11:14:44.372 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? AND cs.check_item_score IS NOT NULL
  9618. 2017-07-27 11:14:44.372 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2496(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  9619. 2017-07-27 11:14:44.455 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9620. 2017-07-27 11:14:44.459 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  9621. 2017-07-27 11:22:55.466 |-INFO [Thread-10] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63f0826a: startup date [Thu Jul 27 11:03:18 CST 2017]; root of context hierarchy
  9622. 2017-07-27 11:22:55.468 |-INFO [Thread-10] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  9623. 2017-07-27 11:22:55.470 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  9624. 2017-07-27 11:22:55.472 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  9625. 2017-07-27 11:22:55.473 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  9626. 2017-07-27 11:22:55.473 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  9627. 2017-07-27 11:22:55.490 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  9628. 2017-07-27 11:22:55.494 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  9629. 2017-07-27 11:22:56.106 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 10100 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  9630. 2017-07-27 11:22:56.107 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  9631. 2017-07-27 11:22:56.109 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6579e330: startup date [Thu Jul 27 11:22:56 CST 2017]; root of context hierarchy
  9632. 2017-07-27 11:22:57.339 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  9633. 2017-07-27 11:22:57.655 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$434800ac] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9634. 2017-07-27 11:22:57.667 |-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$$dbf5c8e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9635. 2017-07-27 11:22:57.671 |-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)
  9636. 2017-07-27 11:22:57.673 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@4c281250' 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)
  9637. 2017-07-27 11:22:57.677 |-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$$ca6b98] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9638. 2017-07-27 11:22:57.682 |-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)
  9639. 2017-07-27 11:22:57.722 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$2e8b74a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9640. 2017-07-27 11:22:57.772 |-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)
  9641. 2017-07-27 11:22:57.774 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$8c5a36ca] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9642. 2017-07-27 11:22:58.008 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  9643. 2017-07-27 11:22:58.008 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  9644. 2017-07-27 11:22:58.009 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  9645. 2017-07-27 11:22:58.043 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  9646. 2017-07-27 11:22:58.044 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 1935 ms
  9647. 2017-07-27 11:22:58.605 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  9648. 2017-07-27 11:23:00.581 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  9649. 2017-07-27 11:23:00.582 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  9650. 2017-07-27 11:23:00.582 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  9651. 2017-07-27 11:23:00.582 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  9652. 2017-07-27 11:23:00.582 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  9653. 2017-07-27 11:23:00.582 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  9654. 2017-07-27 11:23:00.582 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  9655. 2017-07-27 11:23:00.583 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  9656. 2017-07-27 11:23:00.583 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  9657. 2017-07-27 11:23:00.583 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  9658. 2017-07-27 11:23:00.583 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  9659. 2017-07-27 11:23:00.583 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  9660. 2017-07-27 11:23:00.584 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  9661. 2017-07-27 11:23:00.584 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  9662. 2017-07-27 11:23:01.464 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  9663. 2017-07-27 11:23:01.465 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  9664. 2017-07-27 11:23:01.504 |-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@ee31613, org.springframework.security.web.context.SecurityContextPersistenceFilter@3ee45690, org.springframework.security.web.header.HeaderWriterFilter@e2f1f86, org.springframework.web.filter.CorsFilter@4cf31c11, org.springframework.security.web.authentication.logout.LogoutFilter@111f276d, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@59360c62, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7bb6654, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@719e9a0a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3084683c, org.springframework.security.web.session.SessionManagementFilter@6f71f216, org.springframework.security.web.access.ExceptionTranslationFilter@59ac1949, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@63d99f4b]
  9665. 2017-07-27 11:23:01.521 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@1491599c, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@b504a68, org.springframework.security.web.context.SecurityContextPersistenceFilter@42de2160, org.springframework.security.web.header.HeaderWriterFilter@3fddc752, org.springframework.security.web.authentication.logout.LogoutFilter@2043d7dd, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@27e0863b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1fcca61b, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4e7a15e7, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@521581f0, org.springframework.security.web.session.SessionManagementFilter@48f4d469, org.springframework.security.web.access.ExceptionTranslationFilter@1b48c0e0, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@322d6634]
  9666. 2017-07-27 11:23:01.585 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6579e330: startup date [Thu Jul 27 11:22:56 CST 2017]; root of context hierarchy
  9667. 2017-07-27 11:23:01.678 |-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)
  9668. 2017-07-27 11:23:01.678 |-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)
  9669. 2017-07-27 11:23:01.680 |-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)
  9670. 2017-07-27 11:23:01.681 |-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)
  9671. 2017-07-27 11:23:01.681 |-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)
  9672. 2017-07-27 11:23:01.681 |-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)
  9673. 2017-07-27 11:23:01.681 |-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)
  9674. 2017-07-27 11:23:01.682 |-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)
  9675. 2017-07-27 11:23:01.682 |-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)
  9676. 2017-07-27 11:23:01.683 |-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)
  9677. 2017-07-27 11:23:01.684 |-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)
  9678. 2017-07-27 11:23:01.684 |-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)
  9679. 2017-07-27 11:23:01.685 |-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)
  9680. 2017-07-27 11:23:01.685 |-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)
  9681. 2017-07-27 11:23:01.685 |-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)
  9682. 2017-07-27 11:23:01.685 |-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)
  9683. 2017-07-27 11:23:01.686 |-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)
  9684. 2017-07-27 11:23:01.686 |-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)
  9685. 2017-07-27 11:23:01.686 |-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()
  9686. 2017-07-27 11:23:01.687 |-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)
  9687. 2017-07-27 11:23:01.688 |-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)
  9688. 2017-07-27 11:23:01.688 |-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)
  9689. 2017-07-27 11:23:01.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()
  9690. 2017-07-27 11:23:01.688 |-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)
  9691. 2017-07-27 11:23:01.689 |-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)
  9692. 2017-07-27 11:23:01.691 |-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)
  9693. 2017-07-27 11:23:01.691 |-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)
  9694. 2017-07-27 11:23:01.692 |-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)
  9695. 2017-07-27 11:23:01.693 |-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)
  9696. 2017-07-27 11:23:01.693 |-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)
  9697. 2017-07-27 11:23:01.693 |-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)
  9698. 2017-07-27 11:23:01.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)
  9699. 2017-07-27 11:23:01.694 |-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)
  9700. 2017-07-27 11:23:01.694 |-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)
  9701. 2017-07-27 11:23:01.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>)
  9702. 2017-07-27 11:23:01.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)
  9703. 2017-07-27 11:23:01.695 |-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)
  9704. 2017-07-27 11:23:01.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)
  9705. 2017-07-27 11:23:01.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)
  9706. 2017-07-27 11:23:01.697 |-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)
  9707. 2017-07-27 11:23:01.697 |-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)
  9708. 2017-07-27 11:23:01.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)
  9709. 2017-07-27 11:23:01.698 |-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)
  9710. 2017-07-27 11:23:01.698 |-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)
  9711. 2017-07-27 11:23:01.700 |-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()
  9712. 2017-07-27 11:23:01.700 |-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)
  9713. 2017-07-27 11:23:01.700 |-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)
  9714. 2017-07-27 11:23:01.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
  9715. 2017-07-27 11:23:01.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)
  9716. 2017-07-27 11:23:01.701 |-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)
  9717. 2017-07-27 11:23:01.701 |-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)
  9718. 2017-07-27 11:23:01.702 |-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)
  9719. 2017-07-27 11:23:01.702 |-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()
  9720. 2017-07-27 11:23:01.702 |-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()
  9721. 2017-07-27 11:23:01.702 |-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)
  9722. 2017-07-27 11:23:01.703 |-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)
  9723. 2017-07-27 11:23:01.703 |-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)
  9724. 2017-07-27 11:23:01.704 |-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)
  9725. 2017-07-27 11:23:01.705 |-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.Integer,java.lang.Integer,java.lang.Integer)
  9726. 2017-07-27 11:23:01.705 |-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)
  9727. 2017-07-27 11:23:01.705 |-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)
  9728. 2017-07-27 11:23:01.705 |-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)
  9729. 2017-07-27 11:23:01.706 |-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.String,java.lang.String,java.lang.String,java.lang.String)
  9730. 2017-07-27 11:23:01.706 |-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)
  9731. 2017-07-27 11:23:01.707 |-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
  9732. 2017-07-27 11:23:01.707 |-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)
  9733. 2017-07-27 11:23:01.708 |-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)
  9734. 2017-07-27 11:23:01.708 |-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)
  9735. 2017-07-27 11:23:01.708 |-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)
  9736. 2017-07-27 11:23:01.709 |-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)
  9737. 2017-07-27 11:23:01.710 |-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
  9738. 2017-07-27 11:23:01.710 |-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)
  9739. 2017-07-27 11:23:01.712 |-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
  9740. 2017-07-27 11:23:01.712 |-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
  9741. 2017-07-27 11:23:01.713 |-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
  9742. 2017-07-27 11:23:01.713 |-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)
  9743. 2017-07-27 11:23:01.713 |-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)
  9744. 2017-07-27 11:23:01.713 |-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()
  9745. 2017-07-27 11:23:01.715 |-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
  9746. 2017-07-27 11:23:01.715 |-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)
  9747. 2017-07-27 11:23:01.716 |-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)
  9748. 2017-07-27 11:23:01.716 |-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)
  9749. 2017-07-27 11:23:01.716 |-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)
  9750. 2017-07-27 11:23:01.716 |-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)
  9751. 2017-07-27 11:23:01.717 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  9752. 2017-07-27 11:23:01.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)
  9753. 2017-07-27 11:23:01.717 |-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)
  9754. 2017-07-27 11:23:01.717 |-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)
  9755. 2017-07-27 11:23:01.718 |-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)
  9756. 2017-07-27 11:23:01.719 |-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)
  9757. 2017-07-27 11:23:01.719 |-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(com.xintong.visualinspection.bean.Score)
  9758. 2017-07-27 11:23:01.719 |-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)
  9759. 2017-07-27 11:23:01.719 |-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)
  9760. 2017-07-27 11:23:01.720 |-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)
  9761. 2017-07-27 11:23:01.720 |-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()
  9762. 2017-07-27 11:23:01.720 |-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)
  9763. 2017-07-27 11:23:01.723 |-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)
  9764. 2017-07-27 11:23:01.723 |-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)
  9765. 2017-07-27 11:23:01.723 |-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)
  9766. 2017-07-27 11:23:01.723 |-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)
  9767. 2017-07-27 11:23:01.724 |-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)
  9768. 2017-07-27 11:23:01.724 |-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)
  9769. 2017-07-27 11:23:01.724 |-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)
  9770. 2017-07-27 11:23:01.725 |-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)
  9771. 2017-07-27 11:23:01.725 |-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)
  9772. 2017-07-27 11:23:01.725 |-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)
  9773. 2017-07-27 11:23:01.725 |-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)
  9774. 2017-07-27 11:23:01.725 |-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)
  9775. 2017-07-27 11:23:01.726 |-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)
  9776. 2017-07-27 11:23:01.726 |-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)
  9777. 2017-07-27 11:23:01.726 |-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)
  9778. 2017-07-27 11:23:01.726 |-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)
  9779. 2017-07-27 11:23:01.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)
  9780. 2017-07-27 11:23:01.727 |-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)
  9781. 2017-07-27 11:23:01.727 |-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)
  9782. 2017-07-27 11:23:01.727 |-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)
  9783. 2017-07-27 11:23:01.728 |-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)
  9784. 2017-07-27 11:23:01.729 |-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)
  9785. 2017-07-27 11:23:01.730 |-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)
  9786. 2017-07-27 11:23:01.730 |-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)
  9787. 2017-07-27 11:23:01.730 |-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)
  9788. 2017-07-27 11:23:01.730 |-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)
  9789. 2017-07-27 11:23:01.731 |-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)
  9790. 2017-07-27 11:23:01.731 |-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)
  9791. 2017-07-27 11:23:01.731 |-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)
  9792. 2017-07-27 11:23:01.731 |-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)
  9793. 2017-07-27 11:23:01.732 |-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)
  9794. 2017-07-27 11:23:01.732 |-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)
  9795. 2017-07-27 11:23:01.732 |-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)
  9796. 2017-07-27 11:23:01.732 |-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)
  9797. 2017-07-27 11:23:01.732 |-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)
  9798. 2017-07-27 11:23:01.734 |-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)
  9799. 2017-07-27 11:23:01.734 |-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)
  9800. 2017-07-27 11:23:01.734 |-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)
  9801. 2017-07-27 11:23:01.735 |-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)
  9802. 2017-07-27 11:23:01.735 |-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)
  9803. 2017-07-27 11:23:01.735 |-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)
  9804. 2017-07-27 11:23:01.735 |-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)
  9805. 2017-07-27 11:23:01.736 |-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)
  9806. 2017-07-27 11:23:01.736 |-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)
  9807. 2017-07-27 11:23:01.736 |-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)
  9808. 2017-07-27 11:23:01.737 |-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)
  9809. 2017-07-27 11:23:01.738 |-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)
  9810. 2017-07-27 11:23:01.738 |-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)
  9811. 2017-07-27 11:23:01.739 |-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)
  9812. 2017-07-27 11:23:01.739 |-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)
  9813. 2017-07-27 11:23:01.739 |-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)
  9814. 2017-07-27 11:23:01.740 |-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)
  9815. 2017-07-27 11:23:01.740 |-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)
  9816. 2017-07-27 11:23:01.741 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  9817. 2017-07-27 11:23:01.741 |-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)
  9818. 2017-07-27 11:23:01.742 |-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()
  9819. 2017-07-27 11:23:01.742 |-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()
  9820. 2017-07-27 11:23:01.742 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  9821. 2017-07-27 11:23:01.742 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  9822. 2017-07-27 11:23:01.742 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  9823. 2017-07-27 11:23:01.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()
  9824. 2017-07-27 11:23:01.748 |-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)
  9825. 2017-07-27 11:23:01.749 |-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)
  9826. 2017-07-27 11:23:01.750 |-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>)
  9827. 2017-07-27 11:23:01.751 |-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>)
  9828. 2017-07-27 11:23:01.753 |-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
  9829. 2017-07-27 11:23:01.753 |-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()
  9830. 2017-07-27 11:23:01.753 |-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)
  9831. 2017-07-27 11:23:01.754 |-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)
  9832. 2017-07-27 11:23:01.754 |-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)
  9833. 2017-07-27 11:23:01.754 |-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)
  9834. 2017-07-27 11:23:01.754 |-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)
  9835. 2017-07-27 11:23:01.755 |-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()
  9836. 2017-07-27 11:23:01.756 |-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)
  9837. 2017-07-27 11:23:01.756 |-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)
  9838. 2017-07-27 11:23:01.757 |-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)
  9839. 2017-07-27 11:23:01.757 |-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)
  9840. 2017-07-27 11:23:01.757 |-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)
  9841. 2017-07-27 11:23:01.859 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  9842. 2017-07-27 11:23:01.946 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9843. 2017-07-27 11:23:01.946 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9844. 2017-07-27 11:23:01.982 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  9845. 2017-07-27 11:23:01.983 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  9846. 2017-07-27 11:23:01.984 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  9847. 2017-07-27 11:23:01.984 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  9848. 2017-07-27 11:23:01.985 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  9849. 2017-07-27 11:23:01.985 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  9850. 2017-07-27 11:23:01.985 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  9851. 2017-07-27 11:23:01.986 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  9852. 2017-07-27 11:23:01.988 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  9853. 2017-07-27 11:23:01.988 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  9854. 2017-07-27 11:23:01.989 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  9855. 2017-07-27 11:23:01.989 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  9856. 2017-07-27 11:23:01.990 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  9857. 2017-07-27 11:23:01.992 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  9858. 2017-07-27 11:23:01.993 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  9859. 2017-07-27 11:23:01.994 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  9860. 2017-07-27 11:23:01.996 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  9861. 2017-07-27 11:23:01.997 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  9862. 2017-07-27 11:23:01.997 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  9863. 2017-07-27 11:23:01.998 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  9864. 2017-07-27 11:23:01.998 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  9865. 2017-07-27 11:23:01.999 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  9866. 2017-07-27 11:23:01.999 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  9867. 2017-07-27 11:23:02.052 |-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]
  9868. 2017-07-27 11:23:02.378 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  9869. 2017-07-27 11:23:02.378 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  9870. 2017-07-27 11:23:02.378 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  9871. 2017-07-27 11:23:02.378 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  9872. 2017-07-27 11:23:02.378 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  9873. 2017-07-27 11:23:02.379 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  9874. 2017-07-27 11:23:02.379 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  9875. 2017-07-27 11:23:02.380 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  9876. 2017-07-27 11:23:02.380 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  9877. 2017-07-27 11:23:02.380 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  9878. 2017-07-27 11:23:02.381 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  9879. 2017-07-27 11:23:02.381 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  9880. 2017-07-27 11:23:02.381 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  9881. 2017-07-27 11:23:02.382 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  9882. 2017-07-27 11:23:02.382 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  9883. 2017-07-27 11:23:02.382 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  9884. 2017-07-27 11:23:02.382 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  9885. 2017-07-27 11:23:02.383 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  9886. 2017-07-27 11:23:02.387 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  9887. 2017-07-27 11:23:02.387 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  9888. 2017-07-27 11:23:02.387 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  9889. 2017-07-27 11:23:02.387 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  9890. 2017-07-27 11:23:02.387 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  9891. 2017-07-27 11:23:02.388 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  9892. 2017-07-27 11:23:02.388 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  9893. 2017-07-27 11:23:02.388 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  9894. 2017-07-27 11:23:02.392 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  9895. 2017-07-27 11:23:02.395 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  9896. 2017-07-27 11:23:02.395 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  9897. 2017-07-27 11:23:02.395 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  9898. 2017-07-27 11:23:02.396 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  9899. 2017-07-27 11:23:02.396 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  9900. 2017-07-27 11:23:02.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
  9901. 2017-07-27 11:23:02.726 |-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()
  9902. 2017-07-27 11:23:02.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)
  9903. 2017-07-27 11:23:02.727 |-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>)
  9904. 2017-07-27 11:23:02.727 |-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()
  9905. 2017-07-27 11:23:02.727 |-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()
  9906. 2017-07-27 11:23:02.728 |-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()
  9907. 2017-07-27 11:23:02.728 |-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()
  9908. 2017-07-27 11:23:02.729 |-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)
  9909. 2017-07-27 11:23:02.729 |-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()
  9910. 2017-07-27 11:23:02.729 |-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)
  9911. 2017-07-27 11:23:02.729 |-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()
  9912. 2017-07-27 11:23:02.730 |-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()
  9913. 2017-07-27 11:23:02.731 |-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)
  9914. 2017-07-27 11:23:02.731 |-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()
  9915. 2017-07-27 11:23:02.731 |-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()
  9916. 2017-07-27 11:23:02.732 |-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)
  9917. 2017-07-27 11:23:03.128 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  9918. 2017-07-27 11:23:03.133 |-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
  9919. 2017-07-27 11:23:03.464 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  9920. 2017-07-27 11:23:03.465 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  9921. 2017-07-27 11:23:03.465 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  9922. 2017-07-27 11:23:03.470 |-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]
  9923. 2017-07-27 11:23:03.472 |-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]
  9924. 2017-07-27 11:23:03.472 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  9925. 2017-07-27 11:23:03.474 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  9926. 2017-07-27 11:23:03.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]
  9927. 2017-07-27 11:23:03.480 |-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]
  9928. 2017-07-27 11:23:03.482 |-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]
  9929. 2017-07-27 11:23:03.485 |-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]
  9930. 2017-07-27 11:23:03.487 |-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]
  9931. 2017-07-27 11:23:03.489 |-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]
  9932. 2017-07-27 11:23:03.492 |-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]
  9933. 2017-07-27 11:23:03.495 |-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]
  9934. 2017-07-27 11:23:03.498 |-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]
  9935. 2017-07-27 11:23:03.500 |-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]
  9936. 2017-07-27 11:23:03.503 |-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]
  9937. 2017-07-27 11:23:03.505 |-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]
  9938. 2017-07-27 11:23:03.515 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-3} inited
  9939. 2017-07-27 11:23:03.768 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  9940. 2017-07-27 11:23:03.769 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  9941. 2017-07-27 11:23:03.800 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 30
  9942. 2017-07-27 11:23:03.800 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [36] -| 加载用户信息成功,数据数:0
  9943. 2017-07-27 11:23:03.804 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-4} inited
  9944. 2017-07-27 11:23:04.049 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  9945. 2017-07-27 11:23:04.050 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  9946. 2017-07-27 11:23:04.151 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 662
  9947. 2017-07-27 11:23:04.152 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:662
  9948. 2017-07-27 11:23:04.154 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  9949. 2017-07-27 11:23:04.154 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  9950. 2017-07-27 11:23:04.181 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  9951. 2017-07-27 11:23:04.182 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载部门信息成功,数据数:32
  9952. 2017-07-27 11:23:04.184 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  9953. 2017-07-27 11:23:04.184 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9954. 2017-07-27 11:23:04.223 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  9955. 2017-07-27 11:23:04.223 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [65] -| 加载用户信息成功,数据数:662
  9956. 2017-07-27 11:23:04.230 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  9957. 2017-07-27 11:23:04.230 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  9958. 2017-07-27 11:23:04.235 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  9959. 2017-07-27 11:23:04.304 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  9960. 2017-07-27 11:23:04.308 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 8.336 seconds (JVM running for 1187.052)
  9961. 2017-07-27 11:29:26.761 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 9420 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  9962. 2017-07-27 11:29:26.771 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  9963. 2017-07-27 11:29:27.092 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  9964. 2017-07-27 11:29:27.208 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63f0826a: startup date [Thu Jul 27 11:29:27 CST 2017]; root of context hierarchy
  9965. 2017-07-27 11:29:29.202 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  9966. 2017-07-27 11:29:30.262 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$635173ff] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9967. 2017-07-27 11:29:30.485 |-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$$fbff3c39] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9968. 2017-07-27 11:29:30.500 |-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)
  9969. 2017-07-27 11:29:30.504 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@341a08a2' 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)
  9970. 2017-07-27 11:29:30.511 |-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$$20d3deeb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9971. 2017-07-27 11:29:30.535 |-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)
  9972. 2017-07-27 11:29:30.556 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$4e94e7fb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9973. 2017-07-27 11:29:30.583 |-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)
  9974. 2017-07-27 11:29:30.585 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$ac63aa1d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9975. 2017-07-27 11:29:31.427 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  9976. 2017-07-27 11:29:31.441 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  9977. 2017-07-27 11:29:31.442 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  9978. 2017-07-27 11:29:31.578 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  9979. 2017-07-27 11:29:31.579 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 4371 ms
  9980. 2017-07-27 11:29:32.017 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  9981. 2017-07-27 11:29:34.534 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  9982. 2017-07-27 11:29:34.534 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  9983. 2017-07-27 11:29:34.535 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  9984. 2017-07-27 11:29:34.535 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  9985. 2017-07-27 11:29:34.535 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  9986. 2017-07-27 11:29:34.536 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  9987. 2017-07-27 11:29:34.537 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  9988. 2017-07-27 11:29:34.537 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  9989. 2017-07-27 11:29:34.537 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  9990. 2017-07-27 11:29:34.537 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  9991. 2017-07-27 11:29:34.537 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  9992. 2017-07-27 11:29:34.538 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  9993. 2017-07-27 11:29:34.538 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  9994. 2017-07-27 11:29:34.539 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  9995. 2017-07-27 11:29:35.798 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  9996. 2017-07-27 11:29:35.798 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  9997. 2017-07-27 11:29:35.931 |-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@69f75b7c, org.springframework.security.web.context.SecurityContextPersistenceFilter@60715ab8, org.springframework.security.web.header.HeaderWriterFilter@6dbf1311, org.springframework.web.filter.CorsFilter@21c80db3, org.springframework.security.web.authentication.logout.LogoutFilter@6e8a3293, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@67497aae, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@69150e01, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7a9d748, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7cb339ad, org.springframework.security.web.session.SessionManagementFilter@141c76b4, org.springframework.security.web.access.ExceptionTranslationFilter@1a8a9bd1, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@66a814d9]
  9998. 2017-07-27 11:29:35.964 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@51ce5f23, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7b065b30, org.springframework.security.web.context.SecurityContextPersistenceFilter@41213529, org.springframework.security.web.header.HeaderWriterFilter@6e1c1d91, org.springframework.security.web.authentication.logout.LogoutFilter@1b534174, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@127f5fe4, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@328948f6, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3cf72ba3, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6d93e481, org.springframework.security.web.session.SessionManagementFilter@4dfbe286, org.springframework.security.web.access.ExceptionTranslationFilter@1bed16c5, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@398ddef3]
  9999. 2017-07-27 11:29:36.152 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63f0826a: startup date [Thu Jul 27 11:29:27 CST 2017]; root of context hierarchy
  10000. 2017-07-27 11:29:36.306 |-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)
  10001. 2017-07-27 11:29:36.308 |-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)
  10002. 2017-07-27 11:29:36.310 |-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)
  10003. 2017-07-27 11:29:36.312 |-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)
  10004. 2017-07-27 11:29:36.312 |-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)
  10005. 2017-07-27 11:29:36.312 |-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)
  10006. 2017-07-27 11:29:36.313 |-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)
  10007. 2017-07-27 11:29:36.313 |-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)
  10008. 2017-07-27 11:29:36.313 |-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)
  10009. 2017-07-27 11:29:36.319 |-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)
  10010. 2017-07-27 11:29:36.320 |-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)
  10011. 2017-07-27 11:29:36.321 |-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)
  10012. 2017-07-27 11:29:36.323 |-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)
  10013. 2017-07-27 11:29:36.323 |-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)
  10014. 2017-07-27 11:29:36.323 |-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)
  10015. 2017-07-27 11:29:36.324 |-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)
  10016. 2017-07-27 11:29:36.324 |-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)
  10017. 2017-07-27 11:29:36.324 |-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)
  10018. 2017-07-27 11:29:36.325 |-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()
  10019. 2017-07-27 11:29:36.327 |-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)
  10020. 2017-07-27 11:29:36.327 |-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)
  10021. 2017-07-27 11:29:36.328 |-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)
  10022. 2017-07-27 11:29:36.328 |-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)
  10023. 2017-07-27 11:29:36.328 |-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)
  10024. 2017-07-27 11:29:36.328 |-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)
  10025. 2017-07-27 11:29:36.329 |-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)
  10026. 2017-07-27 11:29:36.329 |-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()
  10027. 2017-07-27 11:29:36.331 |-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)
  10028. 2017-07-27 11:29:36.331 |-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)
  10029. 2017-07-27 11:29:36.331 |-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)
  10030. 2017-07-27 11:29:36.332 |-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)
  10031. 2017-07-27 11:29:36.332 |-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)
  10032. 2017-07-27 11:29:36.332 |-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)
  10033. 2017-07-27 11:29:36.333 |-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)
  10034. 2017-07-27 11:29:36.334 |-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>)
  10035. 2017-07-27 11:29:36.334 |-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)
  10036. 2017-07-27 11:29:36.334 |-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)
  10037. 2017-07-27 11:29:36.335 |-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)
  10038. 2017-07-27 11:29:36.337 |-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)
  10039. 2017-07-27 11:29:36.337 |-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)
  10040. 2017-07-27 11:29:36.338 |-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)
  10041. 2017-07-27 11:29:36.338 |-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)
  10042. 2017-07-27 11:29:36.338 |-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)
  10043. 2017-07-27 11:29:36.338 |-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)
  10044. 2017-07-27 11:29:36.341 |-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)
  10045. 2017-07-27 11:29:36.342 |-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
  10046. 2017-07-27 11:29:36.342 |-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)
  10047. 2017-07-27 11:29:36.343 |-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)
  10048. 2017-07-27 11:29:36.343 |-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)
  10049. 2017-07-27 11:29:36.343 |-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)
  10050. 2017-07-27 11:29:36.344 |-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()
  10051. 2017-07-27 11:29:36.344 |-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()
  10052. 2017-07-27 11:29:36.344 |-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)
  10053. 2017-07-27 11:29:36.345 |-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()
  10054. 2017-07-27 11:29:36.345 |-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)
  10055. 2017-07-27 11:29:36.346 |-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)
  10056. 2017-07-27 11:29:36.347 |-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)
  10057. 2017-07-27 11:29:36.347 |-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)
  10058. 2017-07-27 11:29:36.348 |-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)
  10059. 2017-07-27 11:29:36.349 |-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)
  10060. 2017-07-27 11:29:36.349 |-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.String,java.lang.String,java.lang.String,java.lang.String)
  10061. 2017-07-27 11:29:36.350 |-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.Integer,java.lang.Integer,java.lang.Integer)
  10062. 2017-07-27 11:29:36.350 |-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)
  10063. 2017-07-27 11:29:36.351 |-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)
  10064. 2017-07-27 11:29:36.353 |-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
  10065. 2017-07-27 11:29:36.353 |-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)
  10066. 2017-07-27 11:29:36.353 |-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)
  10067. 2017-07-27 11:29:36.354 |-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)
  10068. 2017-07-27 11:29:36.354 |-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)
  10069. 2017-07-27 11:29:36.354 |-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)
  10070. 2017-07-27 11:29:36.356 |-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
  10071. 2017-07-27 11:29:36.357 |-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
  10072. 2017-07-27 11:29:36.357 |-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)
  10073. 2017-07-27 11:29:36.358 |-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
  10074. 2017-07-27 11:29:36.358 |-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)
  10075. 2017-07-27 11:29:36.358 |-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()
  10076. 2017-07-27 11:29:36.359 |-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
  10077. 2017-07-27 11:29:36.359 |-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)
  10078. 2017-07-27 11:29:36.361 |-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)
  10079. 2017-07-27 11:29:36.362 |-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)
  10080. 2017-07-27 11:29:36.362 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  10081. 2017-07-27 11:29:36.363 |-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)
  10082. 2017-07-27 11:29:36.363 |-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)
  10083. 2017-07-27 11:29:36.363 |-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)
  10084. 2017-07-27 11:29:36.364 |-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)
  10085. 2017-07-27 11:29:36.364 |-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
  10086. 2017-07-27 11:29:36.364 |-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)
  10087. 2017-07-27 11:29:36.364 |-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)
  10088. 2017-07-27 11:29:36.365 |-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)
  10089. 2017-07-27 11:29:36.366 |-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)
  10090. 2017-07-27 11:29:36.367 |-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(com.xintong.visualinspection.bean.Score)
  10091. 2017-07-27 11:29:36.367 |-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)
  10092. 2017-07-27 11:29:36.367 |-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)
  10093. 2017-07-27 11:29:36.368 |-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()
  10094. 2017-07-27 11:29:36.368 |-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)
  10095. 2017-07-27 11:29:36.368 |-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)
  10096. 2017-07-27 11:29:36.372 |-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)
  10097. 2017-07-27 11:29:36.372 |-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)
  10098. 2017-07-27 11:29:36.372 |-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)
  10099. 2017-07-27 11:29:36.373 |-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)
  10100. 2017-07-27 11:29:36.373 |-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)
  10101. 2017-07-27 11:29:36.373 |-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)
  10102. 2017-07-27 11:29:36.374 |-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)
  10103. 2017-07-27 11:29:36.374 |-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)
  10104. 2017-07-27 11:29:36.374 |-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)
  10105. 2017-07-27 11:29:36.374 |-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)
  10106. 2017-07-27 11:29:36.375 |-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)
  10107. 2017-07-27 11:29:36.375 |-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)
  10108. 2017-07-27 11:29:36.375 |-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)
  10109. 2017-07-27 11:29:36.375 |-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)
  10110. 2017-07-27 11:29:36.376 |-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)
  10111. 2017-07-27 11:29:36.376 |-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)
  10112. 2017-07-27 11:29:36.376 |-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)
  10113. 2017-07-27 11:29:36.376 |-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)
  10114. 2017-07-27 11:29:36.377 |-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)
  10115. 2017-07-27 11:29:36.377 |-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)
  10116. 2017-07-27 11:29:36.377 |-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)
  10117. 2017-07-27 11:29:36.379 |-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)
  10118. 2017-07-27 11:29:36.380 |-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)
  10119. 2017-07-27 11:29:36.380 |-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)
  10120. 2017-07-27 11:29:36.380 |-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)
  10121. 2017-07-27 11:29:36.381 |-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)
  10122. 2017-07-27 11:29:36.381 |-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)
  10123. 2017-07-27 11:29:36.381 |-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)
  10124. 2017-07-27 11:29:36.381 |-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)
  10125. 2017-07-27 11:29:36.382 |-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)
  10126. 2017-07-27 11:29:36.382 |-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)
  10127. 2017-07-27 11:29:36.382 |-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)
  10128. 2017-07-27 11:29:36.382 |-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)
  10129. 2017-07-27 11:29:36.383 |-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)
  10130. 2017-07-27 11:29:36.383 |-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)
  10131. 2017-07-27 11:29:36.385 |-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)
  10132. 2017-07-27 11:29:36.385 |-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)
  10133. 2017-07-27 11:29:36.386 |-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)
  10134. 2017-07-27 11:29:36.386 |-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)
  10135. 2017-07-27 11:29:36.386 |-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)
  10136. 2017-07-27 11:29:36.386 |-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)
  10137. 2017-07-27 11:29:36.387 |-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)
  10138. 2017-07-27 11:29:36.387 |-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)
  10139. 2017-07-27 11:29:36.387 |-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)
  10140. 2017-07-27 11:29:36.387 |-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)
  10141. 2017-07-27 11:29:36.389 |-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)
  10142. 2017-07-27 11:29:36.389 |-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)
  10143. 2017-07-27 11:29:36.390 |-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)
  10144. 2017-07-27 11:29:36.390 |-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)
  10145. 2017-07-27 11:29:36.390 |-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)
  10146. 2017-07-27 11:29:36.391 |-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)
  10147. 2017-07-27 11:29:36.391 |-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)
  10148. 2017-07-27 11:29:36.391 |-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)
  10149. 2017-07-27 11:29:36.392 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  10150. 2017-07-27 11:29:36.393 |-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)
  10151. 2017-07-27 11:29:36.393 |-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()
  10152. 2017-07-27 11:29:36.393 |-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()
  10153. 2017-07-27 11:29:36.393 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  10154. 2017-07-27 11:29:36.393 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  10155. 2017-07-27 11:29:36.393 |-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()
  10156. 2017-07-27 11:29:36.394 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  10157. 2017-07-27 11:29:36.395 |-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)
  10158. 2017-07-27 11:29:36.395 |-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>)
  10159. 2017-07-27 11:29:36.396 |-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>)
  10160. 2017-07-27 11:29:36.396 |-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)
  10161. 2017-07-27 11:29:36.398 |-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)
  10162. 2017-07-27 11:29:36.398 |-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)
  10163. 2017-07-27 11:29:36.399 |-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)
  10164. 2017-07-27 11:29:36.399 |-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)
  10165. 2017-07-27 11:29:36.399 |-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)
  10166. 2017-07-27 11:29:36.400 |-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)
  10167. 2017-07-27 11:29:36.400 |-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()
  10168. 2017-07-27 11:29:36.400 |-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)
  10169. 2017-07-27 11:29:36.400 |-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()
  10170. 2017-07-27 11:29:36.401 |-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
  10171. 2017-07-27 11:29:36.402 |-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)
  10172. 2017-07-27 11:29:36.402 |-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)
  10173. 2017-07-27 11:29:36.402 |-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)
  10174. 2017-07-27 11:29:36.510 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  10175. 2017-07-27 11:29:36.607 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  10176. 2017-07-27 11:29:36.608 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  10177. 2017-07-27 11:29:36.663 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  10178. 2017-07-27 11:29:36.664 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  10179. 2017-07-27 11:29:36.665 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  10180. 2017-07-27 11:29:36.666 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  10181. 2017-07-27 11:29:36.666 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  10182. 2017-07-27 11:29:36.667 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  10183. 2017-07-27 11:29:36.667 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  10184. 2017-07-27 11:29:36.668 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  10185. 2017-07-27 11:29:36.668 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  10186. 2017-07-27 11:29:36.669 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  10187. 2017-07-27 11:29:36.669 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  10188. 2017-07-27 11:29:36.669 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  10189. 2017-07-27 11:29:36.670 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  10190. 2017-07-27 11:29:36.670 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  10191. 2017-07-27 11:29:36.671 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  10192. 2017-07-27 11:29:36.672 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  10193. 2017-07-27 11:29:36.673 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  10194. 2017-07-27 11:29:36.674 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  10195. 2017-07-27 11:29:36.675 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  10196. 2017-07-27 11:29:36.676 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  10197. 2017-07-27 11:29:36.676 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  10198. 2017-07-27 11:29:36.677 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  10199. 2017-07-27 11:29:36.677 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  10200. 2017-07-27 11:29:36.765 |-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]
  10201. 2017-07-27 11:29:37.794 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  10202. 2017-07-27 11:29:37.796 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  10203. 2017-07-27 11:29:37.797 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  10204. 2017-07-27 11:29:37.881 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  10205. 2017-07-27 11:29:37.886 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  10206. 2017-07-27 11:29:37.888 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  10207. 2017-07-27 11:29:37.890 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  10208. 2017-07-27 11:29:37.892 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  10209. 2017-07-27 11:29:37.892 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  10210. 2017-07-27 11:29:37.893 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  10211. 2017-07-27 11:29:37.894 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  10212. 2017-07-27 11:29:37.897 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  10213. 2017-07-27 11:29:37.898 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  10214. 2017-07-27 11:29:37.898 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  10215. 2017-07-27 11:29:37.898 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  10216. 2017-07-27 11:29:37.898 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  10217. 2017-07-27 11:29:37.899 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  10218. 2017-07-27 11:29:37.899 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  10219. 2017-07-27 11:29:37.908 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  10220. 2017-07-27 11:29:37.909 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  10221. 2017-07-27 11:29:37.909 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  10222. 2017-07-27 11:29:37.909 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  10223. 2017-07-27 11:29:37.925 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  10224. 2017-07-27 11:29:37.929 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  10225. 2017-07-27 11:29:37.929 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  10226. 2017-07-27 11:29:37.935 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  10227. 2017-07-27 11:29:38.003 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  10228. 2017-07-27 11:29:38.345 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  10229. 2017-07-27 11:29:38.411 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  10230. 2017-07-27 11:29:38.439 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  10231. 2017-07-27 11:29:38.439 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  10232. 2017-07-27 11:29:38.439 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  10233. 2017-07-27 11:29:38.440 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  10234. 2017-07-27 11:29:38.440 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  10235. 2017-07-27 11:29:39.126 |-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)
  10236. 2017-07-27 11:29:39.126 |-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()
  10237. 2017-07-27 11:29:39.127 |-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()
  10238. 2017-07-27 11:29:39.131 |-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)
  10239. 2017-07-27 11:29:39.132 |-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>)
  10240. 2017-07-27 11:29:39.132 |-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()
  10241. 2017-07-27 11:29:39.133 |-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)
  10242. 2017-07-27 11:29:39.134 |-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()
  10243. 2017-07-27 11:29:39.134 |-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()
  10244. 2017-07-27 11:29:39.134 |-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()
  10245. 2017-07-27 11:29:39.138 |-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
  10246. 2017-07-27 11:29:39.139 |-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()
  10247. 2017-07-27 11:29:39.143 |-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()
  10248. 2017-07-27 11:29:39.144 |-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)
  10249. 2017-07-27 11:29:39.145 |-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)
  10250. 2017-07-27 11:29:39.145 |-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()
  10251. 2017-07-27 11:29:39.145 |-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()
  10252. 2017-07-27 11:29:39.897 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  10253. 2017-07-27 11:29:39.908 |-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
  10254. 2017-07-27 11:29:40.249 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  10255. 2017-07-27 11:29:40.251 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  10256. 2017-07-27 11:29:40.253 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  10257. 2017-07-27 11:29:40.266 |-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]
  10258. 2017-07-27 11:29:40.272 |-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]
  10259. 2017-07-27 11:29:40.284 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  10260. 2017-07-27 11:29:40.291 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  10261. 2017-07-27 11:29:40.294 |-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]
  10262. 2017-07-27 11:29:40.319 |-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]
  10263. 2017-07-27 11:29:40.389 |-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]
  10264. 2017-07-27 11:29:40.405 |-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]
  10265. 2017-07-27 11:29:40.414 |-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]
  10266. 2017-07-27 11:29:40.423 |-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]
  10267. 2017-07-27 11:29:40.433 |-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]
  10268. 2017-07-27 11:29:40.441 |-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]
  10269. 2017-07-27 11:29:40.443 |-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]
  10270. 2017-07-27 11:29:40.448 |-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]
  10271. 2017-07-27 11:29:40.452 |-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]
  10272. 2017-07-27 11:29:40.457 |-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]
  10273. 2017-07-27 11:29:40.593 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  10274. 2017-07-27 11:29:41.186 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  10275. 2017-07-27 11:29:41.224 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  10276. 2017-07-27 11:29:41.298 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 30
  10277. 2017-07-27 11:29:41.300 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [36] -| 加载用户信息成功,数据数:0
  10278. 2017-07-27 11:29:41.313 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  10279. 2017-07-27 11:29:41.599 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  10280. 2017-07-27 11:29:41.600 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  10281. 2017-07-27 11:29:41.765 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 662
  10282. 2017-07-27 11:29:41.766 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:662
  10283. 2017-07-27 11:29:41.767 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  10284. 2017-07-27 11:29:41.768 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  10285. 2017-07-27 11:29:41.798 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  10286. 2017-07-27 11:29:41.799 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载部门信息成功,数据数:32
  10287. 2017-07-27 11:29:41.829 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10288. 2017-07-27 11:29:41.829 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10289. 2017-07-27 11:29:41.870 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10290. 2017-07-27 11:29:41.870 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [65] -| 加载用户信息成功,数据数:662
  10291. 2017-07-27 11:29:41.889 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  10292. 2017-07-27 11:29:41.942 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  10293. 2017-07-27 11:29:42.210 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  10294. 2017-07-27 11:29:42.231 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  10295. 2017-07-27 11:29:42.239 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 15.812 seconds (JVM running for 16.714)
  10296. 2017-07-27 11:29:47.821 |-INFO [http-nio-8089-exec-2] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  10297. 2017-07-27 11:29:47.821 |-INFO [http-nio-8089-exec-2] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  10298. 2017-07-27 11:29:47.851 |-INFO [http-nio-8089-exec-2] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 29 ms
  10299. 2017-07-27 11:29:47.982 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10300. 2017-07-27 11:29:47.990 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10301. 2017-07-27 11:29:48.067 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10302. 2017-07-27 11:29:48.068 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10303. 2017-07-27 11:29:48.099 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10304. 2017-07-27 11:29:48.101 |-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
  10305. 2017-07-27 11:29:48.101 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10306. 2017-07-27 11:29:48.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10307. 2017-07-27 11:29:48.103 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10308. 2017-07-27 11:29:48.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10309. 2017-07-27 11:29:48.134 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10310. 2017-07-27 11:29:48.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
  10311. 2017-07-27 11:29:48.136 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10312. 2017-07-27 11:29:48.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10313. 2017-07-27 11:29:48.165 |-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=?)
  10314. 2017-07-27 11:29:48.166 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10315. 2017-07-27 11:29:48.196 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10316. 2017-07-27 11:29:48.198 |-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=?)
  10317. 2017-07-27 11:29:48.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10318. 2017-07-27 11:29:48.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10319. 2017-07-27 11:29:48.255 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10320. 2017-07-27 11:29:48.281 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10321. 2017-07-27 11:29:48.297 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10322. 2017-07-27 11:29:48.300 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10323. 2017-07-27 11:29:48.361 |-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
  10324. 2017-07-27 11:29:48.361 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10325. 2017-07-27 11:29:48.395 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10326. 2017-07-27 11:29:48.396 |-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
  10327. 2017-07-27 11:29:48.397 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10328. 2017-07-27 11:29:48.426 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10329. 2017-07-27 11:29:48.498 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10330. 2017-07-27 11:29:48.500 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10331. 2017-07-27 11:29:48.503 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10332. 2017-07-27 11:29:48.504 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10333. 2017-07-27 11:29:48.513 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10334. 2017-07-27 11:29:48.513 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10335. 2017-07-27 11:29:48.538 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10336. 2017-07-27 11:29:48.539 |-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
  10337. 2017-07-27 11:29:48.540 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10338. 2017-07-27 11:29:48.555 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10339. 2017-07-27 11:29:48.570 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10340. 2017-07-27 11:29:48.571 |-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
  10341. 2017-07-27 11:29:48.572 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10342. 2017-07-27 11:29:48.603 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10343. 2017-07-27 11:29:48.606 |-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=?)
  10344. 2017-07-27 11:29:48.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10345. 2017-07-27 11:29:48.633 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10346. 2017-07-27 11:29:48.634 |-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=?)
  10347. 2017-07-27 11:29:48.635 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10348. 2017-07-27 11:29:48.639 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10349. 2017-07-27 11:29:48.641 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10350. 2017-07-27 11:29:48.653 |-DEBUG [http-nio-8089-exec-7] 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
  10351. 2017-07-27 11:29:48.654 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10352. 2017-07-27 11:29:48.661 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10353. 2017-07-27 11:29:48.667 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10354. 2017-07-27 11:29:48.670 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10355. 2017-07-27 11:29:48.675 |-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
  10356. 2017-07-27 11:29:48.676 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10357. 2017-07-27 11:29:48.682 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10358. 2017-07-27 11:29:48.708 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10359. 2017-07-27 11:29:48.743 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10360. 2017-07-27 11:29:48.747 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10361. 2017-07-27 11:29:48.747 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10362. 2017-07-27 11:29:48.774 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10363. 2017-07-27 11:29:48.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
  10364. 2017-07-27 11:29:48.776 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10365. 2017-07-27 11:29:48.805 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10366. 2017-07-27 11:29:48.807 |-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=?)
  10367. 2017-07-27 11:29:48.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10368. 2017-07-27 11:29:48.833 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10369. 2017-07-27 11:29:48.839 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10370. 2017-07-27 11:29:48.842 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10371. 2017-07-27 11:29:48.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10372. 2017-07-27 11:29:48.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10373. 2017-07-27 11:29:49.094 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  10374. 2017-07-27 11:29:49.167 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10375. 2017-07-27 11:29:49.170 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10376. 2017-07-27 11:29:49.170 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10377. 2017-07-27 11:29:49.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10378. 2017-07-27 11:29:49.198 |-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
  10379. 2017-07-27 11:29:49.199 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10380. 2017-07-27 11:29:49.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10381. 2017-07-27 11:29:49.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=?)
  10382. 2017-07-27 11:29:49.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10383. 2017-07-27 11:29:49.256 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10384. 2017-07-27 11:29:49.260 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10385. 2017-07-27 11:29:49.262 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10386. 2017-07-27 11:29:49.290 |-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=?
  10387. 2017-07-27 11:29:49.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10388. 2017-07-27 11:29:49.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10389. 2017-07-27 11:29:49.561 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10390. 2017-07-27 11:29:49.564 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10391. 2017-07-27 11:29:49.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10392. 2017-07-27 11:29:49.593 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10393. 2017-07-27 11:29:49.594 |-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
  10394. 2017-07-27 11:29:49.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10395. 2017-07-27 11:29:49.623 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10396. 2017-07-27 11:29:49.625 |-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=?)
  10397. 2017-07-27 11:29:49.625 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10398. 2017-07-27 11:29:49.652 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10399. 2017-07-27 11:29:49.660 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10400. 2017-07-27 11:29:49.662 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10401. 2017-07-27 11:29:49.668 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10402. 2017-07-27 11:29:49.669 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10403. 2017-07-27 11:29:49.699 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  10404. 2017-07-27 11:29:49.775 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10405. 2017-07-27 11:29:49.777 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10406. 2017-07-27 11:29:49.781 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10407. 2017-07-27 11:29:49.782 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10408. 2017-07-27 11:29:49.782 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10409. 2017-07-27 11:29:49.784 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10410. 2017-07-27 11:29:49.785 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10411. 2017-07-27 11:29:49.809 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10412. 2017-07-27 11:29:49.810 |-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
  10413. 2017-07-27 11:29:49.811 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10414. 2017-07-27 11:29:49.813 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10415. 2017-07-27 11:29:49.816 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10416. 2017-07-27 11:29:49.816 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10417. 2017-07-27 11:29:49.842 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10418. 2017-07-27 11:29:49.843 |-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=?)
  10419. 2017-07-27 11:29:49.844 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10420. 2017-07-27 11:29:49.848 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10421. 2017-07-27 11:29:49.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10422. 2017-07-27 11:29:49.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
  10423. 2017-07-27 11:29:49.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10424. 2017-07-27 11:29:49.876 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10425. 2017-07-27 11:29:49.878 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10426. 2017-07-27 11:29:49.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10427. 2017-07-27 11:29:49.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=?)
  10428. 2017-07-27 11:29:49.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10429. 2017-07-27 11:29:49.941 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10430. 2017-07-27 11:29:49.942 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  10431. 2017-07-27 11:29:49.946 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  10432. 2017-07-27 11:29:49.947 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10433. 2017-07-27 11:29:49.951 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10434. 2017-07-27 11:29:49.977 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  10435. 2017-07-27 11:29:49.978 |-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
  10436. 2017-07-27 11:29:49.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10437. 2017-07-27 11:29:50.008 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10438. 2017-07-27 11:29:50.009 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY m.parent_id
  10439. 2017-07-27 11:29:50.010 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10440. 2017-07-27 11:29:50.038 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  10441. 2017-07-27 11:29:50.039 |-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=?)
  10442. 2017-07-27 11:29:50.039 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10443. 2017-07-27 11:29:50.066 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10444. 2017-07-27 11:29:50.071 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10445. 2017-07-27 11:29:50.073 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10446. 2017-07-27 11:29:50.391 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  10447. 2017-07-27 11:29:50.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10448. 2017-07-27 11:29:50.523 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  10449. 2017-07-27 12:15:14.633 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10450. 2017-07-27 12:15:14.902 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10451. 2017-07-27 12:15:14.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10452. 2017-07-27 12:15:14.932 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10453. 2017-07-27 12:15:15.198 |-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
  10454. 2017-07-27 12:15:15.199 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10455. 2017-07-27 12:15:15.230 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10456. 2017-07-27 12:15:15.232 |-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=?)
  10457. 2017-07-27 12:15:15.232 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10458. 2017-07-27 12:15:15.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10459. 2017-07-27 12:15:15.266 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10460. 2017-07-27 12:15:15.269 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10461. 2017-07-27 12:15:15.277 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  10462. 2017-07-27 12:15:15.278 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10463. 2017-07-27 12:15:15.308 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  10464. 2017-07-27 12:15:15.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  10465. 2017-07-27 12:15:15.312 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10466. 2017-07-27 12:15:15.359 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  10467. 2017-07-27 12:15:15.361 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  10468. 2017-07-27 12:15:15.367 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10469. 2017-07-27 12:15:15.409 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 250
  10470. 2017-07-27 12:15:17.284 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10471. 2017-07-27 12:15:17.287 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10472. 2017-07-27 12:15:17.288 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10473. 2017-07-27 12:15:17.316 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10474. 2017-07-27 12:15:17.317 |-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
  10475. 2017-07-27 12:15:17.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10476. 2017-07-27 12:15:17.347 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10477. 2017-07-27 12:15:17.348 |-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=?)
  10478. 2017-07-27 12:15:17.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10479. 2017-07-27 12:15:17.375 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10480. 2017-07-27 12:15:17.379 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10481. 2017-07-27 12:15:17.380 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10482. 2017-07-27 12:15:17.384 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  10483. 2017-07-27 12:15:17.385 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10484. 2017-07-27 12:15:17.414 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  10485. 2017-07-27 12:15:17.416 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  10486. 2017-07-27 12:15:17.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10487. 2017-07-27 12:15:17.455 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  10488. 2017-07-27 12:15:17.458 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  10489. 2017-07-27 12:15:17.459 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10490. 2017-07-27 12:15:17.500 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 97
  10491. 2017-07-27 12:15:19.047 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10492. 2017-07-27 12:15:19.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10493. 2017-07-27 12:15:19.051 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10494. 2017-07-27 12:15:19.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10495. 2017-07-27 12:15:19.055 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10496. 2017-07-27 12:15:19.068 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10497. 2017-07-27 12:15:19.072 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10498. 2017-07-27 12:15:19.078 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10499. 2017-07-27 12:15:19.080 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10500. 2017-07-27 12:15:19.081 |-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
  10501. 2017-07-27 12:15:19.081 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10502. 2017-07-27 12:15:19.084 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10503. 2017-07-27 12:15:19.085 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10504. 2017-07-27 12:15:19.111 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10505. 2017-07-27 12:15:19.112 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10506. 2017-07-27 12:15:19.112 |-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=?)
  10507. 2017-07-27 12:15:19.113 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10508. 2017-07-27 12:15:19.113 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10509. 2017-07-27 12:15:19.113 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10510. 2017-07-27 12:15:19.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10511. 2017-07-27 12:15:19.142 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10512. 2017-07-27 12:15:19.143 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10513. 2017-07-27 12:15:19.143 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10514. 2017-07-27 12:15:19.143 |-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
  10515. 2017-07-27 12:15:19.143 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10516. 2017-07-27 12:15:19.146 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10517. 2017-07-27 12:15:19.148 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10518. 2017-07-27 12:15:19.172 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10519. 2017-07-27 12:15:19.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10520. 2017-07-27 12:15:19.172 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10521. 2017-07-27 12:15:19.173 |-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
  10522. 2017-07-27 12:15:19.173 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10523. 2017-07-27 12:15:19.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10524. 2017-07-27 12:15:19.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10525. 2017-07-27 12:15:19.202 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10526. 2017-07-27 12:15:19.202 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10527. 2017-07-27 12:15:19.202 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10528. 2017-07-27 12:15:19.203 |-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=?)
  10529. 2017-07-27 12:15:19.203 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10530. 2017-07-27 12:15:19.229 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10531. 2017-07-27 12:15:19.230 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10532. 2017-07-27 12:15:19.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  10533. 2017-07-27 12:15:19.230 |-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
  10534. 2017-07-27 12:15:19.231 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10535. 2017-07-27 12:15:19.231 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10536. 2017-07-27 12:15:19.233 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10537. 2017-07-27 12:15:19.235 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10538. 2017-07-27 12:15:19.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10539. 2017-07-27 12:15:19.261 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10540. 2017-07-27 12:15:19.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
  10541. 2017-07-27 12:15:19.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10542. 2017-07-27 12:15:19.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10543. 2017-07-27 12:15:19.290 |-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=?)
  10544. 2017-07-27 12:15:19.291 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10545. 2017-07-27 12:15:19.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10546. 2017-07-27 12:15:19.318 |-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
  10547. 2017-07-27 12:15:19.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10548. 2017-07-27 12:15:19.321 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10549. 2017-07-27 12:15:19.324 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10550. 2017-07-27 12:15:19.348 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10551. 2017-07-27 12:15:19.348 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  10552. 2017-07-27 12:15:19.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  10553. 2017-07-27 12:15:19.364 |-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=?)
  10554. 2017-07-27 12:15:19.365 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10555. 2017-07-27 12:15:19.378 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 5
  10556. 2017-07-27 12:15:19.378 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  10557. 2017-07-27 12:15:19.379 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  10558. 2017-07-27 12:15:19.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10559. 2017-07-27 12:15:19.393 |-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=?)
  10560. 2017-07-27 12:15:19.396 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10561. 2017-07-27 12:15:19.396 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10562. 2017-07-27 12:15:19.398 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10563. 2017-07-27 12:15:19.422 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10564. 2017-07-27 12:15:19.423 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  10565. 2017-07-27 12:15:19.423 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  10566. 2017-07-27 12:15:19.426 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10567. 2017-07-27 12:15:19.428 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10568. 2017-07-27 12:15:19.431 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  10569. 2017-07-27 12:15:19.431 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10570. 2017-07-27 12:15:19.464 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10571. 2017-07-27 12:15:19.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 8
  10572. 2017-07-27 12:15:19.503 |-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=?)
  10573. 2017-07-27 12:15:19.504 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10574. 2017-07-27 12:15:19.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10575. 2017-07-27 12:15:19.539 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10576. 2017-07-27 12:15:19.541 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10577. 2017-07-27 12:15:19.544 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid
  10578. 2017-07-27 12:15:19.544 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10579. 2017-07-27 12:15:19.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  10580. 2017-07-27 12:15:19.546 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
  10581. 2017-07-27 12:15:19.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 8
  10582. 2017-07-27 12:15:19.550 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10583. 2017-07-27 12:15:19.551 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10584. 2017-07-27 12:15:19.552 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  10585. 2017-07-27 12:15:19.553 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
  10586. 2017-07-27 12:15:19.571 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10587. 2017-07-27 12:15:19.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 5
  10588. 2017-07-27 12:15:19.581 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  10589. 2017-07-27 12:15:19.582 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth
  10590. 2017-07-27 12:15:19.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 39(Long)
  10591. 2017-07-27 12:15:19.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id
  10592. 2017-07-27 12:15:19.630 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
  10593. 2017-07-27 12:15:19.658 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 3
  10594. 2017-07-27 12:15:19.667 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 8
  10595. 2017-07-27 12:15:19.670 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10596. 2017-07-27 12:15:19.671 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10597. 2017-07-27 12:15:19.693 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 2
  10598. 2017-07-27 12:15:19.702 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  10599. 2017-07-27 12:15:19.705 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=?
  10600. 2017-07-27 12:15:19.706 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
  10601. 2017-07-27 12:15:19.814 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 10
  10602. 2017-07-27 12:15:19.817 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10603. 2017-07-27 12:15:19.817 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10604. 2017-07-27 12:15:19.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  10605. 2017-07-27 12:16:23.576 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10606. 2017-07-27 12:16:23.608 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10607. 2017-07-27 12:16:23.609 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10608. 2017-07-27 12:16:23.637 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10609. 2017-07-27 12:16:23.665 |-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
  10610. 2017-07-27 12:16:23.666 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10611. 2017-07-27 12:16:23.696 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10612. 2017-07-27 12:16:23.697 |-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=?)
  10613. 2017-07-27 12:16:23.698 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10614. 2017-07-27 12:16:23.730 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10615. 2017-07-27 12:16:23.734 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10616. 2017-07-27 12:16:23.736 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10617. 2017-07-27 12:16:23.740 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  10618. 2017-07-27 12:16:23.740 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10619. 2017-07-27 12:16:23.771 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  10620. 2017-07-27 12:16:23.774 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  10621. 2017-07-27 12:16:23.775 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10622. 2017-07-27 12:16:23.813 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  10623. 2017-07-27 12:16:23.815 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT sum(t.check_item_score) AS score ,t.checked_dept AS dept_id FROM check_score t LEFT JOIN check_item c ON t.check_item_id = c.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 AND ct.start_time >= ? AND ct.end_time < ? GROUP BY t.checked_dept,t.checked_person
  10624. 2017-07-27 12:16:23.816 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10625. 2017-07-27 12:16:23.849 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 250
  10626. 2017-07-27 12:16:28.450 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10627. 2017-07-27 12:16:28.453 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10628. 2017-07-27 12:16:28.453 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10629. 2017-07-27 12:16:28.481 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10630. 2017-07-27 12:16:28.482 |-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
  10631. 2017-07-27 12:16:28.483 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10632. 2017-07-27 12:16:28.511 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10633. 2017-07-27 12:16:28.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=?)
  10634. 2017-07-27 12:16:28.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10635. 2017-07-27 12:16:28.539 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10636. 2017-07-27 12:16:28.543 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10637. 2017-07-27 12:16:28.545 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10638. 2017-07-27 12:16:28.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  10639. 2017-07-27 12:16:28.548 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  10640. 2017-07-27 12:16:28.577 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  10641. 2017-07-27 12:16:28.683 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10642. 2017-07-27 12:16:28.683 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10643. 2017-07-27 12:16:28.685 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10644. 2017-07-27 12:16:28.686 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10645. 2017-07-27 12:16:28.708 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10646. 2017-07-27 12:16:28.709 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10647. 2017-07-27 12:16:28.713 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10648. 2017-07-27 12:16:28.714 |-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
  10649. 2017-07-27 12:16:28.714 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10650. 2017-07-27 12:16:28.734 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10651. 2017-07-27 12:16:28.743 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10652. 2017-07-27 12:16:28.745 |-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=?)
  10653. 2017-07-27 12:16:28.745 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10654. 2017-07-27 12:16:28.762 |-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
  10655. 2017-07-27 12:16:28.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10656. 2017-07-27 12:16:28.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10657. 2017-07-27 12:16:28.778 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10658. 2017-07-27 12:16:28.780 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10659. 2017-07-27 12:16:28.787 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Preparing: SELECT COUNT(1) AS all_checkman, COUNT(1) AS all_task_num, COUNT(cs.check_item_score) AS checked_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute, COUNT(DISTINCT(t.checked_person)) AS all_checked_num, SUM(cs.check_item_score) AS all_checked_score FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time < ?
  10660. 2017-07-27 12:16:28.788 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10661. 2017-07-27 12:16:28.792 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10662. 2017-07-27 12:16:28.793 |-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=?)
  10663. 2017-07-27 12:16:28.794 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10664. 2017-07-27 12:16:28.820 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10665. 2017-07-27 12:16:28.824 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10666. 2017-07-27 12:16:28.826 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10667. 2017-07-27 12:16:28.900 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.check_time >= ? AND t.check_time < ? AND cs.check_item_score IS NOT NULL
  10668. 2017-07-27 12:16:28.901 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10669. 2017-07-27 12:16:28.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  10670. 2017-07-27 12:16:28.993 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.check_time >= ? AND t.check_time < ? AND cs.check_item_score IS NOT NULL limit ?,?
  10671. 2017-07-27 12:16:28.994 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  10672. 2017-07-27 12:16:29.085 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  10673. 2017-07-27 12:16:30.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo [159] -| <== Total: 1
  10674. 2017-07-27 12:33:43.999 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10675. 2017-07-27 12:33:46.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10676. 2017-07-27 12:33:46.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10677. 2017-07-27 12:33:46.063 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10678. 2017-07-27 12:33:48.066 |-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
  10679. 2017-07-27 12:33:48.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10680. 2017-07-27 12:33:48.097 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10681. 2017-07-27 12:33:48.098 |-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=?)
  10682. 2017-07-27 12:33:48.099 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10683. 2017-07-27 12:33:48.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10684. 2017-07-27 12:33:48.129 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10685. 2017-07-27 12:33:48.131 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10686. 2017-07-27 12:33:48.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10687. 2017-07-27 12:33:48.137 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10688. 2017-07-27 12:33:48.180 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  10689. 2017-07-27 12:33:48.209 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10690. 2017-07-27 12:33:48.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10691. 2017-07-27 12:33:48.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10692. 2017-07-27 12:33:48.213 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10693. 2017-07-27 12:33:48.215 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10694. 2017-07-27 12:33:48.215 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10695. 2017-07-27 12:33:48.215 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10696. 2017-07-27 12:33:48.240 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10697. 2017-07-27 12:33:48.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10698. 2017-07-27 12:33:48.241 |-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
  10699. 2017-07-27 12:33:48.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10700. 2017-07-27 12:33:48.242 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10701. 2017-07-27 12:33:48.244 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10702. 2017-07-27 12:33:48.269 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10703. 2017-07-27 12:33:48.271 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10704. 2017-07-27 12:33:48.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
  10705. 2017-07-27 12:33:48.271 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10706. 2017-07-27 12:33:48.300 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10707. 2017-07-27 12:33:48.301 |-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=?)
  10708. 2017-07-27 12:33:48.301 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10709. 2017-07-27 12:33:48.314 |-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=?)
  10710. 2017-07-27 12:33:48.315 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10711. 2017-07-27 12:33:48.327 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10712. 2017-07-27 12:33:48.330 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10713. 2017-07-27 12:33:48.332 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10714. 2017-07-27 12:33:48.342 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10715. 2017-07-27 12:33:48.346 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10716. 2017-07-27 12:33:48.347 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10717. 2017-07-27 12:33:48.351 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY m.parent_id
  10718. 2017-07-27 12:33:48.352 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10719. 2017-07-27 12:33:48.378 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  10720. 2017-07-27 12:33:48.418 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  10721. 2017-07-27 12:33:48.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10722. 2017-07-27 12:33:48.507 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  10723. 2017-07-27 12:33:49.245 |-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
  10724. 2017-07-27 12:33:49.246 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10725. 2017-07-27 12:33:49.273 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10726. 2017-07-27 12:33:49.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=?)
  10727. 2017-07-27 12:33:49.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10728. 2017-07-27 12:33:49.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10729. 2017-07-27 12:33:49.302 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10730. 2017-07-27 12:33:49.304 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10731. 2017-07-27 12:33:49.307 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  10732. 2017-07-27 12:33:49.308 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  10733. 2017-07-27 12:33:49.336 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  10734. 2017-07-27 12:33:57.876 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10735. 2017-07-27 12:33:57.877 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10736. 2017-07-27 12:33:57.878 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10737. 2017-07-27 12:33:57.880 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10738. 2017-07-27 12:33:57.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10739. 2017-07-27 12:33:57.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10740. 2017-07-27 12:33:57.884 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10741. 2017-07-27 12:33:57.888 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10742. 2017-07-27 12:33:57.889 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10743. 2017-07-27 12:33:57.908 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10744. 2017-07-27 12:33:57.909 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10745. 2017-07-27 12:33:57.910 |-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
  10746. 2017-07-27 12:33:57.910 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10747. 2017-07-27 12:33:57.911 |-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
  10748. 2017-07-27 12:33:57.913 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10749. 2017-07-27 12:33:57.918 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10750. 2017-07-27 12:33:57.920 |-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
  10751. 2017-07-27 12:33:57.920 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10752. 2017-07-27 12:33:57.938 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10753. 2017-07-27 12:33:57.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=?)
  10754. 2017-07-27 12:33:57.939 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10755. 2017-07-27 12:33:57.941 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10756. 2017-07-27 12:33:57.942 |-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=?)
  10757. 2017-07-27 12:33:57.942 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10758. 2017-07-27 12:33:57.949 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10759. 2017-07-27 12:33:57.950 |-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=?)
  10760. 2017-07-27 12:33:57.950 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10761. 2017-07-27 12:33:57.964 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10762. 2017-07-27 12:33:57.965 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10763. 2017-07-27 12:33:57.967 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10764. 2017-07-27 12:33:57.968 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10765. 2017-07-27 12:33:57.972 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  10766. 2017-07-27 12:33:57.973 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  10767. 2017-07-27 12:33:57.974 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10768. 2017-07-27 12:33:57.977 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10769. 2017-07-27 12:33:57.977 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10770. 2017-07-27 12:33:57.980 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10771. 2017-07-27 12:33:57.982 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY m.parent_id
  10772. 2017-07-27 12:33:57.983 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10773. 2017-07-27 12:33:57.982 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10774. 2017-07-27 12:33:58.000 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  10775. 2017-07-27 12:33:58.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  10776. 2017-07-27 12:33:58.159 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  10777. 2017-07-27 12:33:58.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10778. 2017-07-27 12:33:58.245 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  10779. 2017-07-27 12:34:56.877 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10780. 2017-07-27 12:34:56.879 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10781. 2017-07-27 12:34:56.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10782. 2017-07-27 12:34:56.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10783. 2017-07-27 12:34:56.883 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10784. 2017-07-27 12:34:56.884 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10785. 2017-07-27 12:34:56.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10786. 2017-07-27 12:34:56.911 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10787. 2017-07-27 12:34:56.912 |-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
  10788. 2017-07-27 12:34:56.912 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10789. 2017-07-27 12:34:56.912 |-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
  10790. 2017-07-27 12:34:56.913 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10791. 2017-07-27 12:34:56.941 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10792. 2017-07-27 12:34:56.941 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10793. 2017-07-27 12:34:56.942 |-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=?)
  10794. 2017-07-27 12:34:56.942 |-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=?)
  10795. 2017-07-27 12:34:56.942 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10796. 2017-07-27 12:34:56.943 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10797. 2017-07-27 12:34:56.967 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10798. 2017-07-27 12:34:56.968 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10799. 2017-07-27 12:34:56.974 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10800. 2017-07-27 12:34:56.974 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10801. 2017-07-27 12:34:56.977 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10802. 2017-07-27 12:34:56.977 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10803. 2017-07-27 12:34:56.988 |-DEBUG [http-nio-8089-exec-1] 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
  10804. 2017-07-27 12:34:56.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10805. 2017-07-27 12:34:57.019 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10806. 2017-07-27 12:34:57.020 |-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
  10807. 2017-07-27 12:34:57.020 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10808. 2017-07-27 12:34:57.050 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10809. 2017-07-27 12:34:57.099 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10810. 2017-07-27 12:34:57.105 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10811. 2017-07-27 12:34:57.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10812. 2017-07-27 12:34:57.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10813. 2017-07-27 12:34:57.109 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10814. 2017-07-27 12:34:57.110 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10815. 2017-07-27 12:34:57.138 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10816. 2017-07-27 12:34:57.138 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10817. 2017-07-27 12:34:57.138 |-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
  10818. 2017-07-27 12:34:57.139 |-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
  10819. 2017-07-27 12:34:57.139 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10820. 2017-07-27 12:34:57.139 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10821. 2017-07-27 12:34:57.167 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10822. 2017-07-27 12:34:57.167 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10823. 2017-07-27 12:34:57.168 |-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=?)
  10824. 2017-07-27 12:34:57.168 |-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=?)
  10825. 2017-07-27 12:34:57.168 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10826. 2017-07-27 12:34:57.168 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10827. 2017-07-27 12:34:57.193 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10828. 2017-07-27 12:34:57.194 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10829. 2017-07-27 12:34:57.197 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10830. 2017-07-27 12:34:57.197 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10831. 2017-07-27 12:34:57.198 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10832. 2017-07-27 12:34:57.199 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10833. 2017-07-27 12:34:57.200 |-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
  10834. 2017-07-27 12:34:57.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10835. 2017-07-27 12:34:57.201 |-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
  10836. 2017-07-27 12:34:57.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10837. 2017-07-27 12:34:57.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10838. 2017-07-27 12:34:57.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10839. 2017-07-27 12:34:57.243 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10840. 2017-07-27 12:34:57.256 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10841. 2017-07-27 12:34:57.257 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10842. 2017-07-27 12:34:57.286 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10843. 2017-07-27 12:34:57.287 |-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
  10844. 2017-07-27 12:34:57.287 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10845. 2017-07-27 12:34:57.316 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10846. 2017-07-27 12:34:57.317 |-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=?)
  10847. 2017-07-27 12:34:57.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10848. 2017-07-27 12:34:57.344 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10849. 2017-07-27 12:34:57.347 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10850. 2017-07-27 12:34:57.349 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10851. 2017-07-27 12:34:57.354 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10852. 2017-07-27 12:34:57.355 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10853. 2017-07-27 12:34:57.454 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  10854. 2017-07-27 12:34:57.507 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10855. 2017-07-27 12:34:57.509 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10856. 2017-07-27 12:34:57.509 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10857. 2017-07-27 12:34:57.539 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10858. 2017-07-27 12:34:57.540 |-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
  10859. 2017-07-27 12:34:57.540 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10860. 2017-07-27 12:34:57.569 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10861. 2017-07-27 12:34:57.570 |-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=?)
  10862. 2017-07-27 12:34:57.571 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10863. 2017-07-27 12:34:57.597 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10864. 2017-07-27 12:34:57.600 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10865. 2017-07-27 12:34:57.602 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10866. 2017-07-27 12:34:57.606 |-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=?
  10867. 2017-07-27 12:34:57.607 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10868. 2017-07-27 12:34:57.644 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10869. 2017-07-27 12:34:57.988 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10870. 2017-07-27 12:34:57.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10871. 2017-07-27 12:34:57.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10872. 2017-07-27 12:34:58.021 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10873. 2017-07-27 12:34:58.022 |-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
  10874. 2017-07-27 12:34:58.022 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10875. 2017-07-27 12:34:58.053 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10876. 2017-07-27 12:34:58.054 |-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=?)
  10877. 2017-07-27 12:34:58.054 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10878. 2017-07-27 12:34:58.080 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10879. 2017-07-27 12:34:58.083 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10880. 2017-07-27 12:34:58.084 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10881. 2017-07-27 12:34:58.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10882. 2017-07-27 12:34:58.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10883. 2017-07-27 12:34:58.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  10884. 2017-07-27 12:34:58.144 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10885. 2017-07-27 12:34:58.144 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10886. 2017-07-27 12:34:58.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10887. 2017-07-27 12:34:58.147 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10888. 2017-07-27 12:34:58.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10889. 2017-07-27 12:34:58.148 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10890. 2017-07-27 12:34:58.150 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10891. 2017-07-27 12:34:58.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10892. 2017-07-27 12:34:58.175 |-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
  10893. 2017-07-27 12:34:58.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10894. 2017-07-27 12:34:58.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10895. 2017-07-27 12:34:58.176 |-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
  10896. 2017-07-27 12:34:58.176 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10897. 2017-07-27 12:34:58.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10898. 2017-07-27 12:34:58.176 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10899. 2017-07-27 12:34:58.202 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10900. 2017-07-27 12:34:58.203 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10901. 2017-07-27 12:34:58.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
  10902. 2017-07-27 12:34:58.204 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10903. 2017-07-27 12:34:58.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10904. 2017-07-27 12:34:58.205 |-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=?)
  10905. 2017-07-27 12:34:58.206 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10906. 2017-07-27 12:34:58.228 |-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=?)
  10907. 2017-07-27 12:34:58.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10908. 2017-07-27 12:34:58.232 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10909. 2017-07-27 12:34:58.232 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10910. 2017-07-27 12:34:58.233 |-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=?)
  10911. 2017-07-27 12:34:58.234 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10912. 2017-07-27 12:34:58.236 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10913. 2017-07-27 12:34:58.238 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10914. 2017-07-27 12:34:58.244 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  10915. 2017-07-27 12:34:58.246 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  10916. 2017-07-27 12:34:58.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10917. 2017-07-27 12:34:58.258 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10918. 2017-07-27 12:34:58.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10919. 2017-07-27 12:34:58.260 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10920. 2017-07-27 12:34:58.266 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY m.parent_id
  10921. 2017-07-27 12:34:58.267 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10922. 2017-07-27 12:34:58.273 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10923. 2017-07-27 12:34:58.276 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10924. 2017-07-27 12:34:58.279 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  10925. 2017-07-27 12:34:58.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  10926. 2017-07-27 12:35:10.530 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  10927. 2017-07-27 12:35:10.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  10928. 2017-07-27 12:35:10.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  10929. 2017-07-27 13:40:01.732 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10930. 2017-07-27 13:40:01.736 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10931. 2017-07-27 13:40:02.065 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10932. 2017-07-27 13:40:02.066 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10933. 2017-07-27 13:40:02.096 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10934. 2017-07-27 13:40:02.096 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10935. 2017-07-27 13:40:02.097 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10936. 2017-07-27 13:40:02.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10937. 2017-07-27 13:40:05.369 |-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
  10938. 2017-07-27 13:40:05.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10939. 2017-07-27 13:40:05.402 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10940. 2017-07-27 13:40:05.403 |-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
  10941. 2017-07-27 13:40:05.404 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10942. 2017-07-27 13:40:05.433 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10943. 2017-07-27 13:40:05.434 |-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=?)
  10944. 2017-07-27 13:40:05.434 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10945. 2017-07-27 13:40:05.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10946. 2017-07-27 13:40:05.461 |-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=?)
  10947. 2017-07-27 13:40:05.462 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10948. 2017-07-27 13:40:05.467 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10949. 2017-07-27 13:40:05.471 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10950. 2017-07-27 13:40:05.488 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10951. 2017-07-27 13:40:05.488 |-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
  10952. 2017-07-27 13:40:05.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10953. 2017-07-27 13:40:05.495 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10954. 2017-07-27 13:40:05.497 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10955. 2017-07-27 13:40:05.518 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10956. 2017-07-27 13:40:05.519 |-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
  10957. 2017-07-27 13:40:05.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10958. 2017-07-27 13:40:05.548 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10959. 2017-07-27 13:40:05.618 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10960. 2017-07-27 13:40:05.619 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10961. 2017-07-27 13:40:05.647 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10962. 2017-07-27 13:40:05.647 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10963. 2017-07-27 13:40:05.647 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10964. 2017-07-27 13:40:05.648 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10965. 2017-07-27 13:40:05.677 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10966. 2017-07-27 13:40:05.677 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10967. 2017-07-27 13:40:05.678 |-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
  10968. 2017-07-27 13:40:05.678 |-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
  10969. 2017-07-27 13:40:05.679 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10970. 2017-07-27 13:40:05.679 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10971. 2017-07-27 13:40:05.707 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10972. 2017-07-27 13:40:05.708 |-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=?)
  10973. 2017-07-27 13:40:05.708 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10974. 2017-07-27 13:40:05.709 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10975. 2017-07-27 13:40:05.710 |-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=?)
  10976. 2017-07-27 13:40:05.711 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10977. 2017-07-27 13:40:05.733 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10978. 2017-07-27 13:40:05.736 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10979. 2017-07-27 13:40:05.736 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10980. 2017-07-27 13:40:05.737 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10981. 2017-07-27 13:40:05.739 |-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
  10982. 2017-07-27 13:40:05.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10983. 2017-07-27 13:40:05.742 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10984. 2017-07-27 13:40:05.743 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10985. 2017-07-27 13:40:05.745 |-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
  10986. 2017-07-27 13:40:05.746 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10987. 2017-07-27 13:40:05.779 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10988. 2017-07-27 13:40:05.784 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10989. 2017-07-27 13:40:05.796 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10990. 2017-07-27 13:40:05.797 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  10991. 2017-07-27 13:40:05.797 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10992. 2017-07-27 13:40:05.824 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10993. 2017-07-27 13:40:05.825 |-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
  10994. 2017-07-27 13:40:05.825 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10995. 2017-07-27 13:40:05.861 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  10996. 2017-07-27 13:40:05.862 |-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=?)
  10997. 2017-07-27 13:40:05.863 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10998. 2017-07-27 13:40:05.888 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10999. 2017-07-27 13:40:05.892 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11000. 2017-07-27 13:40:05.894 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11001. 2017-07-27 13:40:05.900 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  11002. 2017-07-27 13:40:05.900 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11003. 2017-07-27 13:40:05.993 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 575
  11004. 2017-07-27 13:40:06.031 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11005. 2017-07-27 13:40:06.032 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  11006. 2017-07-27 13:40:06.033 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11007. 2017-07-27 13:40:06.060 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11008. 2017-07-27 13:40:06.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
  11009. 2017-07-27 13:40:06.061 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11010. 2017-07-27 13:40:06.092 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  11011. 2017-07-27 13:40:06.093 |-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=?)
  11012. 2017-07-27 13:40:06.093 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11013. 2017-07-27 13:40:06.121 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11014. 2017-07-27 13:40:06.124 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11015. 2017-07-27 13:40:06.125 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11016. 2017-07-27 13:40:06.129 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  11017. 2017-07-27 13:40:06.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11018. 2017-07-27 13:40:06.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11019. 2017-07-27 13:40:06.426 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11020. 2017-07-27 13:40:06.427 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  11021. 2017-07-27 13:40:06.428 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11022. 2017-07-27 13:40:06.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11023. 2017-07-27 13:40:06.456 |-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
  11024. 2017-07-27 13:40:06.457 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11025. 2017-07-27 13:40:06.487 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  11026. 2017-07-27 13:40:06.488 |-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=?)
  11027. 2017-07-27 13:40:06.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11028. 2017-07-27 13:40:06.516 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11029. 2017-07-27 13:40:06.518 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11030. 2017-07-27 13:40:06.519 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11031. 2017-07-27 13:40:06.522 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  11032. 2017-07-27 13:40:06.523 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11033. 2017-07-27 13:40:06.559 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  11034. 2017-07-27 13:40:06.588 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11035. 2017-07-27 13:40:06.589 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  11036. 2017-07-27 13:40:06.589 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11037. 2017-07-27 13:40:06.590 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11038. 2017-07-27 13:40:06.590 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11039. 2017-07-27 13:40:06.591 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  11040. 2017-07-27 13:40:06.591 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11041. 2017-07-27 13:40:06.625 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11042. 2017-07-27 13:40:06.626 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  11043. 2017-07-27 13:40:06.626 |-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
  11044. 2017-07-27 13:40:06.626 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11045. 2017-07-27 13:40:06.626 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11046. 2017-07-27 13:40:06.628 |-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
  11047. 2017-07-27 13:40:06.629 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11048. 2017-07-27 13:40:06.626 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11049. 2017-07-27 13:40:06.661 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  11050. 2017-07-27 13:40:06.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=?)
  11051. 2017-07-27 13:40:06.663 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11052. 2017-07-27 13:40:06.665 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11053. 2017-07-27 13:40:06.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  11054. 2017-07-27 13:40:06.667 |-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
  11055. 2017-07-27 13:40:06.668 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11056. 2017-07-27 13:40:06.698 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11057. 2017-07-27 13:40:06.699 |-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=?)
  11058. 2017-07-27 13:40:06.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11059. 2017-07-27 13:40:06.700 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11060. 2017-07-27 13:40:06.701 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11061. 2017-07-27 13:40:06.711 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 44
  11062. 2017-07-27 13:40:06.712 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t
  11063. 2017-07-27 13:40:06.713 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2162(Long)
  11064. 2017-07-27 13:40:06.724 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11065. 2017-07-27 13:40:06.725 |-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=?)
  11066. 2017-07-27 13:40:06.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11067. 2017-07-27 13:40:06.727 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11068. 2017-07-27 13:40:06.729 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11069. 2017-07-27 13:40:06.751 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <== Total: 0
  11070. 2017-07-27 13:40:06.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11071. 2017-07-27 13:40:06.761 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11072. 2017-07-27 13:40:06.763 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11073. 2017-07-27 13:40:06.767 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time < ? GROUP BY m.parent_id
  11074. 2017-07-27 13:40:06.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  11075. 2017-07-27 13:40:06.796 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <== Total: 0
  11076. 2017-07-27 13:40:12.641 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  11077. 2017-07-27 13:40:12.642 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
  11078. 2017-07-27 13:40:12.773 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  11079. 2017-07-27 13:45:34.507 |-INFO [Thread-10] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@63f0826a: startup date [Thu Jul 27 11:29:27 CST 2017]; root of context hierarchy
  11080. 2017-07-27 13:45:34.511 |-INFO [Thread-10] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  11081. 2017-07-27 13:45:34.514 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  11082. 2017-07-27 13:45:34.514 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  11083. 2017-07-27 13:45:34.515 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  11084. 2017-07-27 13:45:34.516 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  11085. 2017-07-27 13:45:34.531 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  11086. 2017-07-27 13:45:34.535 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  11087. 2017-07-27 13:45:34.994 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 9420 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  11088. 2017-07-27 13:45:34.994 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  11089. 2017-07-27 13:45:35.011 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@769053b6: startup date [Thu Jul 27 13:45:35 CST 2017]; root of context hierarchy
  11090. 2017-07-27 13:45:36.417 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  11091. 2017-07-27 13:45:36.744 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$635173ff] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11092. 2017-07-27 13:45:36.763 |-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$$fbff3c39] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11093. 2017-07-27 13:45:36.767 |-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)
  11094. 2017-07-27 13:45:36.770 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@65e5cc39' 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)
  11095. 2017-07-27 13:45:36.771 |-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$$20d3deeb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11096. 2017-07-27 13:45:36.777 |-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)
  11097. 2017-07-27 13:45:36.787 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$4e94e7fb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11098. 2017-07-27 13:45:36.814 |-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)
  11099. 2017-07-27 13:45:36.815 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$ac63aa1d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11100. 2017-07-27 13:45:37.065 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  11101. 2017-07-27 13:45:37.066 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  11102. 2017-07-27 13:45:37.066 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  11103. 2017-07-27 13:45:37.101 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  11104. 2017-07-27 13:45:37.103 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 2092 ms
  11105. 2017-07-27 13:45:37.439 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  11106. 2017-07-27 13:45:39.490 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  11107. 2017-07-27 13:45:39.491 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  11108. 2017-07-27 13:45:39.491 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  11109. 2017-07-27 13:45:39.491 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  11110. 2017-07-27 13:45:39.491 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  11111. 2017-07-27 13:45:39.491 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  11112. 2017-07-27 13:45:39.491 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  11113. 2017-07-27 13:45:39.492 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  11114. 2017-07-27 13:45:39.492 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  11115. 2017-07-27 13:45:39.492 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  11116. 2017-07-27 13:45:39.492 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  11117. 2017-07-27 13:45:39.492 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  11118. 2017-07-27 13:45:39.492 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  11119. 2017-07-27 13:45:39.493 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  11120. 2017-07-27 13:45:41.074 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  11121. 2017-07-27 13:45:41.074 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  11122. 2017-07-27 13:45:41.112 |-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@424ec89a, org.springframework.security.web.context.SecurityContextPersistenceFilter@302b0f13, org.springframework.security.web.header.HeaderWriterFilter@d16fd79, org.springframework.web.filter.CorsFilter@6dbfbf04, org.springframework.security.web.authentication.logout.LogoutFilter@22cd8d92, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@24ea47b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3c6f0f99, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6a8d058, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3545a44e, org.springframework.security.web.session.SessionManagementFilter@28e19413, org.springframework.security.web.access.ExceptionTranslationFilter@5afac641, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5b7e4c07]
  11123. 2017-07-27 13:45:41.126 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@9611e48, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@26ef3, org.springframework.security.web.context.SecurityContextPersistenceFilter@21d6b7c2, org.springframework.security.web.header.HeaderWriterFilter@2490d57c, org.springframework.security.web.authentication.logout.LogoutFilter@44be84f3, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@46763b60, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@42c36efd, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@605a78ec, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@74b52aea, org.springframework.security.web.session.SessionManagementFilter@8c590a4, org.springframework.security.web.access.ExceptionTranslationFilter@192f5b2e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@f7f779e]
  11124. 2017-07-27 13:45:41.189 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@769053b6: startup date [Thu Jul 27 13:45:35 CST 2017]; root of context hierarchy
  11125. 2017-07-27 13:45:41.272 |-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)
  11126. 2017-07-27 13:45:41.273 |-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)
  11127. 2017-07-27 13:45:41.274 |-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)
  11128. 2017-07-27 13:45:41.275 |-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)
  11129. 2017-07-27 13:45:41.275 |-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)
  11130. 2017-07-27 13:45:41.275 |-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)
  11131. 2017-07-27 13:45:41.275 |-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)
  11132. 2017-07-27 13:45:41.275 |-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)
  11133. 2017-07-27 13:45:41.276 |-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)
  11134. 2017-07-27 13:45:41.277 |-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)
  11135. 2017-07-27 13:45:41.278 |-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)
  11136. 2017-07-27 13:45:41.278 |-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)
  11137. 2017-07-27 13:45:41.278 |-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)
  11138. 2017-07-27 13:45:41.279 |-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)
  11139. 2017-07-27 13:45:41.279 |-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)
  11140. 2017-07-27 13:45:41.279 |-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)
  11141. 2017-07-27 13:45:41.279 |-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)
  11142. 2017-07-27 13:45:41.280 |-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)
  11143. 2017-07-27 13:45:41.280 |-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()
  11144. 2017-07-27 13:45:41.281 |-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)
  11145. 2017-07-27 13:45:41.282 |-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)
  11146. 2017-07-27 13:45:41.282 |-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)
  11147. 2017-07-27 13:45:41.282 |-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)
  11148. 2017-07-27 13:45:41.282 |-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)
  11149. 2017-07-27 13:45:41.282 |-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)
  11150. 2017-07-27 13:45:41.283 |-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)
  11151. 2017-07-27 13:45:41.283 |-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()
  11152. 2017-07-27 13:45:41.284 |-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)
  11153. 2017-07-27 13:45:41.285 |-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)
  11154. 2017-07-27 13:45:41.285 |-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)
  11155. 2017-07-27 13:45:41.286 |-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)
  11156. 2017-07-27 13:45:41.286 |-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)
  11157. 2017-07-27 13:45:41.286 |-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)
  11158. 2017-07-27 13:45:41.287 |-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)
  11159. 2017-07-27 13:45:41.288 |-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>)
  11160. 2017-07-27 13:45:41.288 |-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)
  11161. 2017-07-27 13:45:41.289 |-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)
  11162. 2017-07-27 13:45:41.289 |-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)
  11163. 2017-07-27 13:45:41.290 |-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)
  11164. 2017-07-27 13:45:41.290 |-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)
  11165. 2017-07-27 13:45:41.291 |-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)
  11166. 2017-07-27 13:45:41.291 |-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)
  11167. 2017-07-27 13:45:41.291 |-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)
  11168. 2017-07-27 13:45:41.291 |-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)
  11169. 2017-07-27 13:45:41.293 |-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)
  11170. 2017-07-27 13:45:41.293 |-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
  11171. 2017-07-27 13:45:41.294 |-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)
  11172. 2017-07-27 13:45:41.294 |-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)
  11173. 2017-07-27 13:45:41.294 |-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)
  11174. 2017-07-27 13:45:41.295 |-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)
  11175. 2017-07-27 13:45:41.295 |-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()
  11176. 2017-07-27 13:45:41.295 |-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()
  11177. 2017-07-27 13:45:41.295 |-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)
  11178. 2017-07-27 13:45:41.296 |-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()
  11179. 2017-07-27 13:45:41.296 |-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)
  11180. 2017-07-27 13:45:41.297 |-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)
  11181. 2017-07-27 13:45:41.297 |-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)
  11182. 2017-07-27 13:45:41.297 |-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)
  11183. 2017-07-27 13:45:41.298 |-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)
  11184. 2017-07-27 13:45:41.298 |-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)
  11185. 2017-07-27 13:45:41.299 |-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.String,java.lang.String,java.lang.String,java.lang.String)
  11186. 2017-07-27 13:45:41.299 |-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.Integer,java.lang.Integer,java.lang.Integer)
  11187. 2017-07-27 13:45:41.299 |-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)
  11188. 2017-07-27 13:45:41.300 |-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)
  11189. 2017-07-27 13:45:41.301 |-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
  11190. 2017-07-27 13:45:41.302 |-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)
  11191. 2017-07-27 13:45:41.302 |-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)
  11192. 2017-07-27 13:45:41.302 |-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)
  11193. 2017-07-27 13:45:41.303 |-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)
  11194. 2017-07-27 13:45:41.303 |-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)
  11195. 2017-07-27 13:45:41.304 |-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
  11196. 2017-07-27 13:45:41.305 |-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
  11197. 2017-07-27 13:45:41.305 |-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)
  11198. 2017-07-27 13:45:41.305 |-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
  11199. 2017-07-27 13:45:41.305 |-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)
  11200. 2017-07-27 13:45:41.306 |-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()
  11201. 2017-07-27 13:45:41.307 |-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
  11202. 2017-07-27 13:45:41.308 |-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)
  11203. 2017-07-27 13:45:41.310 |-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)
  11204. 2017-07-27 13:45:41.310 |-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)
  11205. 2017-07-27 13:45:41.310 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  11206. 2017-07-27 13:45:41.310 |-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)
  11207. 2017-07-27 13:45:41.311 |-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)
  11208. 2017-07-27 13:45:41.311 |-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)
  11209. 2017-07-27 13:45:41.311 |-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)
  11210. 2017-07-27 13:45:41.312 |-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
  11211. 2017-07-27 13:45:41.312 |-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)
  11212. 2017-07-27 13:45:41.312 |-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)
  11213. 2017-07-27 13:45:41.312 |-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)
  11214. 2017-07-27 13:45:41.313 |-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)
  11215. 2017-07-27 13:45:41.314 |-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(com.xintong.visualinspection.bean.Score)
  11216. 2017-07-27 13:45:41.314 |-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)
  11217. 2017-07-27 13:45:41.314 |-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)
  11218. 2017-07-27 13:45:41.314 |-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()
  11219. 2017-07-27 13:45:41.314 |-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)
  11220. 2017-07-27 13:45:41.315 |-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)
  11221. 2017-07-27 13:45:41.317 |-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)
  11222. 2017-07-27 13:45:41.317 |-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)
  11223. 2017-07-27 13:45:41.318 |-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)
  11224. 2017-07-27 13:45:41.319 |-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)
  11225. 2017-07-27 13:45:41.319 |-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)
  11226. 2017-07-27 13:45:41.319 |-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)
  11227. 2017-07-27 13:45:41.319 |-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)
  11228. 2017-07-27 13:45:41.319 |-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)
  11229. 2017-07-27 13:45:41.320 |-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)
  11230. 2017-07-27 13:45:41.320 |-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)
  11231. 2017-07-27 13:45:41.320 |-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)
  11232. 2017-07-27 13:45:41.320 |-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)
  11233. 2017-07-27 13:45:41.320 |-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)
  11234. 2017-07-27 13:45:41.320 |-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)
  11235. 2017-07-27 13:45:41.321 |-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)
  11236. 2017-07-27 13:45:41.321 |-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)
  11237. 2017-07-27 13:45:41.321 |-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)
  11238. 2017-07-27 13:45:41.321 |-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)
  11239. 2017-07-27 13:45:41.321 |-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)
  11240. 2017-07-27 13:45:41.322 |-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)
  11241. 2017-07-27 13:45:41.322 |-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)
  11242. 2017-07-27 13:45:41.325 |-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)
  11243. 2017-07-27 13:45:41.326 |-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)
  11244. 2017-07-27 13:45:41.326 |-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)
  11245. 2017-07-27 13:45:41.326 |-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)
  11246. 2017-07-27 13:45:41.326 |-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)
  11247. 2017-07-27 13:45:41.327 |-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)
  11248. 2017-07-27 13:45:41.327 |-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)
  11249. 2017-07-27 13:45:41.327 |-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)
  11250. 2017-07-27 13:45:41.327 |-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)
  11251. 2017-07-27 13:45:41.328 |-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)
  11252. 2017-07-27 13:45:41.328 |-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)
  11253. 2017-07-27 13:45:41.328 |-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)
  11254. 2017-07-27 13:45:41.328 |-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)
  11255. 2017-07-27 13:45:41.328 |-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)
  11256. 2017-07-27 13:45:41.330 |-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)
  11257. 2017-07-27 13:45:41.330 |-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)
  11258. 2017-07-27 13:45:41.331 |-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)
  11259. 2017-07-27 13:45:41.331 |-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)
  11260. 2017-07-27 13:45:41.331 |-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)
  11261. 2017-07-27 13:45:41.332 |-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)
  11262. 2017-07-27 13:45:41.332 |-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)
  11263. 2017-07-27 13:45:41.332 |-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)
  11264. 2017-07-27 13:45:41.332 |-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)
  11265. 2017-07-27 13:45:41.333 |-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)
  11266. 2017-07-27 13:45:41.334 |-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)
  11267. 2017-07-27 13:45:41.334 |-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)
  11268. 2017-07-27 13:45:41.335 |-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)
  11269. 2017-07-27 13:45:41.335 |-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)
  11270. 2017-07-27 13:45:41.336 |-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)
  11271. 2017-07-27 13:45:41.336 |-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)
  11272. 2017-07-27 13:45:41.336 |-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)
  11273. 2017-07-27 13:45:41.336 |-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)
  11274. 2017-07-27 13:45:41.337 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  11275. 2017-07-27 13:45:41.337 |-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)
  11276. 2017-07-27 13:45:41.338 |-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()
  11277. 2017-07-27 13:45:41.338 |-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()
  11278. 2017-07-27 13:45:41.338 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  11279. 2017-07-27 13:45:41.338 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  11280. 2017-07-27 13:45:41.338 |-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()
  11281. 2017-07-27 13:45:41.338 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  11282. 2017-07-27 13:45:41.339 |-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)
  11283. 2017-07-27 13:45:41.340 |-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>)
  11284. 2017-07-27 13:45:41.340 |-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>)
  11285. 2017-07-27 13:45:41.340 |-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)
  11286. 2017-07-27 13:45:41.342 |-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)
  11287. 2017-07-27 13:45:41.342 |-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)
  11288. 2017-07-27 13:45:41.342 |-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)
  11289. 2017-07-27 13:45:41.343 |-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)
  11290. 2017-07-27 13:45:41.343 |-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)
  11291. 2017-07-27 13:45:41.343 |-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)
  11292. 2017-07-27 13:45:41.343 |-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()
  11293. 2017-07-27 13:45:41.343 |-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)
  11294. 2017-07-27 13:45:41.343 |-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()
  11295. 2017-07-27 13:45:41.351 |-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
  11296. 2017-07-27 13:45:41.352 |-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)
  11297. 2017-07-27 13:45:41.352 |-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)
  11298. 2017-07-27 13:45:41.352 |-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)
  11299. 2017-07-27 13:45:41.443 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  11300. 2017-07-27 13:45:41.517 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  11301. 2017-07-27 13:45:41.517 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  11302. 2017-07-27 13:45:41.549 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  11303. 2017-07-27 13:45:41.550 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  11304. 2017-07-27 13:45:41.550 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  11305. 2017-07-27 13:45:41.551 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  11306. 2017-07-27 13:45:41.551 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  11307. 2017-07-27 13:45:41.551 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  11308. 2017-07-27 13:45:41.551 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  11309. 2017-07-27 13:45:41.552 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  11310. 2017-07-27 13:45:41.552 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  11311. 2017-07-27 13:45:41.553 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  11312. 2017-07-27 13:45:41.553 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  11313. 2017-07-27 13:45:41.553 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  11314. 2017-07-27 13:45:41.554 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  11315. 2017-07-27 13:45:41.554 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  11316. 2017-07-27 13:45:41.555 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  11317. 2017-07-27 13:45:41.555 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  11318. 2017-07-27 13:45:41.556 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  11319. 2017-07-27 13:45:41.557 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  11320. 2017-07-27 13:45:41.557 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  11321. 2017-07-27 13:45:41.558 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  11322. 2017-07-27 13:45:41.558 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  11323. 2017-07-27 13:45:41.559 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  11324. 2017-07-27 13:45:41.559 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  11325. 2017-07-27 13:45:41.605 |-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]
  11326. 2017-07-27 13:45:41.952 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  11327. 2017-07-27 13:45:41.952 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  11328. 2017-07-27 13:45:41.952 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  11329. 2017-07-27 13:45:41.952 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  11330. 2017-07-27 13:45:41.953 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  11331. 2017-07-27 13:45:41.953 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  11332. 2017-07-27 13:45:41.953 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  11333. 2017-07-27 13:45:41.954 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  11334. 2017-07-27 13:45:41.954 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  11335. 2017-07-27 13:45:41.954 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  11336. 2017-07-27 13:45:41.955 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  11337. 2017-07-27 13:45:41.955 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  11338. 2017-07-27 13:45:41.956 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  11339. 2017-07-27 13:45:41.956 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  11340. 2017-07-27 13:45:41.956 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  11341. 2017-07-27 13:45:41.956 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  11342. 2017-07-27 13:45:41.957 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  11343. 2017-07-27 13:45:41.957 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  11344. 2017-07-27 13:45:41.961 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  11345. 2017-07-27 13:45:41.961 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  11346. 2017-07-27 13:45:41.961 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  11347. 2017-07-27 13:45:41.961 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  11348. 2017-07-27 13:45:41.962 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  11349. 2017-07-27 13:45:41.962 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  11350. 2017-07-27 13:45:41.962 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  11351. 2017-07-27 13:45:41.962 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  11352. 2017-07-27 13:45:41.967 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  11353. 2017-07-27 13:45:41.970 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  11354. 2017-07-27 13:45:41.971 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  11355. 2017-07-27 13:45:41.972 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  11356. 2017-07-27 13:45:41.972 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  11357. 2017-07-27 13:45:41.972 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  11358. 2017-07-27 13:45:42.276 |-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)
  11359. 2017-07-27 13:45:42.277 |-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()
  11360. 2017-07-27 13:45:42.278 |-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()
  11361. 2017-07-27 13:45:42.278 |-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()
  11362. 2017-07-27 13:45:42.279 |-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
  11363. 2017-07-27 13:45:42.280 |-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()
  11364. 2017-07-27 13:45:42.280 |-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()
  11365. 2017-07-27 13:45:42.281 |-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)
  11366. 2017-07-27 13:45:42.282 |-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)
  11367. 2017-07-27 13:45:42.282 |-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()
  11368. 2017-07-27 13:45:42.283 |-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)
  11369. 2017-07-27 13:45:42.283 |-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()
  11370. 2017-07-27 13:45:42.284 |-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()
  11371. 2017-07-27 13:45:42.284 |-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)
  11372. 2017-07-27 13:45:42.285 |-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>)
  11373. 2017-07-27 13:45:42.285 |-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()
  11374. 2017-07-27 13:45:42.285 |-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()
  11375. 2017-07-27 13:45:42.687 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  11376. 2017-07-27 13:45:42.692 |-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
  11377. 2017-07-27 13:45:43.059 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  11378. 2017-07-27 13:45:43.059 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  11379. 2017-07-27 13:45:43.060 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  11380. 2017-07-27 13:45:43.063 |-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]
  11381. 2017-07-27 13:45:43.064 |-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]
  11382. 2017-07-27 13:45:43.065 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  11383. 2017-07-27 13:45:43.066 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  11384. 2017-07-27 13:45:43.067 |-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]
  11385. 2017-07-27 13:45:43.070 |-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]
  11386. 2017-07-27 13:45:43.072 |-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]
  11387. 2017-07-27 13:45:43.075 |-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]
  11388. 2017-07-27 13:45:43.077 |-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]
  11389. 2017-07-27 13:45:43.079 |-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]
  11390. 2017-07-27 13:45:43.081 |-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]
  11391. 2017-07-27 13:45:43.084 |-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]
  11392. 2017-07-27 13:45:43.086 |-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]
  11393. 2017-07-27 13:45:43.087 |-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]
  11394. 2017-07-27 13:45:43.089 |-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]
  11395. 2017-07-27 13:45:43.091 |-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]
  11396. 2017-07-27 13:45:43.095 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-3} inited
  11397. 2017-07-27 13:45:43.337 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  11398. 2017-07-27 13:45:43.338 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  11399. 2017-07-27 13:45:43.383 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 30
  11400. 2017-07-27 13:45:43.383 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [36] -| 加载用户信息成功,数据数:0
  11401. 2017-07-27 13:45:43.388 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-4} inited
  11402. 2017-07-27 13:45:43.651 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  11403. 2017-07-27 13:45:43.652 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  11404. 2017-07-27 13:45:43.772 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 662
  11405. 2017-07-27 13:45:43.773 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:662
  11406. 2017-07-27 13:45:43.774 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  11407. 2017-07-27 13:45:43.775 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  11408. 2017-07-27 13:45:43.804 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  11409. 2017-07-27 13:45:43.804 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载部门信息成功,数据数:32
  11410. 2017-07-27 13:45:43.806 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  11411. 2017-07-27 13:45:43.806 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11412. 2017-07-27 13:45:43.830 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11413. 2017-07-27 13:45:43.831 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [65] -| 加载用户信息成功,数据数:662
  11414. 2017-07-27 13:45:43.836 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  11415. 2017-07-27 13:45:43.836 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  11416. 2017-07-27 13:45:43.840 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  11417. 2017-07-27 13:45:43.850 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  11418. 2017-07-27 13:45:43.853 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 8.95 seconds (JVM running for 8178.181)