visual.log 2.7 MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280
  1. 2017-08-01 09:03:20.313 |-INFO [Thread-43] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@206c2ec3: startup date [Mon Jul 31 19:30:57 CST 2017]; root of context hierarchy
  2. 2017-08-01 09:03:20.427 |-INFO [Thread-43] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  3. 2017-08-01 09:03:20.443 |-INFO [Thread-43] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  4. 2017-08-01 09:03:20.443 |-INFO [Thread-43] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  5. 2017-08-01 09:03:20.446 |-INFO [Thread-43] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  6. 2017-08-01 09:03:20.446 |-INFO [Thread-43] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  7. 2017-08-01 09:03:20.484 |-INFO [Thread-43] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  8. 2017-08-01 09:03:20.488 |-INFO [Thread-43] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  9. 2017-08-01 09:03:29.276 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on wenhongquandeMacBook-Pro.local with PID 93336 (/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes started by wenhongquan in /Users/wenhongquan/VisualInspection/VisualInspection_server)
  10. 2017-08-01 09:03:29.280 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  11. 2017-08-01 09:03:29.485 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  12. 2017-08-01 09:03:29.529 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@69bdb295: startup date [Tue Aug 01 09:03:29 CST 2017]; root of context hierarchy
  13. 2017-08-01 09:03:30.869 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  14. 2017-08-01 09:03:31.550 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$d8657b5b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  15. 2017-08-01 09:03:31.686 |-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$$71134395] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  16. 2017-08-01 09:03:31.696 |-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)
  17. 2017-08-01 09:03:31.699 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@46d0e0dd' 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)
  18. 2017-08-01 09:03:31.708 |-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$$95e7e647] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  19. 2017-08-01 09:03:31.724 |-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)
  20. 2017-08-01 09:03:31.737 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$c3a8ef57] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  21. 2017-08-01 09:03:31.753 |-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)
  22. 2017-08-01 09:03:31.755 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$2177b179] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  23. 2017-08-01 09:03:32.242 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  24. 2017-08-01 09:03:32.253 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  25. 2017-08-01 09:03:32.254 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  26. 2017-08-01 09:03:32.326 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  27. 2017-08-01 09:03:32.326 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 2797 ms
  28. 2017-08-01 09:03:32.612 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  29. 2017-08-01 09:03:34.554 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  30. 2017-08-01 09:03:34.554 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  31. 2017-08-01 09:03:34.554 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  32. 2017-08-01 09:03:34.554 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  33. 2017-08-01 09:03:34.554 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  34. 2017-08-01 09:03:34.555 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  35. 2017-08-01 09:03:34.556 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  36. 2017-08-01 09:03:34.556 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  37. 2017-08-01 09:03:34.556 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  38. 2017-08-01 09:03:34.556 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  39. 2017-08-01 09:03:34.556 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  40. 2017-08-01 09:03:34.556 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  41. 2017-08-01 09:03:34.557 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  42. 2017-08-01 09:03:34.558 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  43. 2017-08-01 09:03:35.600 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  44. 2017-08-01 09:03:35.600 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  45. 2017-08-01 09:03:35.734 |-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@6525a46a, org.springframework.security.web.context.SecurityContextPersistenceFilter@273e557f, org.springframework.security.web.header.HeaderWriterFilter@31975879, org.springframework.web.filter.CorsFilter@4cfcf2b, org.springframework.security.web.authentication.logout.LogoutFilter@6adbe445, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@2f9eaf52, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4aafc32f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@34db4dcb, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2a533f86, org.springframework.security.web.session.SessionManagementFilter@6672a9a9, org.springframework.security.web.access.ExceptionTranslationFilter@30a16a4d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3163f7e3]
  46. 2017-08-01 09:03:35.766 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@5cb53d25, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4798580a, org.springframework.security.web.context.SecurityContextPersistenceFilter@52ea2c47, org.springframework.security.web.header.HeaderWriterFilter@5e0a7070, org.springframework.security.web.authentication.logout.LogoutFilter@6c90e78e, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@63049bf2, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@692c2dca, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6428596f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3146e238, org.springframework.security.web.session.SessionManagementFilter@2280f326, org.springframework.security.web.access.ExceptionTranslationFilter@5dccc626, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@8dd65af]
  47. 2017-08-01 09:03:35.908 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@69bdb295: startup date [Tue Aug 01 09:03:29 CST 2017]; root of context hierarchy
  48. 2017-08-01 09:03:36.021 |-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)
  49. 2017-08-01 09:03:36.022 |-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)
  50. 2017-08-01 09:03:36.024 |-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)
  51. 2017-08-01 09:03:36.024 |-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)
  52. 2017-08-01 09:03:36.024 |-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)
  53. 2017-08-01 09:03:36.024 |-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)
  54. 2017-08-01 09:03:36.025 |-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)
  55. 2017-08-01 09:03:36.025 |-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)
  56. 2017-08-01 09:03:36.025 |-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)
  57. 2017-08-01 09:03:36.029 |-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)
  58. 2017-08-01 09:03:36.029 |-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)
  59. 2017-08-01 09:03:36.030 |-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)
  60. 2017-08-01 09:03:36.030 |-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)
  61. 2017-08-01 09:03:36.030 |-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)
  62. 2017-08-01 09:03:36.030 |-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)
  63. 2017-08-01 09:03:36.031 |-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)
  64. 2017-08-01 09:03:36.031 |-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)
  65. 2017-08-01 09:03:36.031 |-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)
  66. 2017-08-01 09:03:36.031 |-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()
  67. 2017-08-01 09:03:36.032 |-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)
  68. 2017-08-01 09:03:36.033 |-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)
  69. 2017-08-01 09:03:36.033 |-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)
  70. 2017-08-01 09:03:36.033 |-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)
  71. 2017-08-01 09:03:36.034 |-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)
  72. 2017-08-01 09:03:36.034 |-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)
  73. 2017-08-01 09:03:36.034 |-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)
  74. 2017-08-01 09:03:36.034 |-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()
  75. 2017-08-01 09:03:36.035 |-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)
  76. 2017-08-01 09:03:36.036 |-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)
  77. 2017-08-01 09:03:36.036 |-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)
  78. 2017-08-01 09:03:36.036 |-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)
  79. 2017-08-01 09:03:36.036 |-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)
  80. 2017-08-01 09:03:36.037 |-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)
  81. 2017-08-01 09:03:36.037 |-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)
  82. 2017-08-01 09:03:36.037 |-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>)
  83. 2017-08-01 09:03:36.038 |-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)
  84. 2017-08-01 09:03:36.038 |-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)
  85. 2017-08-01 09:03:36.038 |-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)
  86. 2017-08-01 09:03:36.039 |-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)
  87. 2017-08-01 09:03:36.040 |-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)
  88. 2017-08-01 09:03:36.040 |-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)
  89. 2017-08-01 09:03:36.040 |-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)
  90. 2017-08-01 09:03:36.041 |-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)
  91. 2017-08-01 09:03:36.041 |-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)
  92. 2017-08-01 09:03:36.043 |-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()
  93. 2017-08-01 09:03:36.043 |-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
  94. 2017-08-01 09:03:36.043 |-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()
  95. 2017-08-01 09:03:36.044 |-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)
  96. 2017-08-01 09:03:36.044 |-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)
  97. 2017-08-01 09:03:36.044 |-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)
  98. 2017-08-01 09:03:36.044 |-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)
  99. 2017-08-01 09:03:36.045 |-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)
  100. 2017-08-01 09:03:36.045 |-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)
  101. 2017-08-01 09:03:36.045 |-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)
  102. 2017-08-01 09:03:36.045 |-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()
  103. 2017-08-01 09:03:36.046 |-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)
  104. 2017-08-01 09:03:36.047 |-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)
  105. 2017-08-01 09:03:36.047 |-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)
  106. 2017-08-01 09:03:36.048 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  107. 2017-08-01 09:03:36.048 |-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)
  108. 2017-08-01 09:03:36.048 |-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)
  109. 2017-08-01 09:03:36.048 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
  110. 2017-08-01 09:03:36.049 |-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)
  111. 2017-08-01 09:03:36.049 |-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)
  112. 2017-08-01 09:03:36.050 |-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
  113. 2017-08-01 09:03:36.050 |-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)
  114. 2017-08-01 09:03:36.051 |-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)
  115. 2017-08-01 09:03:36.051 |-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)
  116. 2017-08-01 09:03:36.051 |-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)
  117. 2017-08-01 09:03:36.051 |-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)
  118. 2017-08-01 09:03:36.053 |-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
  119. 2017-08-01 09:03:36.053 |-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
  120. 2017-08-01 09:03:36.053 |-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
  121. 2017-08-01 09:03:36.053 |-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)
  122. 2017-08-01 09:03:36.054 |-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
  123. 2017-08-01 09:03:36.054 |-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)
  124. 2017-08-01 09:03:36.054 |-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()
  125. 2017-08-01 09:03:36.054 |-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)
  126. 2017-08-01 09:03:36.056 |-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
  127. 2017-08-01 09:03:36.056 |-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)
  128. 2017-08-01 09:03:36.056 |-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)
  129. 2017-08-01 09:03:36.057 |-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)
  130. 2017-08-01 09:03:36.057 |-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)
  131. 2017-08-01 09:03:36.057 |-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)
  132. 2017-08-01 09:03:36.057 |-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)
  133. 2017-08-01 09:03:36.058 |-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)
  134. 2017-08-01 09:03:36.058 |-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)
  135. 2017-08-01 09:03:36.058 |-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)
  136. 2017-08-01 09:03:36.059 |-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)
  137. 2017-08-01 09:03:36.060 |-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)
  138. 2017-08-01 09:03:36.061 |-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)
  139. 2017-08-01 09:03:36.061 |-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)
  140. 2017-08-01 09:03:36.061 |-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)
  141. 2017-08-01 09:03:36.061 |-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)
  142. 2017-08-01 09:03:36.062 |-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()
  143. 2017-08-01 09:03:36.062 |-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)
  144. 2017-08-01 09:03:36.065 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
  145. 2017-08-01 09:03:36.066 |-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)
  146. 2017-08-01 09:03:36.066 |-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)
  147. 2017-08-01 09:03:36.066 |-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)
  148. 2017-08-01 09:03:36.067 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
  149. 2017-08-01 09:03:36.067 |-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)
  150. 2017-08-01 09:03:36.067 |-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)
  151. 2017-08-01 09:03:36.068 |-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)
  152. 2017-08-01 09:03:36.068 |-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)
  153. 2017-08-01 09:03:36.068 |-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)
  154. 2017-08-01 09:03:36.068 |-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)
  155. 2017-08-01 09:03:36.069 |-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)
  156. 2017-08-01 09:03:36.069 |-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)
  157. 2017-08-01 09:03:36.069 |-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)
  158. 2017-08-01 09:03:36.070 |-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)
  159. 2017-08-01 09:03:36.070 |-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)
  160. 2017-08-01 09:03:36.070 |-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)
  161. 2017-08-01 09:03:36.071 |-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)
  162. 2017-08-01 09:03:36.071 |-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)
  163. 2017-08-01 09:03:36.071 |-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)
  164. 2017-08-01 09:03:36.071 |-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)
  165. 2017-08-01 09:03:36.072 |-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)
  166. 2017-08-01 09:03:36.072 |-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)
  167. 2017-08-01 09:03:36.074 |-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)
  168. 2017-08-01 09:03:36.075 |-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)
  169. 2017-08-01 09:03:36.075 |-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)
  170. 2017-08-01 09:03:36.076 |-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)
  171. 2017-08-01 09:03:36.076 |-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)
  172. 2017-08-01 09:03:36.076 |-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)
  173. 2017-08-01 09:03:36.076 |-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)
  174. 2017-08-01 09:03:36.077 |-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)
  175. 2017-08-01 09:03:36.077 |-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)
  176. 2017-08-01 09:03:36.077 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  177. 2017-08-01 09:03:36.078 |-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)
  178. 2017-08-01 09:03:36.078 |-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)
  179. 2017-08-01 09:03:36.078 |-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)
  180. 2017-08-01 09:03:36.079 |-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)
  181. 2017-08-01 09:03:36.079 |-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)
  182. 2017-08-01 09:03:36.080 |-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)
  183. 2017-08-01 09:03:36.080 |-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)
  184. 2017-08-01 09:03:36.081 |-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)
  185. 2017-08-01 09:03:36.081 |-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)
  186. 2017-08-01 09:03:36.081 |-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)
  187. 2017-08-01 09:03:36.081 |-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)
  188. 2017-08-01 09:03:36.082 |-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)
  189. 2017-08-01 09:03:36.082 |-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)
  190. 2017-08-01 09:03:36.082 |-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)
  191. 2017-08-01 09:03:36.082 |-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)
  192. 2017-08-01 09:03:36.083 |-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)
  193. 2017-08-01 09:03:36.083 |-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)
  194. 2017-08-01 09:03:36.084 |-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)
  195. 2017-08-01 09:03:36.084 |-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)
  196. 2017-08-01 09:03:36.084 |-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)
  197. 2017-08-01 09:03:36.084 |-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)
  198. 2017-08-01 09:03:36.084 |-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)
  199. 2017-08-01 09:03:36.085 |-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)
  200. 2017-08-01 09:03:36.085 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  201. 2017-08-01 09:03:36.085 |-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)
  202. 2017-08-01 09:03:36.085 |-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()
  203. 2017-08-01 09:03:36.085 |-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()
  204. 2017-08-01 09:03:36.086 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  205. 2017-08-01 09:03:36.086 |-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()
  206. 2017-08-01 09:03:36.086 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  207. 2017-08-01 09:03:36.086 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  208. 2017-08-01 09:03:36.087 |-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)
  209. 2017-08-01 09:03:36.087 |-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>)
  210. 2017-08-01 09:03:36.087 |-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>)
  211. 2017-08-01 09:03:36.088 |-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)
  212. 2017-08-01 09:03:36.089 |-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()
  213. 2017-08-01 09:03:36.089 |-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)
  214. 2017-08-01 09:03:36.089 |-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
  215. 2017-08-01 09:03:36.090 |-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)
  216. 2017-08-01 09:03:36.090 |-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)
  217. 2017-08-01 09:03:36.090 |-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)
  218. 2017-08-01 09:03:36.090 |-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)
  219. 2017-08-01 09:03:36.091 |-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)
  220. 2017-08-01 09:03:36.091 |-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()
  221. 2017-08-01 09:03:36.091 |-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)
  222. 2017-08-01 09:03:36.092 |-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)
  223. 2017-08-01 09:03:36.092 |-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)
  224. 2017-08-01 09:03:36.092 |-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)
  225. 2017-08-01 09:03:36.175 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  226. 2017-08-01 09:03:36.236 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  227. 2017-08-01 09:03:36.236 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  228. 2017-08-01 09:03:36.280 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  229. 2017-08-01 09:03:36.280 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  230. 2017-08-01 09:03:36.281 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  231. 2017-08-01 09:03:36.281 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  232. 2017-08-01 09:03:36.282 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  233. 2017-08-01 09:03:36.282 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  234. 2017-08-01 09:03:36.282 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  235. 2017-08-01 09:03:36.282 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  236. 2017-08-01 09:03:36.283 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  237. 2017-08-01 09:03:36.283 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  238. 2017-08-01 09:03:36.284 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  239. 2017-08-01 09:03:36.284 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  240. 2017-08-01 09:03:36.284 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  241. 2017-08-01 09:03:36.285 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  242. 2017-08-01 09:03:36.285 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  243. 2017-08-01 09:03:36.286 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  244. 2017-08-01 09:03:36.287 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  245. 2017-08-01 09:03:36.288 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  246. 2017-08-01 09:03:36.289 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  247. 2017-08-01 09:03:36.289 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  248. 2017-08-01 09:03:36.289 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  249. 2017-08-01 09:03:36.290 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  250. 2017-08-01 09:03:36.290 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  251. 2017-08-01 09:03:36.341 |-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]
  252. 2017-08-01 09:03:36.985 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  253. 2017-08-01 09:03:36.986 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  254. 2017-08-01 09:03:36.987 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  255. 2017-08-01 09:03:36.992 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  256. 2017-08-01 09:03:36.995 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  257. 2017-08-01 09:03:36.997 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  258. 2017-08-01 09:03:36.999 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  259. 2017-08-01 09:03:36.999 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  260. 2017-08-01 09:03:37.000 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  261. 2017-08-01 09:03:37.001 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  262. 2017-08-01 09:03:37.002 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  263. 2017-08-01 09:03:37.004 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  264. 2017-08-01 09:03:37.005 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  265. 2017-08-01 09:03:37.005 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  266. 2017-08-01 09:03:37.005 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  267. 2017-08-01 09:03:37.005 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  268. 2017-08-01 09:03:37.005 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  269. 2017-08-01 09:03:37.006 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  270. 2017-08-01 09:03:37.013 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  271. 2017-08-01 09:03:37.013 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  272. 2017-08-01 09:03:37.014 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  273. 2017-08-01 09:03:37.014 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  274. 2017-08-01 09:03:37.025 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  275. 2017-08-01 09:03:37.027 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  276. 2017-08-01 09:03:37.027 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  277. 2017-08-01 09:03:37.031 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  278. 2017-08-01 09:03:37.062 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  279. 2017-08-01 09:03:37.345 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  280. 2017-08-01 09:03:37.392 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  281. 2017-08-01 09:03:37.420 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  282. 2017-08-01 09:03:37.420 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  283. 2017-08-01 09:03:37.420 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  284. 2017-08-01 09:03:37.421 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  285. 2017-08-01 09:03:37.421 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  286. 2017-08-01 09:03:37.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()
  287. 2017-08-01 09:03:37.926 |-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
  288. 2017-08-01 09:03:37.926 |-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)
  289. 2017-08-01 09:03:37.926 |-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()
  290. 2017-08-01 09:03:37.927 |-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)
  291. 2017-08-01 09:03:37.928 |-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>)
  292. 2017-08-01 09:03:37.928 |-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()
  293. 2017-08-01 09:03:37.928 |-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)
  294. 2017-08-01 09:03:37.928 |-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()
  295. 2017-08-01 09:03:37.929 |-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()
  296. 2017-08-01 09:03:37.929 |-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)
  297. 2017-08-01 09:03:37.930 |-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()
  298. 2017-08-01 09:03:37.930 |-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()
  299. 2017-08-01 09:03:37.930 |-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()
  300. 2017-08-01 09:03:37.930 |-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()
  301. 2017-08-01 09:03:37.931 |-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()
  302. 2017-08-01 09:03:37.931 |-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)
  303. 2017-08-01 09:03:38.415 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  304. 2017-08-01 09:03:38.422 |-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
  305. 2017-08-01 09:03:38.593 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  306. 2017-08-01 09:03:38.595 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  307. 2017-08-01 09:03:38.595 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  308. 2017-08-01 09:03:38.604 |-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]
  309. 2017-08-01 09:03:38.607 |-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]
  310. 2017-08-01 09:03:38.607 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  311. 2017-08-01 09:03:38.612 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  312. 2017-08-01 09:03:38.613 |-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]
  313. 2017-08-01 09:03:38.631 |-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]
  314. 2017-08-01 09:03:38.641 |-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]
  315. 2017-08-01 09:03:38.645 |-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]
  316. 2017-08-01 09:03:38.647 |-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]
  317. 2017-08-01 09:03:38.649 |-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]
  318. 2017-08-01 09:03:38.652 |-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]
  319. 2017-08-01 09:03:38.657 |-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]
  320. 2017-08-01 09:03:38.659 |-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]
  321. 2017-08-01 09:03:38.661 |-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]
  322. 2017-08-01 09:03:38.663 |-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]
  323. 2017-08-01 09:03:38.664 |-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]
  324. 2017-08-01 09:03:38.723 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  325. 2017-08-01 09:03:39.219 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  326. 2017-08-01 09:03:39.236 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  327. 2017-08-01 09:03:39.288 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 39
  328. 2017-08-01 09:03:39.289 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  329. 2017-08-01 09:03:39.291 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  330. 2017-08-01 09:03:39.551 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  331. 2017-08-01 09:03:39.551 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  332. 2017-08-01 09:03:39.692 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 659
  333. 2017-08-01 09:03:39.692 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:659
  334. 2017-08-01 09:03:39.694 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  335. 2017-08-01 09:03:39.694 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  336. 2017-08-01 09:03:39.723 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  337. 2017-08-01 09:03:39.724 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:32
  338. 2017-08-01 09:03:39.744 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  339. 2017-08-01 09:03:39.745 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  340. 2017-08-01 09:03:39.774 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  341. 2017-08-01 09:03:39.775 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:659
  342. 2017-08-01 09:03:39.794 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  343. 2017-08-01 09:03:39.802 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  344. 2017-08-01 09:03:39.808 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  345. 2017-08-01 09:03:39.823 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  346. 2017-08-01 09:03:39.828 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 10.815 seconds (JVM running for 11.777)
  347. 2017-08-01 09:04:20.524 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  348. 2017-08-01 09:04:20.525 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  349. 2017-08-01 09:04:20.550 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 25 ms
  350. 2017-08-01 09:04:20.679 |-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= ?
  351. 2017-08-01 09:04:20.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  352. 2017-08-01 09:04:20.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  353. 2017-08-01 09:04:20.710 |-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
  354. 2017-08-01 09:04:20.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  355. 2017-08-01 09:04:20.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  356. 2017-08-01 09:04:20.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=?)
  357. 2017-08-01 09:04:20.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  358. 2017-08-01 09:04:20.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  359. 2017-08-01 09:04:20.791 |-ERROR [http-nio-8089-exec-2] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
  360. org.springframework.security.authentication.BadCredentialsException: 坏的凭证
  361. at org.springframework.security.authentication.dao.DaoAuthenticationProvider.additionalAuthenticationChecks(DaoAuthenticationProvider.java:98)
  362. at org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:166)
  363. at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:174)
  364. at com.xintong.visualinspection.service.impl.AuthServiceImpl.login(AuthServiceImpl.java:55)
  365. at com.xintong.visualinspection.controller.UserController.login(UserController.java:55)
  366. at com.xintong.visualinspection.controller.UserController$$FastClassBySpringCGLIB$$2dbaeec9.invoke(<generated>)
  367. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  368. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  369. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  370. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  371. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  372. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  373. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  374. at com.xintong.visualinspection.controller.UserController$$EnhancerBySpringCGLIB$$f6fd29d7.login(<generated>)
  375. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  376. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  377. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  378. at java.lang.reflect.Method.invoke(Method.java:497)
  379. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  380. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  381. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  382. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  383. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  384. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  385. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  386. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  387. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  388. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  389. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  390. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  391. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  392. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  393. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  394. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  395. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  396. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  397. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  398. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  399. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  400. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  401. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  402. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  403. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  404. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  405. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  406. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  407. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  408. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  409. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  410. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  411. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  412. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  413. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  414. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  415. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  416. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  417. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  418. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  419. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  420. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  421. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  422. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  423. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  424. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  425. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  426. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  427. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  428. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  429. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  430. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  431. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  432. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
  433. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  434. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  435. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  436. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  437. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  438. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  439. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  440. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  441. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  442. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  443. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  444. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  445. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  446. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  447. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  448. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  449. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  450. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  451. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  452. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  453. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  454. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  455. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  456. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  457. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  458. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  459. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  460. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  461. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  462. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  463. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  464. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  465. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  466. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  467. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  468. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  469. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  470. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  471. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  472. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  473. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  474. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  475. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  476. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  477. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  478. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  479. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  480. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  481. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  482. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  483. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  484. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  485. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  486. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  487. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  488. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  489. at java.lang.Thread.run(Thread.java:745)
  490. 2017-08-01 09:04:20.802 |-WARN [http-nio-8089-exec-2] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.security.authentication.BadCredentialsException: 坏的凭证
  491. 2017-08-01 09:04:24.955 |-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= ?
  492. 2017-08-01 09:04:24.956 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  493. 2017-08-01 09:04:24.984 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  494. 2017-08-01 09:04:24.986 |-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
  495. 2017-08-01 09:04:24.987 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  496. 2017-08-01 09:04:25.039 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  497. 2017-08-01 09:04:25.040 |-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=?)
  498. 2017-08-01 09:04:25.041 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  499. 2017-08-01 09:04:25.070 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  500. 2017-08-01 09:04:25.073 |-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= ?
  501. 2017-08-01 09:04:25.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  502. 2017-08-01 09:04:25.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  503. 2017-08-01 09:04:25.105 |-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
  504. 2017-08-01 09:04:25.105 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  505. 2017-08-01 09:04:25.139 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  506. 2017-08-01 09:04:25.141 |-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=?)
  507. 2017-08-01 09:04:25.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  508. 2017-08-01 09:04:25.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  509. 2017-08-01 09:04:25.534 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  510. 2017-08-01 09:04:25.534 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  511. 2017-08-01 09:04:25.599 |-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= ?
  512. 2017-08-01 09:04:25.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  513. 2017-08-01 09:04:25.631 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  514. 2017-08-01 09:04:25.633 |-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
  515. 2017-08-01 09:04:25.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  516. 2017-08-01 09:04:25.661 |-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= ?
  517. 2017-08-01 09:04:25.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  518. 2017-08-01 09:04:25.667 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  519. 2017-08-01 09:04:25.668 |-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=?)
  520. 2017-08-01 09:04:25.669 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  521. 2017-08-01 09:04:25.691 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  522. 2017-08-01 09:04:25.698 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  523. 2017-08-01 09:04:25.699 |-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
  524. 2017-08-01 09:04:25.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  525. 2017-08-01 09:04:25.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  526. 2017-08-01 09:04:25.735 |-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=?)
  527. 2017-08-01 09:04:25.735 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  528. 2017-08-01 09:04:25.750 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  529. 2017-08-01 09:04:25.752 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  530. 2017-08-01 09:04:25.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  531. 2017-08-01 09:04:25.802 |-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
  532. 2017-08-01 09:04:25.803 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  533. 2017-08-01 09:04:25.814 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  534. 2017-08-01 09:04:25.817 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  535. 2017-08-01 09:04:25.836 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  536. 2017-08-01 09:04:25.837 |-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
  537. 2017-08-01 09:04:25.837 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  538. 2017-08-01 09:04:25.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  539. 2017-08-01 09:04:25.917 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  540. 2017-08-01 09:04:25.917 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  541. 2017-08-01 09:04:25.950 |-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= ?
  542. 2017-08-01 09:04:25.951 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  543. 2017-08-01 09:04:25.979 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  544. 2017-08-01 09:04:25.980 |-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= ?
  545. 2017-08-01 09:04:25.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  546. 2017-08-01 09:04:25.981 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  547. 2017-08-01 09:04:25.982 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  548. 2017-08-01 09:04:26.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  549. 2017-08-01 09:04:26.010 |-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
  550. 2017-08-01 09:04:26.011 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  551. 2017-08-01 09:04:26.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  552. 2017-08-01 09:04:26.013 |-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=?)
  553. 2017-08-01 09:04:26.014 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  554. 2017-08-01 09:04:26.039 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  555. 2017-08-01 09:04:26.043 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  556. 2017-08-01 09:04:26.044 |-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=?)
  557. 2017-08-01 09:04:26.045 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  558. 2017-08-01 09:04:26.074 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  559. 2017-08-01 09:04:26.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  560. 2017-08-01 09:04:26.077 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  561. 2017-08-01 09:04:26.085 |-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
  562. 2017-08-01 09:04:26.086 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  563. 2017-08-01 09:04:26.112 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  564. 2017-08-01 09:04:26.112 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  565. 2017-08-01 09:04:26.115 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  566. 2017-08-01 09:04:26.118 |-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
  567. 2017-08-01 09:04:26.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  568. 2017-08-01 09:04:26.148 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  569. 2017-08-01 09:04:26.160 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  570. 2017-08-01 09:04:26.193 |-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= ?
  571. 2017-08-01 09:04:26.193 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  572. 2017-08-01 09:04:26.220 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  573. 2017-08-01 09:04:26.222 |-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
  574. 2017-08-01 09:04:26.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  575. 2017-08-01 09:04:26.257 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  576. 2017-08-01 09:04:26.258 |-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=?)
  577. 2017-08-01 09:04:26.259 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  578. 2017-08-01 09:04:26.287 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  579. 2017-08-01 09:04:26.321 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  580. 2017-08-01 09:04:26.325 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  581. 2017-08-01 09:04:26.343 |-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
  582. 2017-08-01 09:04:26.343 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  583. 2017-08-01 09:04:26.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  584. 2017-08-01 09:04:26.482 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  585. 2017-08-01 09:04:26.517 |-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= ?
  586. 2017-08-01 09:04:26.517 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  587. 2017-08-01 09:04:26.546 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  588. 2017-08-01 09:04:26.547 |-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
  589. 2017-08-01 09:04:26.547 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  590. 2017-08-01 09:04:26.582 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  591. 2017-08-01 09:04:26.583 |-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=?)
  592. 2017-08-01 09:04:26.583 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  593. 2017-08-01 09:04:26.612 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  594. 2017-08-01 09:04:26.648 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  595. 2017-08-01 09:04:26.650 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  596. 2017-08-01 09:04:26.669 |-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=?
  597. 2017-08-01 09:04:26.670 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  598. 2017-08-01 09:04:26.700 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  599. 2017-08-01 09:04:26.890 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  600. 2017-08-01 09:04:26.921 |-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= ?
  601. 2017-08-01 09:04:26.922 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  602. 2017-08-01 09:04:26.949 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  603. 2017-08-01 09:04:26.950 |-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
  604. 2017-08-01 09:04:26.950 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  605. 2017-08-01 09:04:26.984 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  606. 2017-08-01 09:04:26.985 |-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=?)
  607. 2017-08-01 09:04:26.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  608. 2017-08-01 09:04:27.015 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  609. 2017-08-01 09:04:27.055 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  610. 2017-08-01 09:04:27.057 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  611. 2017-08-01 09:04:27.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name 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
  612. 2017-08-01 09:04:27.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
  613. 2017-08-01 09:04:27.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  614. 2017-08-01 09:04:27.186 |-DEBUG [http-nio-8089-exec-7] 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 ?,?
  615. 2017-08-01 09:04:27.187 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
  616. 2017-08-01 09:04:27.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
  617. 2017-08-01 09:04:56.450 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  618. 2017-08-01 09:04:56.492 |-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= ?
  619. 2017-08-01 09:04:56.493 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  620. 2017-08-01 09:04:56.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  621. 2017-08-01 09:04:56.521 |-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
  622. 2017-08-01 09:04:56.521 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  623. 2017-08-01 09:04:56.554 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  624. 2017-08-01 09:04:56.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=?)
  625. 2017-08-01 09:04:56.555 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  626. 2017-08-01 09:04:56.583 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  627. 2017-08-01 09:04:56.632 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  628. 2017-08-01 09:04:56.635 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  629. 2017-08-01 09:04:56.637 |-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
  630. 2017-08-01 09:04:56.637 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  631. 2017-08-01 09:04:56.664 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  632. 2017-08-01 09:04:56.743 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  633. 2017-08-01 09:04:56.743 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  634. 2017-08-01 09:04:56.775 |-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= ?
  635. 2017-08-01 09:04:56.776 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  636. 2017-08-01 09:04:56.777 |-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= ?
  637. 2017-08-01 09:04:56.777 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  638. 2017-08-01 09:04:56.802 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  639. 2017-08-01 09:04:56.803 |-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
  640. 2017-08-01 09:04:56.804 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  641. 2017-08-01 09:04:56.805 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  642. 2017-08-01 09:04:56.806 |-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
  643. 2017-08-01 09:04:56.806 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  644. 2017-08-01 09:04:56.836 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  645. 2017-08-01 09:04:56.837 |-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=?)
  646. 2017-08-01 09:04:56.837 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  647. 2017-08-01 09:04:56.837 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  648. 2017-08-01 09:04:56.838 |-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=?)
  649. 2017-08-01 09:04:56.838 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  650. 2017-08-01 09:04:56.863 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  651. 2017-08-01 09:04:56.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  652. 2017-08-01 09:04:56.903 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  653. 2017-08-01 09:04:56.905 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  654. 2017-08-01 09:04:56.915 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  655. 2017-08-01 09:04:56.916 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  656. 2017-08-01 09:04:56.918 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  657. 2017-08-01 09:04:56.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  658. 2017-08-01 09:04:56.935 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  659. 2017-08-01 09:04:56.935 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  660. 2017-08-01 09:04:57.010 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  661. 2017-08-01 09:04:57.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  662. 2017-08-01 09:04:57.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  663. 2017-08-01 09:04:57.053 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  664. 2017-08-01 09:04:57.056 |-DEBUG [http-nio-8089-exec-9] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  665. 2017-08-01 09:04:57.057 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  666. 2017-08-01 09:04:57.097 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  667. 2017-08-01 09:04:57.098 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  668. 2017-08-01 09:04:57.099 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  669. 2017-08-01 09:04:57.170 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  670. 2017-08-01 09:04:57.187 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  671. 2017-08-01 09:07:01.121 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  672. 2017-08-01 09:07:01.121 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  673. 2017-08-01 09:07:01.270 |-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= ?
  674. 2017-08-01 09:07:01.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  675. 2017-08-01 09:07:01.273 |-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= ?
  676. 2017-08-01 09:07:01.274 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  677. 2017-08-01 09:07:01.298 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  678. 2017-08-01 09:07:01.303 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  679. 2017-08-01 09:07:01.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
  680. 2017-08-01 09:07:01.328 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  681. 2017-08-01 09:07:01.330 |-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
  682. 2017-08-01 09:07:01.330 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  683. 2017-08-01 09:07:01.361 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  684. 2017-08-01 09:07:01.362 |-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=?)
  685. 2017-08-01 09:07:01.362 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  686. 2017-08-01 09:07:01.366 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  687. 2017-08-01 09:07:01.367 |-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=?)
  688. 2017-08-01 09:07:01.367 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  689. 2017-08-01 09:07:01.392 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  690. 2017-08-01 09:07:01.396 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  691. 2017-08-01 09:07:01.439 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  692. 2017-08-01 09:07:01.441 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  693. 2017-08-01 09:07:01.443 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  694. 2017-08-01 09:07:01.445 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  695. 2017-08-01 09:07:01.488 |-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
  696. 2017-08-01 09:07:01.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  697. 2017-08-01 09:07:01.517 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  698. 2017-08-01 09:07:01.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  699. 2017-08-01 09:07:01.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  700. 2017-08-01 09:07:01.550 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  701. 2017-08-01 09:07:01.590 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  702. 2017-08-01 09:07:01.590 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  703. 2017-08-01 09:07:01.623 |-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= ?
  704. 2017-08-01 09:07:01.624 |-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= ?
  705. 2017-08-01 09:07:01.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  706. 2017-08-01 09:07:01.624 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  707. 2017-08-01 09:07:01.657 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  708. 2017-08-01 09:07:01.657 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  709. 2017-08-01 09:07:01.659 |-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
  710. 2017-08-01 09:07:01.659 |-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
  711. 2017-08-01 09:07:01.659 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  712. 2017-08-01 09:07:01.659 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  713. 2017-08-01 09:07:01.690 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  714. 2017-08-01 09:07:01.691 |-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=?)
  715. 2017-08-01 09:07:01.691 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  716. 2017-08-01 09:07:01.692 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  717. 2017-08-01 09:07:01.693 |-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=?)
  718. 2017-08-01 09:07:01.693 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  719. 2017-08-01 09:07:01.719 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  720. 2017-08-01 09:07:01.721 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  721. 2017-08-01 09:07:01.753 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  722. 2017-08-01 09:07:01.755 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  723. 2017-08-01 09:07:01.757 |-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
  724. 2017-08-01 09:07:01.758 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  725. 2017-08-01 09:07:01.768 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  726. 2017-08-01 09:07:01.771 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  727. 2017-08-01 09:07:01.772 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  728. 2017-08-01 09:07:01.773 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  729. 2017-08-01 09:07:01.789 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  730. 2017-08-01 09:07:01.799 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  731. 2017-08-01 09:07:01.799 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  732. 2017-08-01 09:07:01.831 |-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= ?
  733. 2017-08-01 09:07:01.832 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  734. 2017-08-01 09:07:01.868 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  735. 2017-08-01 09:07:01.869 |-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
  736. 2017-08-01 09:07:01.870 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  737. 2017-08-01 09:07:01.902 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  738. 2017-08-01 09:07:01.904 |-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=?)
  739. 2017-08-01 09:07:01.904 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  740. 2017-08-01 09:07:01.933 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  741. 2017-08-01 09:07:01.967 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  742. 2017-08-01 09:07:01.969 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  743. 2017-08-01 09:07:01.974 |-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
  744. 2017-08-01 09:07:01.975 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  745. 2017-08-01 09:07:02.079 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  746. 2017-08-01 09:07:02.108 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  747. 2017-08-01 09:07:02.141 |-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= ?
  748. 2017-08-01 09:07:02.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  749. 2017-08-01 09:07:02.171 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  750. 2017-08-01 09:07:02.172 |-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
  751. 2017-08-01 09:07:02.173 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  752. 2017-08-01 09:07:02.206 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  753. 2017-08-01 09:07:02.207 |-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=?)
  754. 2017-08-01 09:07:02.207 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  755. 2017-08-01 09:07:02.272 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  756. 2017-08-01 09:07:02.306 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  757. 2017-08-01 09:07:02.307 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  758. 2017-08-01 09:07:02.310 |-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=?
  759. 2017-08-01 09:07:02.311 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  760. 2017-08-01 09:07:02.340 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  761. 2017-08-01 09:07:02.398 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  762. 2017-08-01 09:07:02.431 |-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= ?
  763. 2017-08-01 09:07:02.432 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  764. 2017-08-01 09:07:02.465 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  765. 2017-08-01 09:07:02.466 |-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
  766. 2017-08-01 09:07:02.466 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  767. 2017-08-01 09:07:02.500 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  768. 2017-08-01 09:07:02.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  769. 2017-08-01 09:07:02.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  770. 2017-08-01 09:07:02.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  771. 2017-08-01 09:07:02.564 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  772. 2017-08-01 09:07:02.566 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  773. 2017-08-01 09:07:02.567 |-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
  774. 2017-08-01 09:07:02.568 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  775. 2017-08-01 09:07:02.596 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  776. 2017-08-01 09:07:02.669 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  777. 2017-08-01 09:07:02.669 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  778. 2017-08-01 09:07:02.702 |-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= ?
  779. 2017-08-01 09:07:02.702 |-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= ?
  780. 2017-08-01 09:07:02.702 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  781. 2017-08-01 09:07:02.703 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  782. 2017-08-01 09:07:02.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  783. 2017-08-01 09:07:02.733 |-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
  784. 2017-08-01 09:07:02.733 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  785. 2017-08-01 09:07:02.733 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  786. 2017-08-01 09:07:02.734 |-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
  787. 2017-08-01 09:07:02.734 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  788. 2017-08-01 09:07:02.764 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  789. 2017-08-01 09:07:02.765 |-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=?)
  790. 2017-08-01 09:07:02.766 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  791. 2017-08-01 09:07:02.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  792. 2017-08-01 09:07:02.767 |-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=?)
  793. 2017-08-01 09:07:02.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  794. 2017-08-01 09:07:02.793 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  795. 2017-08-01 09:07:02.795 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  796. 2017-08-01 09:07:02.827 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  797. 2017-08-01 09:07:02.830 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  798. 2017-08-01 09:07:02.833 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  799. 2017-08-01 09:07:02.834 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  800. 2017-08-01 09:07:02.842 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  801. 2017-08-01 09:07:02.844 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  802. 2017-08-01 09:07:02.854 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  803. 2017-08-01 09:07:02.855 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  804. 2017-08-01 09:07:02.938 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  805. 2017-08-01 09:07:02.940 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  806. 2017-08-01 09:07:02.941 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  807. 2017-08-01 09:07:02.975 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  808. 2017-08-01 09:07:02.978 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  809. 2017-08-01 09:07:02.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  810. 2017-08-01 09:07:03.033 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  811. 2017-08-01 09:07:03.034 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  812. 2017-08-01 09:07:03.035 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  813. 2017-08-01 09:07:03.096 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  814. 2017-08-01 09:07:03.121 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  815. 2017-08-01 09:07:04.368 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  816. 2017-08-01 09:07:04.411 |-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= ?
  817. 2017-08-01 09:07:04.411 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  818. 2017-08-01 09:07:04.449 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  819. 2017-08-01 09:07:04.450 |-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
  820. 2017-08-01 09:07:04.451 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  821. 2017-08-01 09:07:04.484 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  822. 2017-08-01 09:07:04.485 |-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=?)
  823. 2017-08-01 09:07:04.485 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  824. 2017-08-01 09:07:04.514 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  825. 2017-08-01 09:07:04.571 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  826. 2017-08-01 09:07:04.574 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  827. 2017-08-01 09:07:04.576 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  828. 2017-08-01 09:07:04.577 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  829. 2017-08-01 09:07:04.608 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  830. 2017-08-01 09:07:23.432 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  831. 2017-08-01 09:07:23.432 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  832. 2017-08-01 09:07:23.463 |-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= ?
  833. 2017-08-01 09:07:23.464 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  834. 2017-08-01 09:07:23.467 |-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= ?
  835. 2017-08-01 09:07:23.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  836. 2017-08-01 09:07:23.494 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  837. 2017-08-01 09:07:23.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  838. 2017-08-01 09:07:23.495 |-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
  839. 2017-08-01 09:07:23.495 |-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
  840. 2017-08-01 09:07:23.496 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  841. 2017-08-01 09:07:23.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  842. 2017-08-01 09:07:23.527 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  843. 2017-08-01 09:07:23.528 |-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=?)
  844. 2017-08-01 09:07:23.528 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  845. 2017-08-01 09:07:23.530 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  846. 2017-08-01 09:07:23.531 |-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=?)
  847. 2017-08-01 09:07:23.531 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  848. 2017-08-01 09:07:23.560 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  849. 2017-08-01 09:07:23.562 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  850. 2017-08-01 09:07:23.608 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  851. 2017-08-01 09:07:23.610 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  852. 2017-08-01 09:07:23.610 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  853. 2017-08-01 09:07:23.611 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  854. 2017-08-01 09:07:23.647 |-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
  855. 2017-08-01 09:07:23.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  856. 2017-08-01 09:07:23.676 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  857. 2017-08-01 09:07:23.677 |-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
  858. 2017-08-01 09:07:23.678 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  859. 2017-08-01 09:07:23.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  860. 2017-08-01 09:07:23.753 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  861. 2017-08-01 09:07:23.753 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  862. 2017-08-01 09:07:23.787 |-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= ?
  863. 2017-08-01 09:07:23.787 |-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= ?
  864. 2017-08-01 09:07:23.787 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  865. 2017-08-01 09:07:23.788 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  866. 2017-08-01 09:07:23.822 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  867. 2017-08-01 09:07:23.823 |-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
  868. 2017-08-01 09:07:23.823 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  869. 2017-08-01 09:07:23.827 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  870. 2017-08-01 09:07:23.828 |-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
  871. 2017-08-01 09:07:23.828 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  872. 2017-08-01 09:07:23.855 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  873. 2017-08-01 09:07:23.856 |-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=?)
  874. 2017-08-01 09:07:23.857 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  875. 2017-08-01 09:07:23.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  876. 2017-08-01 09:07:23.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  877. 2017-08-01 09:07:23.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  878. 2017-08-01 09:07:23.887 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  879. 2017-08-01 09:07:23.904 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  880. 2017-08-01 09:07:23.920 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  881. 2017-08-01 09:07:23.922 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  882. 2017-08-01 09:07:23.924 |-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
  883. 2017-08-01 09:07:23.924 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  884. 2017-08-01 09:07:23.936 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  885. 2017-08-01 09:07:23.938 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  886. 2017-08-01 09:07:23.940 |-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
  887. 2017-08-01 09:07:23.940 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  888. 2017-08-01 09:07:23.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  889. 2017-08-01 09:07:23.962 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  890. 2017-08-01 09:07:23.972 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  891. 2017-08-01 09:07:23.993 |-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= ?
  892. 2017-08-01 09:07:23.994 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  893. 2017-08-01 09:07:24.022 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  894. 2017-08-01 09:07:24.023 |-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
  895. 2017-08-01 09:07:24.023 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  896. 2017-08-01 09:07:24.060 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  897. 2017-08-01 09:07:24.061 |-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=?)
  898. 2017-08-01 09:07:24.061 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  899. 2017-08-01 09:07:24.090 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  900. 2017-08-01 09:07:24.124 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  901. 2017-08-01 09:07:24.126 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  902. 2017-08-01 09:07:24.131 |-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
  903. 2017-08-01 09:07:24.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  904. 2017-08-01 09:07:24.237 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  905. 2017-08-01 09:07:24.266 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  906. 2017-08-01 09:07:24.305 |-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= ?
  907. 2017-08-01 09:07:24.306 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  908. 2017-08-01 09:07:24.359 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  909. 2017-08-01 09:07:24.360 |-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
  910. 2017-08-01 09:07:24.360 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  911. 2017-08-01 09:07:24.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  912. 2017-08-01 09:07:24.396 |-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=?)
  913. 2017-08-01 09:07:24.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  914. 2017-08-01 09:07:24.425 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  915. 2017-08-01 09:07:24.460 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  916. 2017-08-01 09:07:24.462 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  917. 2017-08-01 09:07:24.466 |-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=?
  918. 2017-08-01 09:07:24.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  919. 2017-08-01 09:07:24.497 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  920. 2017-08-01 09:07:24.549 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  921. 2017-08-01 09:07:24.582 |-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= ?
  922. 2017-08-01 09:07:24.583 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  923. 2017-08-01 09:07:24.611 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  924. 2017-08-01 09:07:24.612 |-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
  925. 2017-08-01 09:07:24.613 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  926. 2017-08-01 09:07:24.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  927. 2017-08-01 09:07:24.649 |-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=?)
  928. 2017-08-01 09:07:24.649 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  929. 2017-08-01 09:07:24.677 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  930. 2017-08-01 09:07:24.710 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  931. 2017-08-01 09:07:24.712 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  932. 2017-08-01 09:07:24.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  933. 2017-08-01 09:07:24.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  934. 2017-08-01 09:07:24.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  935. 2017-08-01 09:07:24.821 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  936. 2017-08-01 09:07:24.821 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  937. 2017-08-01 09:07:24.862 |-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= ?
  938. 2017-08-01 09:07:24.863 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  939. 2017-08-01 09:07:24.872 |-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= ?
  940. 2017-08-01 09:07:24.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  941. 2017-08-01 09:07:24.901 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  942. 2017-08-01 09:07:24.903 |-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
  943. 2017-08-01 09:07:24.903 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  944. 2017-08-01 09:07:24.913 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  945. 2017-08-01 09:07:24.914 |-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
  946. 2017-08-01 09:07:24.915 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  947. 2017-08-01 09:07:24.936 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  948. 2017-08-01 09:07:24.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=?)
  949. 2017-08-01 09:07:24.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  950. 2017-08-01 09:07:24.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  951. 2017-08-01 09:07:24.947 |-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=?)
  952. 2017-08-01 09:07:24.948 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  953. 2017-08-01 09:07:24.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  954. 2017-08-01 09:07:24.977 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  955. 2017-08-01 09:07:25.010 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  956. 2017-08-01 09:07:25.011 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  957. 2017-08-01 09:07:25.012 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  958. 2017-08-01 09:07:25.013 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  959. 2017-08-01 09:07:25.015 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  960. 2017-08-01 09:07:25.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  961. 2017-08-01 09:07:25.021 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  962. 2017-08-01 09:07:25.022 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  963. 2017-08-01 09:07:25.120 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  964. 2017-08-01 09:07:25.121 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  965. 2017-08-01 09:07:25.122 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  966. 2017-08-01 09:07:25.142 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  967. 2017-08-01 09:07:25.144 |-DEBUG [http-nio-8089-exec-5] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  968. 2017-08-01 09:07:25.145 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  969. 2017-08-01 09:07:25.224 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  970. 2017-08-01 09:07:25.225 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  971. 2017-08-01 09:07:25.225 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  972. 2017-08-01 09:07:25.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  973. 2017-08-01 09:07:25.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  974. 2017-08-01 09:07:28.235 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  975. 2017-08-01 09:07:28.269 |-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= ?
  976. 2017-08-01 09:07:28.270 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  977. 2017-08-01 09:07:28.297 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  978. 2017-08-01 09:07:28.298 |-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
  979. 2017-08-01 09:07:28.298 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  980. 2017-08-01 09:07:28.329 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  981. 2017-08-01 09:07:28.330 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  982. 2017-08-01 09:07:28.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  983. 2017-08-01 09:07:28.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  984. 2017-08-01 09:07:28.405 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  985. 2017-08-01 09:07:28.407 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  986. 2017-08-01 09:07:28.409 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  987. 2017-08-01 09:07:28.410 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  988. 2017-08-01 09:07:28.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  989. 2017-08-01 09:09:44.984 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  990. 2017-08-01 09:09:44.984 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  991. 2017-08-01 09:09:45.148 |-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= ?
  992. 2017-08-01 09:09:45.149 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  993. 2017-08-01 09:09:45.181 |-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= ?
  994. 2017-08-01 09:09:45.181 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  995. 2017-08-01 09:09:45.224 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  996. 2017-08-01 09:09:45.229 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  997. 2017-08-01 09:09:45.262 |-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
  998. 2017-08-01 09:09:45.263 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  999. 2017-08-01 09:09:45.276 |-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
  1000. 2017-08-01 09:09:45.277 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1001. 2017-08-01 09:09:45.299 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1002. 2017-08-01 09:09:45.300 |-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=?)
  1003. 2017-08-01 09:09:45.301 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1004. 2017-08-01 09:09:45.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1005. 2017-08-01 09:09:45.338 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1006. 2017-08-01 09:09:45.339 |-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=?)
  1007. 2017-08-01 09:09:45.340 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1008. 2017-08-01 09:09:45.376 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1009. 2017-08-01 09:09:45.406 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1010. 2017-08-01 09:09:45.407 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1011. 2017-08-01 09:09:45.446 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1012. 2017-08-01 09:09:45.447 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1013. 2017-08-01 09:09:45.480 |-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
  1014. 2017-08-01 09:09:45.481 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  1015. 2017-08-01 09:09:45.517 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  1016. 2017-08-01 09:09:45.518 |-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
  1017. 2017-08-01 09:09:45.518 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1018. 2017-08-01 09:09:45.581 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1019. 2017-08-01 09:09:45.623 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1020. 2017-08-01 09:09:45.623 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1021. 2017-08-01 09:09:45.655 |-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= ?
  1022. 2017-08-01 09:09:45.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1023. 2017-08-01 09:09:45.692 |-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= ?
  1024. 2017-08-01 09:09:45.693 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1025. 2017-08-01 09:09:45.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1026. 2017-08-01 09:09:45.712 |-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
  1027. 2017-08-01 09:09:45.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1028. 2017-08-01 09:09:45.758 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1029. 2017-08-01 09:09:45.759 |-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
  1030. 2017-08-01 09:09:45.760 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1031. 2017-08-01 09:09:45.773 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1032. 2017-08-01 09:09:45.775 |-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=?)
  1033. 2017-08-01 09:09:45.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1034. 2017-08-01 09:09:45.793 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1035. 2017-08-01 09:09:45.794 |-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=?)
  1036. 2017-08-01 09:09:45.795 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1037. 2017-08-01 09:09:45.825 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1038. 2017-08-01 09:09:45.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1039. 2017-08-01 09:09:45.862 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1040. 2017-08-01 09:09:45.864 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1041. 2017-08-01 09:09:45.866 |-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
  1042. 2017-08-01 09:09:45.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1043. 2017-08-01 09:09:45.895 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1044. 2017-08-01 09:09:45.896 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1045. 2017-08-01 09:09:45.898 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1046. 2017-08-01 09:09:45.899 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1047. 2017-08-01 09:09:45.913 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1048. 2017-08-01 09:09:45.947 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1049. 2017-08-01 09:09:45.956 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1050. 2017-08-01 09:09:46.016 |-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= ?
  1051. 2017-08-01 09:09:46.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1052. 2017-08-01 09:09:46.091 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1053. 2017-08-01 09:09:46.092 |-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
  1054. 2017-08-01 09:09:46.093 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1055. 2017-08-01 09:09:46.169 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1056. 2017-08-01 09:09:46.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1057. 2017-08-01 09:09:46.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1058. 2017-08-01 09:09:46.254 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1059. 2017-08-01 09:09:46.357 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1060. 2017-08-01 09:09:46.358 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1061. 2017-08-01 09:09:46.364 |-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
  1062. 2017-08-01 09:09:46.364 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1063. 2017-08-01 09:09:47.179 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  1064. 2017-08-01 09:09:47.207 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1065. 2017-08-01 09:09:47.260 |-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= ?
  1066. 2017-08-01 09:09:47.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1067. 2017-08-01 09:09:47.301 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1068. 2017-08-01 09:09:47.302 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1069. 2017-08-01 09:09:47.303 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1070. 2017-08-01 09:09:47.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1071. 2017-08-01 09:09:47.335 |-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=?)
  1072. 2017-08-01 09:09:47.335 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1073. 2017-08-01 09:09:47.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1074. 2017-08-01 09:09:47.432 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1075. 2017-08-01 09:09:47.434 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1076. 2017-08-01 09:09:47.436 |-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=?
  1077. 2017-08-01 09:09:47.437 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1078. 2017-08-01 09:09:47.494 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  1079. 2017-08-01 09:09:47.560 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1080. 2017-08-01 09:09:47.606 |-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= ?
  1081. 2017-08-01 09:09:47.607 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1082. 2017-08-01 09:09:47.640 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1083. 2017-08-01 09:09:47.642 |-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
  1084. 2017-08-01 09:09:47.642 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1085. 2017-08-01 09:09:47.699 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1086. 2017-08-01 09:09:47.700 |-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=?)
  1087. 2017-08-01 09:09:47.701 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1088. 2017-08-01 09:09:47.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1089. 2017-08-01 09:09:47.806 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1090. 2017-08-01 09:09:47.808 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1091. 2017-08-01 09:09:47.809 |-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
  1092. 2017-08-01 09:09:47.810 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1093. 2017-08-01 09:09:47.874 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1094. 2017-08-01 09:09:47.974 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1095. 2017-08-01 09:09:47.975 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1096. 2017-08-01 09:09:48.034 |-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= ?
  1097. 2017-08-01 09:09:48.034 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1098. 2017-08-01 09:09:48.039 |-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= ?
  1099. 2017-08-01 09:09:48.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1100. 2017-08-01 09:09:48.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1101. 2017-08-01 09:09:48.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
  1102. 2017-08-01 09:09:48.097 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1103. 2017-08-01 09:09:48.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1104. 2017-08-01 09:09:48.101 |-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
  1105. 2017-08-01 09:09:48.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1106. 2017-08-01 09:09:48.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1107. 2017-08-01 09:09:48.145 |-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=?)
  1108. 2017-08-01 09:09:48.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1109. 2017-08-01 09:09:48.168 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1110. 2017-08-01 09:09:48.169 |-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=?)
  1111. 2017-08-01 09:09:48.170 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1112. 2017-08-01 09:09:48.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1113. 2017-08-01 09:09:48.226 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1114. 2017-08-01 09:09:48.242 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1115. 2017-08-01 09:09:48.244 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1116. 2017-08-01 09:09:48.253 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1117. 2017-08-01 09:09:48.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1118. 2017-08-01 09:09:48.271 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1119. 2017-08-01 09:09:48.272 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1120. 2017-08-01 09:09:48.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1121. 2017-08-01 09:09:48.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1122. 2017-08-01 09:09:48.363 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1123. 2017-08-01 09:09:48.364 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1124. 2017-08-01 09:09:48.365 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1125. 2017-08-01 09:09:48.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1126. 2017-08-01 09:09:48.394 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1127. 2017-08-01 09:09:48.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1128. 2017-08-01 09:09:48.454 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1129. 2017-08-01 09:09:48.455 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1130. 2017-08-01 09:09:48.456 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1131. 2017-08-01 09:09:48.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1132. 2017-08-01 09:09:48.540 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1133. 2017-08-01 09:09:56.775 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1134. 2017-08-01 09:09:56.823 |-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= ?
  1135. 2017-08-01 09:09:56.823 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1136. 2017-08-01 09:09:56.892 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1137. 2017-08-01 09:09:56.893 |-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
  1138. 2017-08-01 09:09:56.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1139. 2017-08-01 09:09:56.932 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1140. 2017-08-01 09:09:56.933 |-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=?)
  1141. 2017-08-01 09:09:56.933 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1142. 2017-08-01 09:09:56.962 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1143. 2017-08-01 09:09:57.008 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1144. 2017-08-01 09:09:57.009 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1145. 2017-08-01 09:09:57.011 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  1146. 2017-08-01 09:09:57.011 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  1147. 2017-08-01 09:09:57.041 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  1148. 2017-08-01 09:09:57.090 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1149. 2017-08-01 09:09:57.094 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1150. 2017-08-01 09:09:57.133 |-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= ?
  1151. 2017-08-01 09:09:57.134 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1152. 2017-08-01 09:09:57.175 |-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= ?
  1153. 2017-08-01 09:09:57.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1154. 2017-08-01 09:09:57.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1155. 2017-08-01 09:09:57.212 |-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
  1156. 2017-08-01 09:09:57.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1157. 2017-08-01 09:09:57.243 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1158. 2017-08-01 09:09:57.243 |-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
  1159. 2017-08-01 09:09:57.244 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1160. 2017-08-01 09:09:57.247 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1161. 2017-08-01 09:09:57.248 |-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=?)
  1162. 2017-08-01 09:09:57.248 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1163. 2017-08-01 09:09:57.278 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1164. 2017-08-01 09:09:57.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1165. 2017-08-01 09:09:57.312 |-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=?)
  1166. 2017-08-01 09:09:57.313 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1167. 2017-08-01 09:09:57.368 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1168. 2017-08-01 09:09:57.369 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1169. 2017-08-01 09:09:57.374 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  1170. 2017-08-01 09:09:57.374 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  1171. 2017-08-01 09:09:57.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  1172. 2017-08-01 09:09:57.629 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1173. 2017-08-01 09:09:57.726 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1174. 2017-08-01 09:09:57.728 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1175. 2017-08-01 09:09:57.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  1176. 2017-08-01 09:09:57.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  1177. 2017-08-01 09:09:57.821 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  1178. 2017-08-01 09:10:01.124 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1179. 2017-08-01 09:10:01.158 |-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= ?
  1180. 2017-08-01 09:10:01.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1181. 2017-08-01 09:10:01.187 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1182. 2017-08-01 09:10:01.188 |-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
  1183. 2017-08-01 09:10:01.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1184. 2017-08-01 09:10:01.221 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1185. 2017-08-01 09:10:01.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=?)
  1186. 2017-08-01 09:10:01.223 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1187. 2017-08-01 09:10:01.249 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1188. 2017-08-01 09:10:01.296 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1189. 2017-08-01 09:10:01.298 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1190. 2017-08-01 09:10:01.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  1191. 2017-08-01 09:10:01.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1192. 2017-08-01 09:10:01.333 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1193. 2017-08-01 09:10:01.403 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1194. 2017-08-01 09:10:01.403 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1195. 2017-08-01 09:10:01.439 |-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= ?
  1196. 2017-08-01 09:10:01.439 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1197. 2017-08-01 09:10:01.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1198. 2017-08-01 09:10:01.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
  1199. 2017-08-01 09:10:01.492 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1200. 2017-08-01 09:10:01.501 |-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= ?
  1201. 2017-08-01 09:10:01.502 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1202. 2017-08-01 09:10:01.542 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1203. 2017-08-01 09:10:01.543 |-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=?)
  1204. 2017-08-01 09:10:01.544 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1205. 2017-08-01 09:10:01.551 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1206. 2017-08-01 09:10:01.553 |-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
  1207. 2017-08-01 09:10:01.553 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1208. 2017-08-01 09:10:01.585 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1209. 2017-08-01 09:10:01.589 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1210. 2017-08-01 09:10:01.590 |-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=?)
  1211. 2017-08-01 09:10:01.590 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1212. 2017-08-01 09:10:01.625 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1213. 2017-08-01 09:10:01.625 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1214. 2017-08-01 09:10:01.627 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1215. 2017-08-01 09:10:01.635 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1216. 2017-08-01 09:10:01.635 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1217. 2017-08-01 09:10:01.673 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1218. 2017-08-01 09:10:01.674 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1219. 2017-08-01 09:10:01.677 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1220. 2017-08-01 09:10:01.678 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1221. 2017-08-01 09:10:01.751 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1222. 2017-08-01 09:10:01.752 |-DEBUG [http-nio-8089-exec-5] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1223. 2017-08-01 09:10:01.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1224. 2017-08-01 09:10:01.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1225. 2017-08-01 09:10:01.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1226. 2017-08-01 09:10:01.789 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1227. 2017-08-01 09:10:01.879 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1228. 2017-08-01 09:10:01.898 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1229. 2017-08-01 09:10:01.899 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1230. 2017-08-01 09:10:01.900 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1231. 2017-08-01 09:10:02.000 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1232. 2017-08-01 09:10:04.647 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1233. 2017-08-01 09:10:04.681 |-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= ?
  1234. 2017-08-01 09:10:04.682 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1235. 2017-08-01 09:10:04.714 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1236. 2017-08-01 09:10:04.715 |-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
  1237. 2017-08-01 09:10:04.715 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1238. 2017-08-01 09:10:04.747 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1239. 2017-08-01 09:10:04.748 |-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=?)
  1240. 2017-08-01 09:10:04.749 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1241. 2017-08-01 09:10:04.833 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1242. 2017-08-01 09:10:04.900 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1243. 2017-08-01 09:10:04.902 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1244. 2017-08-01 09:10:04.904 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  1245. 2017-08-01 09:10:04.904 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  1246. 2017-08-01 09:10:04.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  1247. 2017-08-01 09:10:04.991 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1248. 2017-08-01 09:10:04.991 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1249. 2017-08-01 09:10:05.022 |-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= ?
  1250. 2017-08-01 09:10:05.023 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1251. 2017-08-01 09:10:05.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1252. 2017-08-01 09:10:05.124 |-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= ?
  1253. 2017-08-01 09:10:05.124 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1254. 2017-08-01 09:10:05.124 |-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
  1255. 2017-08-01 09:10:05.125 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1256. 2017-08-01 09:10:05.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1257. 2017-08-01 09:10:05.191 |-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
  1258. 2017-08-01 09:10:05.192 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1259. 2017-08-01 09:10:05.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1260. 2017-08-01 09:10:05.193 |-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=?)
  1261. 2017-08-01 09:10:05.194 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1262. 2017-08-01 09:10:05.226 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1263. 2017-08-01 09:10:05.227 |-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=?)
  1264. 2017-08-01 09:10:05.227 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1265. 2017-08-01 09:10:05.256 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1266. 2017-08-01 09:10:05.266 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1267. 2017-08-01 09:10:05.313 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1268. 2017-08-01 09:10:05.315 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1269. 2017-08-01 09:10:05.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  1270. 2017-08-01 09:10:05.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  1271. 2017-08-01 09:10:05.396 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1272. 2017-08-01 09:10:05.398 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1273. 2017-08-01 09:10:05.402 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  1274. 2017-08-01 09:10:05.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  1275. 2017-08-01 09:10:05.403 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  1276. 2017-08-01 09:10:05.437 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  1277. 2017-08-01 09:10:11.189 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1278. 2017-08-01 09:10:11.237 |-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= ?
  1279. 2017-08-01 09:10:11.237 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1280. 2017-08-01 09:10:11.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1281. 2017-08-01 09:10:11.283 |-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
  1282. 2017-08-01 09:10:11.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1283. 2017-08-01 09:10:11.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1284. 2017-08-01 09:10:11.319 |-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=?)
  1285. 2017-08-01 09:10:11.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1286. 2017-08-01 09:10:11.348 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1287. 2017-08-01 09:10:11.401 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1288. 2017-08-01 09:10:11.402 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1289. 2017-08-01 09:10:11.403 |-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
  1290. 2017-08-01 09:10:11.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1291. 2017-08-01 09:10:11.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1292. 2017-08-01 09:10:11.514 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1293. 2017-08-01 09:10:11.514 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1294. 2017-08-01 09:10:11.545 |-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= ?
  1295. 2017-08-01 09:10:11.546 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1296. 2017-08-01 09:10:11.574 |-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= ?
  1297. 2017-08-01 09:10:11.575 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1298. 2017-08-01 09:10:11.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1299. 2017-08-01 09:10:11.592 |-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
  1300. 2017-08-01 09:10:11.592 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1301. 2017-08-01 09:10:11.625 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1302. 2017-08-01 09:10:11.626 |-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=?)
  1303. 2017-08-01 09:10:11.627 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1304. 2017-08-01 09:10:11.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1305. 2017-08-01 09:10:11.635 |-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
  1306. 2017-08-01 09:10:11.635 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1307. 2017-08-01 09:10:11.655 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1308. 2017-08-01 09:10:11.677 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1309. 2017-08-01 09:10:11.678 |-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=?)
  1310. 2017-08-01 09:10:11.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1311. 2017-08-01 09:10:11.703 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1312. 2017-08-01 09:10:11.705 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1313. 2017-08-01 09:10:11.714 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1314. 2017-08-01 09:10:11.714 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1315. 2017-08-01 09:10:11.720 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1316. 2017-08-01 09:10:11.774 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1317. 2017-08-01 09:10:11.776 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1318. 2017-08-01 09:10:11.778 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1319. 2017-08-01 09:10:11.779 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1320. 2017-08-01 09:10:11.830 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1321. 2017-08-01 09:10:11.833 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1322. 2017-08-01 09:10:11.834 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1323. 2017-08-01 09:10:11.910 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1324. 2017-08-01 09:10:11.911 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1325. 2017-08-01 09:10:11.912 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1326. 2017-08-01 09:10:11.955 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1327. 2017-08-01 09:10:12.056 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1328. 2017-08-01 09:10:12.057 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1329. 2017-08-01 09:10:12.058 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1330. 2017-08-01 09:10:12.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1331. 2017-08-01 09:10:17.182 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1332. 2017-08-01 09:10:17.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= ?
  1333. 2017-08-01 09:10:17.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1334. 2017-08-01 09:10:17.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1335. 2017-08-01 09:10:17.267 |-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
  1336. 2017-08-01 09:10:17.268 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1337. 2017-08-01 09:10:17.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1338. 2017-08-01 09:10:17.318 |-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=?)
  1339. 2017-08-01 09:10:17.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1340. 2017-08-01 09:10:17.362 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1341. 2017-08-01 09:10:17.429 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1342. 2017-08-01 09:10:17.430 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1343. 2017-08-01 09:10:17.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  1344. 2017-08-01 09:10:17.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14375(Long)
  1345. 2017-08-01 09:10:17.480 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  1346. 2017-08-01 09:10:17.512 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1347. 2017-08-01 09:10:17.512 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1348. 2017-08-01 09:10:17.542 |-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= ?
  1349. 2017-08-01 09:10:17.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1350. 2017-08-01 09:10:17.575 |-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= ?
  1351. 2017-08-01 09:10:17.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1352. 2017-08-01 09:10:17.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1353. 2017-08-01 09:10:17.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1354. 2017-08-01 09:10:17.607 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1355. 2017-08-01 09:10:17.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1356. 2017-08-01 09:10:17.635 |-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
  1357. 2017-08-01 09:10:17.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1358. 2017-08-01 09:10:17.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1359. 2017-08-01 09:10:17.679 |-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=?)
  1360. 2017-08-01 09:10:17.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1361. 2017-08-01 09:10:17.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1362. 2017-08-01 09:10:17.755 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1363. 2017-08-01 09:10:17.757 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1364. 2017-08-01 09:10:17.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  1365. 2017-08-01 09:10:17.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14375(Long)
  1366. 2017-08-01 09:10:17.793 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  1367. 2017-08-01 09:10:17.793 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1368. 2017-08-01 09:10:17.794 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1369. 2017-08-01 09:10:17.795 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1370. 2017-08-01 09:10:17.832 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1371. 2017-08-01 09:10:17.883 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1372. 2017-08-01 09:10:17.885 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1373. 2017-08-01 09:10:17.889 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  1374. 2017-08-01 09:10:17.889 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14375(Long)
  1375. 2017-08-01 09:10:17.945 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 5
  1376. 2017-08-01 09:10:21.588 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1377. 2017-08-01 09:10:21.620 |-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= ?
  1378. 2017-08-01 09:10:21.620 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1379. 2017-08-01 09:10:21.648 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1380. 2017-08-01 09:10:21.649 |-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
  1381. 2017-08-01 09:10:21.650 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1382. 2017-08-01 09:10:21.689 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1383. 2017-08-01 09:10:21.690 |-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=?)
  1384. 2017-08-01 09:10:21.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1385. 2017-08-01 09:10:21.717 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1386. 2017-08-01 09:10:21.766 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1387. 2017-08-01 09:10:21.768 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1388. 2017-08-01 09:10:21.770 |-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
  1389. 2017-08-01 09:10:21.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1390. 2017-08-01 09:10:21.799 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1391. 2017-08-01 09:10:21.865 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1392. 2017-08-01 09:10:21.865 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1393. 2017-08-01 09:10:21.896 |-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= ?
  1394. 2017-08-01 09:10:21.897 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1395. 2017-08-01 09:10:21.903 |-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= ?
  1396. 2017-08-01 09:10:21.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1397. 2017-08-01 09:10:21.934 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1398. 2017-08-01 09:10:21.936 |-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
  1399. 2017-08-01 09:10:21.936 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1400. 2017-08-01 09:10:21.941 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1401. 2017-08-01 09:10:21.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1402. 2017-08-01 09:10:21.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1403. 2017-08-01 09:10:21.975 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1404. 2017-08-01 09:10:21.976 |-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=?)
  1405. 2017-08-01 09:10:21.976 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1406. 2017-08-01 09:10:21.978 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1407. 2017-08-01 09:10:21.978 |-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=?)
  1408. 2017-08-01 09:10:21.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1409. 2017-08-01 09:10:22.005 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1410. 2017-08-01 09:10:22.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1411. 2017-08-01 09:10:22.050 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1412. 2017-08-01 09:10:22.051 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1413. 2017-08-01 09:10:22.053 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1414. 2017-08-01 09:10:22.053 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1415. 2017-08-01 09:10:22.058 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1416. 2017-08-01 09:10:22.059 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1417. 2017-08-01 09:10:22.065 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1418. 2017-08-01 09:10:22.066 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1419. 2017-08-01 09:10:22.171 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1420. 2017-08-01 09:10:22.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1421. 2017-08-01 09:10:22.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1422. 2017-08-01 09:10:22.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1423. 2017-08-01 09:10:22.187 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1424. 2017-08-01 09:10:22.187 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1425. 2017-08-01 09:10:22.272 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1426. 2017-08-01 09:10:22.273 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1427. 2017-08-01 09:10:22.274 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1428. 2017-08-01 09:10:22.311 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1429. 2017-08-01 09:10:22.372 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1430. 2017-08-01 09:10:24.380 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1431. 2017-08-01 09:10:24.412 |-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= ?
  1432. 2017-08-01 09:10:24.412 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1433. 2017-08-01 09:10:24.460 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1434. 2017-08-01 09:10:24.462 |-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
  1435. 2017-08-01 09:10:24.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1436. 2017-08-01 09:10:24.508 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1437. 2017-08-01 09:10:24.509 |-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=?)
  1438. 2017-08-01 09:10:24.510 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1439. 2017-08-01 09:10:24.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1440. 2017-08-01 09:10:24.600 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1441. 2017-08-01 09:10:24.601 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1442. 2017-08-01 09:10:24.608 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1443. 2017-08-01 09:10:24.608 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1444. 2017-08-01 09:10:24.734 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1445. 2017-08-01 09:10:24.736 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1446. 2017-08-01 09:10:24.737 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 20(Integer), 10(Integer)
  1447. 2017-08-01 09:10:24.870 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1448. 2017-08-01 09:10:26.460 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1449. 2017-08-01 09:10:26.491 |-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= ?
  1450. 2017-08-01 09:10:26.492 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1451. 2017-08-01 09:10:26.521 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1452. 2017-08-01 09:10:26.522 |-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
  1453. 2017-08-01 09:10:26.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1454. 2017-08-01 09:10:26.554 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1455. 2017-08-01 09:10:26.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1456. 2017-08-01 09:10:26.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1457. 2017-08-01 09:10:26.587 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1458. 2017-08-01 09:10:26.634 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1459. 2017-08-01 09:10:26.635 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1460. 2017-08-01 09:10:26.638 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  1461. 2017-08-01 09:10:26.638 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14500(Long)
  1462. 2017-08-01 09:10:26.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  1463. 2017-08-01 09:10:26.706 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1464. 2017-08-01 09:10:26.706 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1465. 2017-08-01 09:10:26.739 |-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= ?
  1466. 2017-08-01 09:10:26.740 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1467. 2017-08-01 09:10:26.744 |-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= ?
  1468. 2017-08-01 09:10:26.744 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1469. 2017-08-01 09:10:26.774 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1470. 2017-08-01 09:10:26.774 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1471. 2017-08-01 09:10:26.776 |-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
  1472. 2017-08-01 09:10:26.776 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1473. 2017-08-01 09:10:26.776 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1474. 2017-08-01 09:10:26.776 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1475. 2017-08-01 09:10:26.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1476. 2017-08-01 09:10:26.808 |-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=?)
  1477. 2017-08-01 09:10:26.809 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1478. 2017-08-01 09:10:26.809 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1479. 2017-08-01 09:10:26.810 |-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=?)
  1480. 2017-08-01 09:10:26.810 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1481. 2017-08-01 09:10:26.835 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1482. 2017-08-01 09:10:26.838 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1483. 2017-08-01 09:10:26.883 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1484. 2017-08-01 09:10:26.883 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1485. 2017-08-01 09:10:26.884 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1486. 2017-08-01 09:10:26.884 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1487. 2017-08-01 09:10:26.888 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  1488. 2017-08-01 09:10:26.889 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  1489. 2017-08-01 09:10:26.889 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14500(Long)
  1490. 2017-08-01 09:10:26.889 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14500(Long)
  1491. 2017-08-01 09:10:26.930 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  1492. 2017-08-01 09:10:26.941 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 5
  1493. 2017-08-01 09:10:29.934 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1494. 2017-08-01 09:10:29.966 |-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= ?
  1495. 2017-08-01 09:10:29.966 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1496. 2017-08-01 09:10:29.993 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1497. 2017-08-01 09:10:29.994 |-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
  1498. 2017-08-01 09:10:29.995 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1499. 2017-08-01 09:10:30.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1500. 2017-08-01 09:10:30.028 |-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=?)
  1501. 2017-08-01 09:10:30.029 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1502. 2017-08-01 09:10:30.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1503. 2017-08-01 09:10:30.103 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1504. 2017-08-01 09:10:30.105 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1505. 2017-08-01 09:10:30.106 |-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
  1506. 2017-08-01 09:10:30.107 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1507. 2017-08-01 09:10:30.135 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1508. 2017-08-01 09:10:30.197 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1509. 2017-08-01 09:10:30.197 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1510. 2017-08-01 09:10:30.230 |-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= ?
  1511. 2017-08-01 09:10:30.230 |-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= ?
  1512. 2017-08-01 09:10:30.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1513. 2017-08-01 09:10:30.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1514. 2017-08-01 09:10:30.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1515. 2017-08-01 09:10:30.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1516. 2017-08-01 09:10:30.263 |-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
  1517. 2017-08-01 09:10:30.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
  1518. 2017-08-01 09:10:30.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1519. 2017-08-01 09:10:30.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1520. 2017-08-01 09:10:30.293 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1521. 2017-08-01 09:10:30.294 |-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=?)
  1522. 2017-08-01 09:10:30.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1523. 2017-08-01 09:10:30.296 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1524. 2017-08-01 09:10:30.297 |-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=?)
  1525. 2017-08-01 09:10:30.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1526. 2017-08-01 09:10:30.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1527. 2017-08-01 09:10:30.328 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1528. 2017-08-01 09:10:30.361 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1529. 2017-08-01 09:10:30.363 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1530. 2017-08-01 09:10:30.372 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1531. 2017-08-01 09:10:30.372 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1532. 2017-08-01 09:10:30.374 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1533. 2017-08-01 09:10:30.375 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1534. 2017-08-01 09:10:30.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1535. 2017-08-01 09:10:30.377 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1536. 2017-08-01 09:10:30.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1537. 2017-08-01 09:10:30.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1538. 2017-08-01 09:10:30.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1539. 2017-08-01 09:10:30.497 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1540. 2017-08-01 09:10:30.500 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1541. 2017-08-01 09:10:30.500 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1542. 2017-08-01 09:10:30.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1543. 2017-08-01 09:10:30.567 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1544. 2017-08-01 09:10:30.567 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1545. 2017-08-01 09:10:30.624 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1546. 2017-08-01 09:10:30.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1547. 2017-08-01 09:16:47.286 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1548. 2017-08-01 09:16:47.286 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1549. 2017-08-01 09:16:47.443 |-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= ?
  1550. 2017-08-01 09:16:47.444 |-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= ?
  1551. 2017-08-01 09:16:47.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1552. 2017-08-01 09:16:47.444 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1553. 2017-08-01 09:16:47.472 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1554. 2017-08-01 09:16:47.473 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1555. 2017-08-01 09:16:47.501 |-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
  1556. 2017-08-01 09:16:47.502 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1557. 2017-08-01 09:16:47.506 |-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
  1558. 2017-08-01 09:16:47.506 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1559. 2017-08-01 09:16:47.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1560. 2017-08-01 09:16:47.537 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1561. 2017-08-01 09:16:47.538 |-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=?)
  1562. 2017-08-01 09:16:47.538 |-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=?)
  1563. 2017-08-01 09:16:47.538 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1564. 2017-08-01 09:16:47.538 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1565. 2017-08-01 09:16:47.569 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1566. 2017-08-01 09:16:47.569 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1567. 2017-08-01 09:16:47.615 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1568. 2017-08-01 09:16:47.615 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1569. 2017-08-01 09:16:47.617 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1570. 2017-08-01 09:16:47.617 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1571. 2017-08-01 09:16:47.652 |-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
  1572. 2017-08-01 09:16:47.653 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  1573. 2017-08-01 09:16:47.683 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  1574. 2017-08-01 09:16:47.684 |-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
  1575. 2017-08-01 09:16:47.684 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1576. 2017-08-01 09:16:47.715 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1577. 2017-08-01 09:16:47.753 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1578. 2017-08-01 09:16:47.753 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1579. 2017-08-01 09:16:47.785 |-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= ?
  1580. 2017-08-01 09:16:47.785 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1581. 2017-08-01 09:16:47.788 |-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= ?
  1582. 2017-08-01 09:16:47.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1583. 2017-08-01 09:16:47.821 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1584. 2017-08-01 09:16:47.822 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1585. 2017-08-01 09:16:47.822 |-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
  1586. 2017-08-01 09:16:47.823 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1587. 2017-08-01 09:16:47.823 |-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
  1588. 2017-08-01 09:16:47.823 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1589. 2017-08-01 09:16:47.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1590. 2017-08-01 09:16:47.855 |-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=?)
  1591. 2017-08-01 09:16:47.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1592. 2017-08-01 09:16:47.857 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1593. 2017-08-01 09:16:47.857 |-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=?)
  1594. 2017-08-01 09:16:47.858 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1595. 2017-08-01 09:16:47.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1596. 2017-08-01 09:16:47.899 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1597. 2017-08-01 09:16:47.936 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1598. 2017-08-01 09:16:47.937 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1599. 2017-08-01 09:16:47.939 |-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
  1600. 2017-08-01 09:16:47.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1601. 2017-08-01 09:16:47.946 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1602. 2017-08-01 09:16:47.947 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1603. 2017-08-01 09:16:47.949 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1604. 2017-08-01 09:16:47.949 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1605. 2017-08-01 09:16:47.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1606. 2017-08-01 09:16:47.977 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1607. 2017-08-01 09:16:47.985 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1608. 2017-08-01 09:16:48.019 |-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= ?
  1609. 2017-08-01 09:16:48.019 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1610. 2017-08-01 09:16:48.048 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1611. 2017-08-01 09:16:48.049 |-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
  1612. 2017-08-01 09:16:48.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1613. 2017-08-01 09:16:48.081 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1614. 2017-08-01 09:16:48.082 |-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=?)
  1615. 2017-08-01 09:16:48.082 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1616. 2017-08-01 09:16:48.111 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1617. 2017-08-01 09:16:48.141 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1618. 2017-08-01 09:16:48.143 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1619. 2017-08-01 09:16:48.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.positionid in ( ? , ? , ? , ? ) order by workno
  1620. 2017-08-01 09:16:48.148 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1621. 2017-08-01 09:16:48.317 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  1622. 2017-08-01 09:16:48.344 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1623. 2017-08-01 09:16:48.375 |-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= ?
  1624. 2017-08-01 09:16:48.375 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1625. 2017-08-01 09:16:48.402 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1626. 2017-08-01 09:16:48.403 |-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
  1627. 2017-08-01 09:16:48.403 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1628. 2017-08-01 09:16:48.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1629. 2017-08-01 09:16:48.435 |-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=?)
  1630. 2017-08-01 09:16:48.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1631. 2017-08-01 09:16:48.465 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1632. 2017-08-01 09:16:48.496 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1633. 2017-08-01 09:16:48.497 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1634. 2017-08-01 09:16:48.500 |-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=?
  1635. 2017-08-01 09:16:48.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1636. 2017-08-01 09:16:48.529 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  1637. 2017-08-01 09:16:48.578 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1638. 2017-08-01 09:16:48.608 |-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= ?
  1639. 2017-08-01 09:16:48.608 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1640. 2017-08-01 09:16:48.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1641. 2017-08-01 09:16:48.635 |-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
  1642. 2017-08-01 09:16:48.635 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1643. 2017-08-01 09:16:48.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1644. 2017-08-01 09:16:48.669 |-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=?)
  1645. 2017-08-01 09:16:48.670 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1646. 2017-08-01 09:16:48.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1647. 2017-08-01 09:16:48.728 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1648. 2017-08-01 09:16:48.729 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1649. 2017-08-01 09:16:48.730 |-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
  1650. 2017-08-01 09:16:48.730 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1651. 2017-08-01 09:16:48.757 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1652. 2017-08-01 09:16:48.859 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1653. 2017-08-01 09:16:48.859 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1654. 2017-08-01 09:16:48.900 |-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= ?
  1655. 2017-08-01 09:16:48.901 |-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= ?
  1656. 2017-08-01 09:16:48.901 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1657. 2017-08-01 09:16:48.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1658. 2017-08-01 09:16:48.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1659. 2017-08-01 09:16:48.928 |-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
  1660. 2017-08-01 09:16:48.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1661. 2017-08-01 09:16:48.929 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1662. 2017-08-01 09:16:48.930 |-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
  1663. 2017-08-01 09:16:48.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1664. 2017-08-01 09:16:48.961 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1665. 2017-08-01 09:16:48.962 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1666. 2017-08-01 09:16:48.962 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1667. 2017-08-01 09:16:48.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1668. 2017-08-01 09:16:48.975 |-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=?)
  1669. 2017-08-01 09:16:48.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1670. 2017-08-01 09:16:48.988 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1671. 2017-08-01 09:16:49.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1672. 2017-08-01 09:16:49.033 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1673. 2017-08-01 09:16:49.035 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1674. 2017-08-01 09:16:49.036 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1675. 2017-08-01 09:16:49.037 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1676. 2017-08-01 09:16:49.038 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1677. 2017-08-01 09:16:49.039 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1678. 2017-08-01 09:16:49.046 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1679. 2017-08-01 09:16:49.046 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1680. 2017-08-01 09:16:49.129 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1681. 2017-08-01 09:16:49.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1682. 2017-08-01 09:16:49.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1683. 2017-08-01 09:16:49.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1684. 2017-08-01 09:16:49.163 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1685. 2017-08-01 09:16:49.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1686. 2017-08-01 09:16:49.222 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1687. 2017-08-01 09:16:49.223 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1688. 2017-08-01 09:16:49.223 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1689. 2017-08-01 09:16:49.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1690. 2017-08-01 09:16:49.308 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1691. 2017-08-01 09:22:28.332 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1692. 2017-08-01 09:22:28.333 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1693. 2017-08-01 09:22:28.546 |-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= ?
  1694. 2017-08-01 09:22:28.546 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1695. 2017-08-01 09:22:28.547 |-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= ?
  1696. 2017-08-01 09:22:28.548 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1697. 2017-08-01 09:22:28.574 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1698. 2017-08-01 09:22:28.575 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1699. 2017-08-01 09:22:28.603 |-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
  1700. 2017-08-01 09:22:28.604 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1701. 2017-08-01 09:22:28.616 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1702. 2017-08-01 09:22:28.616 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1703. 2017-08-01 09:22:28.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1704. 2017-08-01 09:22:28.639 |-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=?)
  1705. 2017-08-01 09:22:28.640 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1706. 2017-08-01 09:22:28.648 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1707. 2017-08-01 09:22:28.649 |-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=?)
  1708. 2017-08-01 09:22:28.650 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1709. 2017-08-01 09:22:28.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1710. 2017-08-01 09:22:28.681 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1711. 2017-08-01 09:22:28.716 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1712. 2017-08-01 09:22:28.717 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1713. 2017-08-01 09:22:28.723 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1714. 2017-08-01 09:22:28.724 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1715. 2017-08-01 09:22:28.751 |-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
  1716. 2017-08-01 09:22:28.752 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  1717. 2017-08-01 09:22:28.782 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  1718. 2017-08-01 09:22:28.784 |-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
  1719. 2017-08-01 09:22:28.784 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1720. 2017-08-01 09:22:28.817 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1721. 2017-08-01 09:22:28.861 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1722. 2017-08-01 09:22:28.862 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1723. 2017-08-01 09:22:28.895 |-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= ?
  1724. 2017-08-01 09:22:28.896 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1725. 2017-08-01 09:22:28.898 |-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= ?
  1726. 2017-08-01 09:22:28.899 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1727. 2017-08-01 09:22:28.924 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1728. 2017-08-01 09:22:28.925 |-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
  1729. 2017-08-01 09:22:28.926 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1730. 2017-08-01 09:22:28.938 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1731. 2017-08-01 09:22:28.939 |-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
  1732. 2017-08-01 09:22:28.940 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1733. 2017-08-01 09:22:28.966 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1734. 2017-08-01 09:22:28.967 |-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=?)
  1735. 2017-08-01 09:22:28.968 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1736. 2017-08-01 09:22:28.972 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1737. 2017-08-01 09:22:28.973 |-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=?)
  1738. 2017-08-01 09:22:28.973 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1739. 2017-08-01 09:22:28.993 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1740. 2017-08-01 09:22:29.003 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1741. 2017-08-01 09:22:29.037 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1742. 2017-08-01 09:22:29.038 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1743. 2017-08-01 09:22:29.039 |-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
  1744. 2017-08-01 09:22:29.040 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1745. 2017-08-01 09:22:29.044 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1746. 2017-08-01 09:22:29.045 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1747. 2017-08-01 09:22:29.046 |-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
  1748. 2017-08-01 09:22:29.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1749. 2017-08-01 09:22:29.069 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1750. 2017-08-01 09:22:29.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1751. 2017-08-01 09:22:29.080 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1752. 2017-08-01 09:22:29.109 |-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= ?
  1753. 2017-08-01 09:22:29.109 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1754. 2017-08-01 09:22:29.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1755. 2017-08-01 09:22:29.137 |-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
  1756. 2017-08-01 09:22:29.137 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1757. 2017-08-01 09:22:29.171 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1758. 2017-08-01 09:22:29.172 |-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=?)
  1759. 2017-08-01 09:22:29.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1760. 2017-08-01 09:22:29.201 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1761. 2017-08-01 09:22:29.230 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1762. 2017-08-01 09:22:29.232 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1763. 2017-08-01 09:22:29.237 |-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
  1764. 2017-08-01 09:22:29.238 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1765. 2017-08-01 09:22:29.345 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  1766. 2017-08-01 09:22:29.374 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1767. 2017-08-01 09:22:29.402 |-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= ?
  1768. 2017-08-01 09:22:29.403 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1769. 2017-08-01 09:22:29.431 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1770. 2017-08-01 09:22:29.432 |-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
  1771. 2017-08-01 09:22:29.432 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1772. 2017-08-01 09:22:29.464 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1773. 2017-08-01 09:22:29.465 |-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=?)
  1774. 2017-08-01 09:22:29.466 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1775. 2017-08-01 09:22:29.494 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1776. 2017-08-01 09:22:29.524 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1777. 2017-08-01 09:22:29.525 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1778. 2017-08-01 09:22:29.527 |-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=?
  1779. 2017-08-01 09:22:29.527 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1780. 2017-08-01 09:22:29.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  1781. 2017-08-01 09:22:29.619 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1782. 2017-08-01 09:22:29.648 |-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= ?
  1783. 2017-08-01 09:22:29.648 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1784. 2017-08-01 09:22:29.677 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1785. 2017-08-01 09:22:29.678 |-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
  1786. 2017-08-01 09:22:29.678 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1787. 2017-08-01 09:22:29.711 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1788. 2017-08-01 09:22:29.712 |-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=?)
  1789. 2017-08-01 09:22:29.712 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1790. 2017-08-01 09:22:29.740 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1791. 2017-08-01 09:22:29.769 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1792. 2017-08-01 09:22:29.770 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1793. 2017-08-01 09:22:29.771 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  1794. 2017-08-01 09:22:29.772 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1795. 2017-08-01 09:22:29.805 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1796. 2017-08-01 09:22:29.904 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1797. 2017-08-01 09:22:29.904 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1798. 2017-08-01 09:22:29.932 |-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= ?
  1799. 2017-08-01 09:22:29.932 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1800. 2017-08-01 09:22:29.966 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1801. 2017-08-01 09:22:29.967 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1802. 2017-08-01 09:22:29.967 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1803. 2017-08-01 09:22:29.998 |-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= ?
  1804. 2017-08-01 09:22:29.999 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1805. 2017-08-01 09:22:30.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1806. 2017-08-01 09:22:30.003 |-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=?)
  1807. 2017-08-01 09:22:30.003 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1808. 2017-08-01 09:22:30.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1809. 2017-08-01 09:22:30.033 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1810. 2017-08-01 09:22:30.034 |-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
  1811. 2017-08-01 09:22:30.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1812. 2017-08-01 09:22:30.068 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1813. 2017-08-01 09:22:30.069 |-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=?)
  1814. 2017-08-01 09:22:30.069 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1815. 2017-08-01 09:22:30.080 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1816. 2017-08-01 09:22:30.081 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1817. 2017-08-01 09:22:30.090 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  1818. 2017-08-01 09:22:30.090 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1819. 2017-08-01 09:22:30.097 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1820. 2017-08-01 09:22:30.130 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1821. 2017-08-01 09:22:30.131 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1822. 2017-08-01 09:22:30.133 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1823. 2017-08-01 09:22:30.133 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1824. 2017-08-01 09:22:30.206 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1825. 2017-08-01 09:22:30.209 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  1826. 2017-08-01 09:22:30.210 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1827. 2017-08-01 09:22:30.220 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1828. 2017-08-01 09:22:30.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  1829. 2017-08-01 09:22:30.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1830. 2017-08-01 09:22:30.315 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1831. 2017-08-01 09:22:30.316 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  1832. 2017-08-01 09:22:30.317 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1833. 2017-08-01 09:22:30.332 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1834. 2017-08-01 09:22:30.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1835. 2017-08-01 09:23:42.245 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1836. 2017-08-01 09:23:42.245 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1837. 2017-08-01 09:23:42.393 |-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= ?
  1838. 2017-08-01 09:23:42.394 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1839. 2017-08-01 09:23:42.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1840. 2017-08-01 09:23:42.464 |-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
  1841. 2017-08-01 09:23:42.464 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1842. 2017-08-01 09:23:42.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1843. 2017-08-01 09:23:42.498 |-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=?)
  1844. 2017-08-01 09:23:42.498 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1845. 2017-08-01 09:23:42.528 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1846. 2017-08-01 09:23:42.574 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1847. 2017-08-01 09:23:42.576 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1848. 2017-08-01 09:23:44.269 |-ERROR [http-nio-8089-exec-4] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] [181] -| Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
  1849. org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  1850. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)
  1851. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)
  1852. at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)
  1853. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:92)
  1854. at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:79)
  1855. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:194)
  1856. at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:169)
  1857. at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:91)
  1858. at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)
  1859. at com.xintong.system.securityTools.RedisCacheUtil.getUserByUserName(RedisCacheUtil.java:19)
  1860. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:60)
  1861. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1862. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1863. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  1864. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1865. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  1866. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1867. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1868. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  1869. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1870. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1871. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  1872. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1873. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  1874. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1875. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1876. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  1877. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  1878. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  1879. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  1880. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1881. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1882. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  1883. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1884. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1885. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1886. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  1887. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1888. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1889. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1890. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  1891. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1892. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1893. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1894. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  1895. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1896. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1897. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1898. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  1899. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1900. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1901. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1902. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  1903. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  1904. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  1905. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  1906. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  1907. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1908. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  1909. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  1910. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1911. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  1912. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  1913. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1914. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1915. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1916. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1917. at java.lang.Thread.run(Thread.java:745)
  1918. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
  1919. at redis.clients.util.Pool.getResource(Pool.java:53)
  1920. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
  1921. at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
  1922. at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:194)
  1923. ... 67 common frames omitted
  1924. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out
  1925. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202)
  1926. at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40)
  1927. at redis.clients.jedis.Protocol.process(Protocol.java:151)
  1928. at redis.clients.jedis.Protocol.read(Protocol.java:215)
  1929. at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
  1930. at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
  1931. at redis.clients.jedis.BinaryJedis.auth(BinaryJedis.java:2139)
  1932. at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:108)
  1933. at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:868)
  1934. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:435)
  1935. at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
  1936. at redis.clients.util.Pool.getResource(Pool.java:49)
  1937. ... 70 common frames omitted
  1938. Caused by: java.net.SocketTimeoutException: Read timed out
  1939. at java.net.SocketInputStream.socketRead0(Native Method)
  1940. at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
  1941. at java.net.SocketInputStream.read(SocketInputStream.java:170)
  1942. at java.net.SocketInputStream.read(SocketInputStream.java:141)
  1943. at java.net.SocketInputStream.read(SocketInputStream.java:127)
  1944. at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:196)
  1945. ... 81 common frames omitted
  1946. 2017-08-01 09:23:46.867 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1947. 2017-08-01 09:23:46.868 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1948. 2017-08-01 09:23:46.899 |-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= ?
  1949. 2017-08-01 09:23:46.899 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1950. 2017-08-01 09:23:46.926 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1951. 2017-08-01 09:23:46.927 |-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
  1952. 2017-08-01 09:23:46.927 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1953. 2017-08-01 09:23:46.967 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1954. 2017-08-01 09:23:46.968 |-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=?)
  1955. 2017-08-01 09:23:46.968 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1956. 2017-08-01 09:23:46.970 |-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= ?
  1957. 2017-08-01 09:23:46.971 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1958. 2017-08-01 09:23:46.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1959. 2017-08-01 09:23:47.011 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1960. 2017-08-01 09:23:47.023 |-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
  1961. 2017-08-01 09:23:47.024 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1962. 2017-08-01 09:23:47.053 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1963. 2017-08-01 09:23:47.054 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1964. 2017-08-01 09:23:47.054 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1965. 2017-08-01 09:23:47.055 |-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=?)
  1966. 2017-08-01 09:23:47.055 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1967. 2017-08-01 09:23:47.082 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1968. 2017-08-01 09:23:47.123 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1969. 2017-08-01 09:23:47.124 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1970. 2017-08-01 09:23:47.155 |-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
  1971. 2017-08-01 09:23:47.156 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  1972. 2017-08-01 09:23:47.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  1973. 2017-08-01 09:23:47.187 |-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
  1974. 2017-08-01 09:23:47.188 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1975. 2017-08-01 09:23:47.219 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1976. 2017-08-01 09:23:47.259 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1977. 2017-08-01 09:23:47.259 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1978. 2017-08-01 09:23:47.287 |-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= ?
  1979. 2017-08-01 09:23:47.288 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1980. 2017-08-01 09:23:47.318 |-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= ?
  1981. 2017-08-01 09:23:47.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1982. 2017-08-01 09:23:47.319 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1983. 2017-08-01 09:23:47.320 |-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
  1984. 2017-08-01 09:23:47.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1985. 2017-08-01 09:23:47.346 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1986. 2017-08-01 09:23:47.348 |-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
  1987. 2017-08-01 09:23:47.348 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1988. 2017-08-01 09:23:47.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1989. 2017-08-01 09:23:47.350 |-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=?)
  1990. 2017-08-01 09:23:47.351 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1991. 2017-08-01 09:23:47.377 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1992. 2017-08-01 09:23:47.380 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  1993. 2017-08-01 09:23:47.381 |-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=?)
  1994. 2017-08-01 09:23:47.381 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1995. 2017-08-01 09:23:47.410 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1996. 2017-08-01 09:23:47.423 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  1997. 2017-08-01 09:23:47.425 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  1998. 2017-08-01 09:23:47.427 |-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
  1999. 2017-08-01 09:23:47.427 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2000. 2017-08-01 09:23:47.439 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2001. 2017-08-01 09:23:47.440 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2002. 2017-08-01 09:23:47.441 |-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
  2003. 2017-08-01 09:23:47.442 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2004. 2017-08-01 09:23:47.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2005. 2017-08-01 09:23:47.467 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2006. 2017-08-01 09:23:47.469 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2007. 2017-08-01 09:23:47.497 |-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= ?
  2008. 2017-08-01 09:23:47.497 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2009. 2017-08-01 09:23:47.524 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2010. 2017-08-01 09:23:47.525 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2011. 2017-08-01 09:23:47.525 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2012. 2017-08-01 09:23:47.558 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2013. 2017-08-01 09:23:47.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=?)
  2014. 2017-08-01 09:23:47.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2015. 2017-08-01 09:23:47.588 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2016. 2017-08-01 09:23:47.619 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2017. 2017-08-01 09:23:47.620 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2018. 2017-08-01 09:23:47.624 |-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
  2019. 2017-08-01 09:23:47.624 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2020. 2017-08-01 09:23:47.767 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2021. 2017-08-01 09:23:47.794 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2022. 2017-08-01 09:23:47.823 |-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= ?
  2023. 2017-08-01 09:23:47.823 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2024. 2017-08-01 09:23:47.882 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2025. 2017-08-01 09:23:47.883 |-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
  2026. 2017-08-01 09:23:47.883 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2027. 2017-08-01 09:23:47.915 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2028. 2017-08-01 09:23:47.917 |-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=?)
  2029. 2017-08-01 09:23:47.917 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2030. 2017-08-01 09:23:47.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2031. 2017-08-01 09:23:47.975 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2032. 2017-08-01 09:23:47.976 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2033. 2017-08-01 09:23:47.980 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  2034. 2017-08-01 09:23:47.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2035. 2017-08-01 09:23:48.009 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2036. 2017-08-01 09:23:48.076 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2037. 2017-08-01 09:23:48.104 |-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= ?
  2038. 2017-08-01 09:23:48.104 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2039. 2017-08-01 09:23:48.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2040. 2017-08-01 09:23:48.132 |-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
  2041. 2017-08-01 09:23:48.132 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2042. 2017-08-01 09:23:48.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2043. 2017-08-01 09:23:48.165 |-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=?)
  2044. 2017-08-01 09:23:48.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2045. 2017-08-01 09:23:48.193 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2046. 2017-08-01 09:23:48.224 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2047. 2017-08-01 09:23:48.225 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2048. 2017-08-01 09:23:48.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  2049. 2017-08-01 09:23:48.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2050. 2017-08-01 09:23:48.254 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2051. 2017-08-01 09:23:48.352 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2052. 2017-08-01 09:23:48.352 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2053. 2017-08-01 09:23:48.380 |-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= ?
  2054. 2017-08-01 09:23:48.380 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2055. 2017-08-01 09:23:48.382 |-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= ?
  2056. 2017-08-01 09:23:48.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2057. 2017-08-01 09:23:48.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2058. 2017-08-01 09:23:48.418 |-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
  2059. 2017-08-01 09:23:48.419 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2060. 2017-08-01 09:23:48.419 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2061. 2017-08-01 09:23:48.420 |-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
  2062. 2017-08-01 09:23:48.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2063. 2017-08-01 09:23:48.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2064. 2017-08-01 09:23:48.452 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2065. 2017-08-01 09:23:48.452 |-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=?)
  2066. 2017-08-01 09:23:48.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2067. 2017-08-01 09:23:48.453 |-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=?)
  2068. 2017-08-01 09:23:48.453 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2069. 2017-08-01 09:23:48.482 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2070. 2017-08-01 09:23:48.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2071. 2017-08-01 09:23:48.512 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2072. 2017-08-01 09:23:48.513 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2073. 2017-08-01 09:23:48.521 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2074. 2017-08-01 09:23:48.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2075. 2017-08-01 09:23:48.527 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2076. 2017-08-01 09:23:48.528 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2077. 2017-08-01 09:23:48.530 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2078. 2017-08-01 09:23:48.531 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2079. 2017-08-01 09:23:48.623 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2080. 2017-08-01 09:23:48.625 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2081. 2017-08-01 09:23:48.625 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2082. 2017-08-01 09:23:48.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2083. 2017-08-01 09:23:48.646 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2084. 2017-08-01 09:23:48.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2085. 2017-08-01 09:23:48.717 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2086. 2017-08-01 09:23:48.719 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2087. 2017-08-01 09:23:48.719 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2088. 2017-08-01 09:23:48.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2089. 2017-08-01 09:23:48.811 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2090. 2017-08-01 09:31:21.446 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2091. 2017-08-01 09:31:21.447 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2092. 2017-08-01 09:31:21.600 |-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= ?
  2093. 2017-08-01 09:31:21.600 |-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= ?
  2094. 2017-08-01 09:31:21.600 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2095. 2017-08-01 09:31:21.601 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2096. 2017-08-01 09:31:21.628 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2097. 2017-08-01 09:31:21.631 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2098. 2017-08-01 09:31:21.657 |-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
  2099. 2017-08-01 09:31:21.658 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2100. 2017-08-01 09:31:21.658 |-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
  2101. 2017-08-01 09:31:21.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2102. 2017-08-01 09:31:21.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2103. 2017-08-01 09:31:21.691 |-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=?)
  2104. 2017-08-01 09:31:21.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2105. 2017-08-01 09:31:21.692 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2106. 2017-08-01 09:31:21.692 |-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=?)
  2107. 2017-08-01 09:31:21.692 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2108. 2017-08-01 09:31:21.716 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2109. 2017-08-01 09:31:21.722 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2110. 2017-08-01 09:31:21.767 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2111. 2017-08-01 09:31:21.768 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2112. 2017-08-01 09:31:21.769 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2113. 2017-08-01 09:31:21.770 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2114. 2017-08-01 09:31:21.803 |-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
  2115. 2017-08-01 09:31:21.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2116. 2017-08-01 09:31:21.836 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2117. 2017-08-01 09:31:21.838 |-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
  2118. 2017-08-01 09:31:21.838 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2119. 2017-08-01 09:31:21.872 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2120. 2017-08-01 09:31:21.914 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2121. 2017-08-01 09:31:21.914 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2122. 2017-08-01 09:31:21.944 |-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= ?
  2123. 2017-08-01 09:31:21.945 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2124. 2017-08-01 09:31:21.951 |-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= ?
  2125. 2017-08-01 09:31:21.952 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2126. 2017-08-01 09:31:21.979 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2127. 2017-08-01 09:31:21.980 |-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
  2128. 2017-08-01 09:31:21.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2129. 2017-08-01 09:31:21.985 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2130. 2017-08-01 09:31:21.986 |-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
  2131. 2017-08-01 09:31:21.986 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2132. 2017-08-01 09:31:22.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2133. 2017-08-01 09:31:22.015 |-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=?)
  2134. 2017-08-01 09:31:22.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2135. 2017-08-01 09:31:22.020 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2136. 2017-08-01 09:31:22.021 |-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=?)
  2137. 2017-08-01 09:31:22.021 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2138. 2017-08-01 09:31:22.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2139. 2017-08-01 09:31:22.048 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2140. 2017-08-01 09:31:22.076 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2141. 2017-08-01 09:31:22.078 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2142. 2017-08-01 09:31:22.079 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2143. 2017-08-01 09:31:22.079 |-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
  2144. 2017-08-01 09:31:22.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2145. 2017-08-01 09:31:22.080 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2146. 2017-08-01 09:31:22.081 |-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
  2147. 2017-08-01 09:31:22.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2148. 2017-08-01 09:31:22.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2149. 2017-08-01 09:31:22.111 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2150. 2017-08-01 09:31:22.120 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2151. 2017-08-01 09:31:22.149 |-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= ?
  2152. 2017-08-01 09:31:22.150 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2153. 2017-08-01 09:31:22.183 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2154. 2017-08-01 09:31:22.183 |-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
  2155. 2017-08-01 09:31:22.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2156. 2017-08-01 09:31:22.216 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2157. 2017-08-01 09:31:22.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=?)
  2158. 2017-08-01 09:31:22.217 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2159. 2017-08-01 09:31:22.242 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2160. 2017-08-01 09:31:22.273 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2161. 2017-08-01 09:31:22.274 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2162. 2017-08-01 09:31:22.278 |-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
  2163. 2017-08-01 09:31:22.278 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2164. 2017-08-01 09:31:22.406 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2165. 2017-08-01 09:31:22.436 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2166. 2017-08-01 09:31:22.466 |-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= ?
  2167. 2017-08-01 09:31:22.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2168. 2017-08-01 09:31:22.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2169. 2017-08-01 09:31:22.498 |-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
  2170. 2017-08-01 09:31:22.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2171. 2017-08-01 09:31:22.528 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2172. 2017-08-01 09:31:22.530 |-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=?)
  2173. 2017-08-01 09:31:22.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2174. 2017-08-01 09:31:22.556 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2175. 2017-08-01 09:31:22.608 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2176. 2017-08-01 09:31:22.610 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2177. 2017-08-01 09:31:22.613 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  2178. 2017-08-01 09:31:22.614 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2179. 2017-08-01 09:31:22.642 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2180. 2017-08-01 09:31:22.708 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2181. 2017-08-01 09:31:22.738 |-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= ?
  2182. 2017-08-01 09:31:22.739 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2183. 2017-08-01 09:31:22.767 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2184. 2017-08-01 09:31:22.768 |-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
  2185. 2017-08-01 09:31:22.768 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2186. 2017-08-01 09:31:22.798 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2187. 2017-08-01 09:31:22.799 |-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=?)
  2188. 2017-08-01 09:31:22.799 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2189. 2017-08-01 09:31:22.825 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2190. 2017-08-01 09:31:22.856 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2191. 2017-08-01 09:31:22.857 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2192. 2017-08-01 09:31:22.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  2193. 2017-08-01 09:31:22.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2194. 2017-08-01 09:31:22.896 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2195. 2017-08-01 09:31:22.996 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2196. 2017-08-01 09:31:22.996 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2197. 2017-08-01 09:31:23.028 |-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= ?
  2198. 2017-08-01 09:31:23.029 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2199. 2017-08-01 09:31:23.030 |-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= ?
  2200. 2017-08-01 09:31:23.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2201. 2017-08-01 09:31:23.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2202. 2017-08-01 09:31:23.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2203. 2017-08-01 09:31:23.060 |-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
  2204. 2017-08-01 09:31:23.060 |-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
  2205. 2017-08-01 09:31:23.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2206. 2017-08-01 09:31:23.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2207. 2017-08-01 09:31:23.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2208. 2017-08-01 09:31:23.095 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2209. 2017-08-01 09:31:23.096 |-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=?)
  2210. 2017-08-01 09:31:23.096 |-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=?)
  2211. 2017-08-01 09:31:23.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2212. 2017-08-01 09:31:23.096 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2213. 2017-08-01 09:31:23.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2214. 2017-08-01 09:31:23.128 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2215. 2017-08-01 09:31:23.159 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2216. 2017-08-01 09:31:23.161 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2217. 2017-08-01 09:31:23.169 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2218. 2017-08-01 09:31:23.169 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2219. 2017-08-01 09:31:23.170 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2220. 2017-08-01 09:31:23.170 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2221. 2017-08-01 09:31:23.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2222. 2017-08-01 09:31:23.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2223. 2017-08-01 09:31:23.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2224. 2017-08-01 09:31:23.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2225. 2017-08-01 09:31:23.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2226. 2017-08-01 09:31:23.292 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2227. 2017-08-01 09:31:23.295 |-DEBUG [http-nio-8089-exec-9] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2228. 2017-08-01 09:31:23.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2229. 2017-08-01 09:31:23.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2230. 2017-08-01 09:31:23.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2231. 2017-08-01 09:31:23.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2232. 2017-08-01 09:31:23.433 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2233. 2017-08-01 09:31:23.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2234. 2017-08-01 09:31:37.221 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2235. 2017-08-01 09:31:37.222 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2236. 2017-08-01 09:31:37.255 |-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= ?
  2237. 2017-08-01 09:31:37.255 |-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= ?
  2238. 2017-08-01 09:31:37.255 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2239. 2017-08-01 09:31:37.256 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2240. 2017-08-01 09:31:37.287 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2241. 2017-08-01 09:31:37.287 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2242. 2017-08-01 09:31:37.288 |-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
  2243. 2017-08-01 09:31:37.289 |-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
  2244. 2017-08-01 09:31:37.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2245. 2017-08-01 09:31:37.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2246. 2017-08-01 09:31:37.323 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2247. 2017-08-01 09:31:37.323 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2248. 2017-08-01 09:31:37.324 |-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=?)
  2249. 2017-08-01 09:31:37.324 |-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=?)
  2250. 2017-08-01 09:31:37.325 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2251. 2017-08-01 09:31:37.325 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2252. 2017-08-01 09:31:37.351 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2253. 2017-08-01 09:31:37.353 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2254. 2017-08-01 09:31:37.396 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2255. 2017-08-01 09:31:37.397 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2256. 2017-08-01 09:31:37.398 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2257. 2017-08-01 09:31:37.399 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2258. 2017-08-01 09:31:37.437 |-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
  2259. 2017-08-01 09:31:37.438 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2260. 2017-08-01 09:31:37.477 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2261. 2017-08-01 09:31:37.479 |-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
  2262. 2017-08-01 09:31:37.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2263. 2017-08-01 09:31:37.513 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2264. 2017-08-01 09:31:37.552 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2265. 2017-08-01 09:31:37.552 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2266. 2017-08-01 09:31:37.582 |-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= ?
  2267. 2017-08-01 09:31:37.582 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2268. 2017-08-01 09:31:37.583 |-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= ?
  2269. 2017-08-01 09:31:37.583 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2270. 2017-08-01 09:31:37.609 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2271. 2017-08-01 09:31:37.610 |-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
  2272. 2017-08-01 09:31:37.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2273. 2017-08-01 09:31:37.612 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2274. 2017-08-01 09:31:37.613 |-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
  2275. 2017-08-01 09:31:37.613 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2276. 2017-08-01 09:31:37.643 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2277. 2017-08-01 09:31:37.644 |-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=?)
  2278. 2017-08-01 09:31:37.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2279. 2017-08-01 09:31:37.646 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2280. 2017-08-01 09:31:37.647 |-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=?)
  2281. 2017-08-01 09:31:37.648 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2282. 2017-08-01 09:31:37.673 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2283. 2017-08-01 09:31:37.673 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2284. 2017-08-01 09:31:37.706 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2285. 2017-08-01 09:31:37.706 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2286. 2017-08-01 09:31:37.708 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2287. 2017-08-01 09:31:37.708 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2288. 2017-08-01 09:31:37.709 |-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
  2289. 2017-08-01 09:31:37.709 |-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
  2290. 2017-08-01 09:31:37.710 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2291. 2017-08-01 09:31:37.710 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2292. 2017-08-01 09:31:37.739 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2293. 2017-08-01 09:31:37.739 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2294. 2017-08-01 09:31:37.749 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2295. 2017-08-01 09:31:37.780 |-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= ?
  2296. 2017-08-01 09:31:37.781 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2297. 2017-08-01 09:31:37.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2298. 2017-08-01 09:31:37.808 |-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
  2299. 2017-08-01 09:31:37.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2300. 2017-08-01 09:31:37.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2301. 2017-08-01 09:31:37.843 |-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=?)
  2302. 2017-08-01 09:31:37.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2303. 2017-08-01 09:31:37.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2304. 2017-08-01 09:31:37.906 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2305. 2017-08-01 09:31:37.907 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2306. 2017-08-01 09:31:37.911 |-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
  2307. 2017-08-01 09:31:37.912 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2308. 2017-08-01 09:31:38.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2309. 2017-08-01 09:31:38.038 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2310. 2017-08-01 09:31:38.069 |-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= ?
  2311. 2017-08-01 09:31:38.069 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2312. 2017-08-01 09:31:38.099 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2313. 2017-08-01 09:31:38.101 |-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
  2314. 2017-08-01 09:31:38.101 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2315. 2017-08-01 09:31:38.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2316. 2017-08-01 09:31:38.136 |-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=?)
  2317. 2017-08-01 09:31:38.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2318. 2017-08-01 09:31:38.165 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2319. 2017-08-01 09:31:38.198 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2320. 2017-08-01 09:31:38.199 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2321. 2017-08-01 09:31:38.203 |-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=?
  2322. 2017-08-01 09:31:38.204 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2323. 2017-08-01 09:31:38.232 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2324. 2017-08-01 09:31:38.301 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2325. 2017-08-01 09:31:38.337 |-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= ?
  2326. 2017-08-01 09:31:38.337 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2327. 2017-08-01 09:31:38.365 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2328. 2017-08-01 09:31:38.366 |-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
  2329. 2017-08-01 09:31:38.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2330. 2017-08-01 09:31:38.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2331. 2017-08-01 09:31:38.400 |-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=?)
  2332. 2017-08-01 09:31:38.400 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2333. 2017-08-01 09:31:38.428 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2334. 2017-08-01 09:31:38.465 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2335. 2017-08-01 09:31:38.466 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2336. 2017-08-01 09:31:38.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  2337. 2017-08-01 09:31:38.468 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2338. 2017-08-01 09:31:38.495 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2339. 2017-08-01 09:31:38.599 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2340. 2017-08-01 09:31:38.599 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2341. 2017-08-01 09:31:38.630 |-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= ?
  2342. 2017-08-01 09:31:38.631 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2343. 2017-08-01 09:31:38.633 |-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= ?
  2344. 2017-08-01 09:31:38.633 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2345. 2017-08-01 09:31:38.659 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2346. 2017-08-01 09:31:38.660 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2347. 2017-08-01 09:31:38.660 |-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
  2348. 2017-08-01 09:31:38.661 |-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
  2349. 2017-08-01 09:31:38.661 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2350. 2017-08-01 09:31:38.661 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2351. 2017-08-01 09:31:38.695 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2352. 2017-08-01 09:31:38.696 |-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=?)
  2353. 2017-08-01 09:31:38.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2354. 2017-08-01 09:31:38.698 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2355. 2017-08-01 09:31:38.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=?)
  2356. 2017-08-01 09:31:38.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2357. 2017-08-01 09:31:38.725 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2358. 2017-08-01 09:31:38.725 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2359. 2017-08-01 09:31:38.756 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2360. 2017-08-01 09:31:38.757 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2361. 2017-08-01 09:31:38.766 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2362. 2017-08-01 09:31:38.766 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2363. 2017-08-01 09:31:38.772 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2364. 2017-08-01 09:31:38.773 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2365. 2017-08-01 09:31:38.775 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2366. 2017-08-01 09:31:38.775 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2367. 2017-08-01 09:31:38.869 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2368. 2017-08-01 09:31:38.871 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2369. 2017-08-01 09:31:38.871 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2370. 2017-08-01 09:31:38.891 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2371. 2017-08-01 09:31:38.894 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2372. 2017-08-01 09:31:38.895 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2373. 2017-08-01 09:31:38.963 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2374. 2017-08-01 09:31:38.965 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2375. 2017-08-01 09:31:38.965 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2376. 2017-08-01 09:31:39.024 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2377. 2017-08-01 09:31:39.048 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2378. 2017-08-01 09:31:43.766 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2379. 2017-08-01 09:31:43.766 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2380. 2017-08-01 09:31:43.797 |-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= ?
  2381. 2017-08-01 09:31:43.797 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2382. 2017-08-01 09:31:43.798 |-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= ?
  2383. 2017-08-01 09:31:43.798 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2384. 2017-08-01 09:31:43.824 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2385. 2017-08-01 09:31:43.825 |-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
  2386. 2017-08-01 09:31:43.825 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2387. 2017-08-01 09:31:43.825 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2388. 2017-08-01 09:31:43.826 |-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
  2389. 2017-08-01 09:31:43.826 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2390. 2017-08-01 09:31:43.857 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2391. 2017-08-01 09:31:43.857 |-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=?)
  2392. 2017-08-01 09:31:43.858 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2393. 2017-08-01 09:31:43.858 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2394. 2017-08-01 09:31:43.859 |-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=?)
  2395. 2017-08-01 09:31:43.859 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2396. 2017-08-01 09:31:43.887 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2397. 2017-08-01 09:31:43.889 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2398. 2017-08-01 09:31:43.932 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2399. 2017-08-01 09:31:43.933 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2400. 2017-08-01 09:31:43.937 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2401. 2017-08-01 09:31:43.938 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2402. 2017-08-01 09:31:43.970 |-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
  2403. 2017-08-01 09:31:43.971 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2404. 2017-08-01 09:31:44.003 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2405. 2017-08-01 09:31:44.004 |-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
  2406. 2017-08-01 09:31:44.004 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2407. 2017-08-01 09:31:44.037 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2408. 2017-08-01 09:31:44.075 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2409. 2017-08-01 09:31:44.075 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2410. 2017-08-01 09:31:44.104 |-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= ?
  2411. 2017-08-01 09:31:44.104 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2412. 2017-08-01 09:31:44.106 |-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= ?
  2413. 2017-08-01 09:31:44.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2414. 2017-08-01 09:31:44.133 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2415. 2017-08-01 09:31:44.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2416. 2017-08-01 09:31:44.134 |-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
  2417. 2017-08-01 09:31:44.135 |-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
  2418. 2017-08-01 09:31:44.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2419. 2017-08-01 09:31:44.135 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2420. 2017-08-01 09:31:44.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2421. 2017-08-01 09:31:44.167 |-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=?)
  2422. 2017-08-01 09:31:44.167 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2423. 2017-08-01 09:31:44.167 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2424. 2017-08-01 09:31:44.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=?)
  2425. 2017-08-01 09:31:44.169 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2426. 2017-08-01 09:31:44.193 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2427. 2017-08-01 09:31:44.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2428. 2017-08-01 09:31:44.225 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2429. 2017-08-01 09:31:44.226 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2430. 2017-08-01 09:31:44.228 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2431. 2017-08-01 09:31:44.228 |-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
  2432. 2017-08-01 09:31:44.229 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2433. 2017-08-01 09:31:44.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2434. 2017-08-01 09:31:44.230 |-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
  2435. 2017-08-01 09:31:44.231 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2436. 2017-08-01 09:31:44.263 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2437. 2017-08-01 09:31:44.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2438. 2017-08-01 09:31:44.273 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2439. 2017-08-01 09:31:44.301 |-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= ?
  2440. 2017-08-01 09:31:44.302 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2441. 2017-08-01 09:31:44.349 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2442. 2017-08-01 09:31:44.350 |-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
  2443. 2017-08-01 09:31:44.351 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2444. 2017-08-01 09:31:44.383 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2445. 2017-08-01 09:31:44.384 |-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=?)
  2446. 2017-08-01 09:31:44.385 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2447. 2017-08-01 09:31:44.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2448. 2017-08-01 09:31:44.444 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2449. 2017-08-01 09:31:44.445 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2450. 2017-08-01 09:31:44.450 |-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
  2451. 2017-08-01 09:31:44.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2452. 2017-08-01 09:31:44.552 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2453. 2017-08-01 09:31:44.582 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2454. 2017-08-01 09:31:44.613 |-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= ?
  2455. 2017-08-01 09:31:44.614 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2456. 2017-08-01 09:31:44.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2457. 2017-08-01 09:31:44.644 |-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
  2458. 2017-08-01 09:31:44.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2459. 2017-08-01 09:31:44.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2460. 2017-08-01 09:31:44.678 |-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=?)
  2461. 2017-08-01 09:31:44.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2462. 2017-08-01 09:31:44.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2463. 2017-08-01 09:31:44.737 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2464. 2017-08-01 09:31:44.738 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2465. 2017-08-01 09:31:44.742 |-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=?
  2466. 2017-08-01 09:31:44.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2467. 2017-08-01 09:31:44.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2468. 2017-08-01 09:31:44.834 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2469. 2017-08-01 09:31:44.864 |-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= ?
  2470. 2017-08-01 09:31:44.864 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2471. 2017-08-01 09:31:44.894 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2472. 2017-08-01 09:31:44.895 |-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
  2473. 2017-08-01 09:31:44.895 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2474. 2017-08-01 09:31:44.929 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2475. 2017-08-01 09:31:44.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=?)
  2476. 2017-08-01 09:31:44.930 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2477. 2017-08-01 09:31:44.959 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2478. 2017-08-01 09:31:44.991 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2479. 2017-08-01 09:31:44.992 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2480. 2017-08-01 09:31:44.993 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  2481. 2017-08-01 09:31:44.994 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2482. 2017-08-01 09:31:45.023 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2483. 2017-08-01 09:31:45.115 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2484. 2017-08-01 09:31:45.115 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2485. 2017-08-01 09:31:45.144 |-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= ?
  2486. 2017-08-01 09:31:45.145 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2487. 2017-08-01 09:31:45.147 |-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= ?
  2488. 2017-08-01 09:31:45.147 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2489. 2017-08-01 09:31:45.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2490. 2017-08-01 09:31:45.176 |-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
  2491. 2017-08-01 09:31:45.177 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2492. 2017-08-01 09:31:45.177 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2493. 2017-08-01 09:31:45.178 |-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
  2494. 2017-08-01 09:31:45.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2495. 2017-08-01 09:31:45.208 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2496. 2017-08-01 09:31:45.209 |-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=?)
  2497. 2017-08-01 09:31:45.209 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2498. 2017-08-01 09:31:45.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2499. 2017-08-01 09:31:45.211 |-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=?)
  2500. 2017-08-01 09:31:45.211 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2501. 2017-08-01 09:31:45.236 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2502. 2017-08-01 09:31:45.240 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2503. 2017-08-01 09:31:45.274 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2504. 2017-08-01 09:31:45.275 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2505. 2017-08-01 09:31:45.277 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2506. 2017-08-01 09:31:45.278 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2507. 2017-08-01 09:31:45.280 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2508. 2017-08-01 09:31:45.281 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2509. 2017-08-01 09:31:45.288 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2510. 2017-08-01 09:31:45.288 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2511. 2017-08-01 09:31:45.371 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2512. 2017-08-01 09:31:45.372 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2513. 2017-08-01 09:31:45.373 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2514. 2017-08-01 09:31:45.406 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2515. 2017-08-01 09:31:45.408 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2516. 2017-08-01 09:31:45.408 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2517. 2017-08-01 09:31:45.463 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2518. 2017-08-01 09:31:45.464 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2519. 2017-08-01 09:31:45.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2520. 2017-08-01 09:31:45.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2521. 2017-08-01 09:31:45.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2522. 2017-08-01 09:32:00.592 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2523. 2017-08-01 09:32:00.592 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2524. 2017-08-01 09:32:00.632 |-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= ?
  2525. 2017-08-01 09:32:00.632 |-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-08-01 09:32:00.632 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2527. 2017-08-01 09:32:00.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2528. 2017-08-01 09:32:00.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2529. 2017-08-01 09:32:00.661 |-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
  2530. 2017-08-01 09:32:00.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2531. 2017-08-01 09:32:00.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2532. 2017-08-01 09:32:00.662 |-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
  2533. 2017-08-01 09:32:00.663 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2534. 2017-08-01 09:32:00.694 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2535. 2017-08-01 09:32:00.695 |-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=?)
  2536. 2017-08-01 09:32:00.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2537. 2017-08-01 09:32:00.713 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2538. 2017-08-01 09:32:00.714 |-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=?)
  2539. 2017-08-01 09:32:00.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2540. 2017-08-01 09:32:00.724 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2541. 2017-08-01 09:32:00.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2542. 2017-08-01 09:32:00.769 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2543. 2017-08-01 09:32:00.770 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2544. 2017-08-01 09:32:00.797 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2545. 2017-08-01 09:32:00.799 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2546. 2017-08-01 09:32:00.835 |-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
  2547. 2017-08-01 09:32:00.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2548. 2017-08-01 09:32:00.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2549. 2017-08-01 09:32:00.870 |-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
  2550. 2017-08-01 09:32:00.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2551. 2017-08-01 09:32:00.903 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2552. 2017-08-01 09:32:00.939 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2553. 2017-08-01 09:32:00.939 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2554. 2017-08-01 09:32:00.972 |-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= ?
  2555. 2017-08-01 09:32:00.972 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2556. 2017-08-01 09:32:00.973 |-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= ?
  2557. 2017-08-01 09:32:00.973 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2558. 2017-08-01 09:32:00.999 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2559. 2017-08-01 09:32:01.000 |-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
  2560. 2017-08-01 09:32:01.000 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2561. 2017-08-01 09:32:01.000 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2562. 2017-08-01 09:32:01.001 |-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
  2563. 2017-08-01 09:32:01.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2564. 2017-08-01 09:32:01.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2565. 2017-08-01 09:32:01.032 |-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=?)
  2566. 2017-08-01 09:32:01.033 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2567. 2017-08-01 09:32:01.034 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2568. 2017-08-01 09:32:01.034 |-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=?)
  2569. 2017-08-01 09:32:01.035 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2570. 2017-08-01 09:32:01.063 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2571. 2017-08-01 09:32:01.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2572. 2017-08-01 09:32:01.095 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2573. 2017-08-01 09:32:01.096 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2574. 2017-08-01 09:32:01.098 |-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
  2575. 2017-08-01 09:32:01.099 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2576. 2017-08-01 09:32:01.102 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2577. 2017-08-01 09:32:01.104 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2578. 2017-08-01 09:32:01.105 |-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
  2579. 2017-08-01 09:32:01.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2580. 2017-08-01 09:32:01.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2581. 2017-08-01 09:32:01.135 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2582. 2017-08-01 09:32:01.144 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2583. 2017-08-01 09:32:01.183 |-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= ?
  2584. 2017-08-01 09:32:01.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2585. 2017-08-01 09:32:01.212 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2586. 2017-08-01 09:32:01.213 |-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
  2587. 2017-08-01 09:32:01.213 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2588. 2017-08-01 09:32:01.244 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2589. 2017-08-01 09:32:01.244 |-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=?)
  2590. 2017-08-01 09:32:01.245 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2591. 2017-08-01 09:32:01.270 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2592. 2017-08-01 09:32:01.306 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2593. 2017-08-01 09:32:01.308 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2594. 2017-08-01 09:32:01.313 |-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
  2595. 2017-08-01 09:32:01.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2596. 2017-08-01 09:32:01.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2597. 2017-08-01 09:32:01.447 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2598. 2017-08-01 09:32:01.488 |-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= ?
  2599. 2017-08-01 09:32:01.488 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2600. 2017-08-01 09:32:01.516 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2601. 2017-08-01 09:32:01.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
  2602. 2017-08-01 09:32:01.517 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2603. 2017-08-01 09:32:01.549 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2604. 2017-08-01 09:32:01.550 |-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=?)
  2605. 2017-08-01 09:32:01.551 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2606. 2017-08-01 09:32:01.578 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2607. 2017-08-01 09:32:01.612 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2608. 2017-08-01 09:32:01.613 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2609. 2017-08-01 09:32:01.617 |-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=?
  2610. 2017-08-01 09:32:01.618 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2611. 2017-08-01 09:32:01.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2612. 2017-08-01 09:32:01.723 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2613. 2017-08-01 09:32:01.753 |-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= ?
  2614. 2017-08-01 09:32:01.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2615. 2017-08-01 09:32:01.783 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2616. 2017-08-01 09:32:01.784 |-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
  2617. 2017-08-01 09:32:01.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2618. 2017-08-01 09:32:01.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2619. 2017-08-01 09:32:01.816 |-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=?)
  2620. 2017-08-01 09:32:01.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2621. 2017-08-01 09:32:01.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2622. 2017-08-01 09:32:01.884 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2623. 2017-08-01 09:32:01.886 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2624. 2017-08-01 09:32:01.887 |-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
  2625. 2017-08-01 09:32:01.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2626. 2017-08-01 09:32:01.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2627. 2017-08-01 09:32:02.012 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2628. 2017-08-01 09:32:02.013 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2629. 2017-08-01 09:32:02.044 |-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= ?
  2630. 2017-08-01 09:32:02.045 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2631. 2017-08-01 09:32:02.045 |-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= ?
  2632. 2017-08-01 09:32:02.045 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2633. 2017-08-01 09:32:02.074 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2634. 2017-08-01 09:32:02.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2635. 2017-08-01 09:32:02.075 |-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
  2636. 2017-08-01 09:32:02.075 |-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
  2637. 2017-08-01 09:32:02.075 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2638. 2017-08-01 09:32:02.075 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2639. 2017-08-01 09:32:02.105 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2640. 2017-08-01 09:32:02.107 |-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=?)
  2641. 2017-08-01 09:32:02.107 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2642. 2017-08-01 09:32:02.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2643. 2017-08-01 09:32:02.108 |-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=?)
  2644. 2017-08-01 09:32:02.109 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2645. 2017-08-01 09:32:02.137 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2646. 2017-08-01 09:32:02.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2647. 2017-08-01 09:32:02.171 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2648. 2017-08-01 09:32:02.172 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2649. 2017-08-01 09:32:02.181 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2650. 2017-08-01 09:32:02.182 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2651. 2017-08-01 09:32:02.183 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2652. 2017-08-01 09:32:02.184 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2653. 2017-08-01 09:32:02.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2654. 2017-08-01 09:32:02.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2655. 2017-08-01 09:32:02.288 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2656. 2017-08-01 09:32:02.290 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2657. 2017-08-01 09:32:02.290 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2658. 2017-08-01 09:32:02.310 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2659. 2017-08-01 09:32:02.318 |-DEBUG [http-nio-8089-exec-5] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2660. 2017-08-01 09:32:02.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2661. 2017-08-01 09:32:02.380 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2662. 2017-08-01 09:32:02.381 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2663. 2017-08-01 09:32:02.382 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2664. 2017-08-01 09:32:02.443 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2665. 2017-08-01 09:32:02.468 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2666. 2017-08-01 09:36:31.903 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2667. 2017-08-01 09:36:31.905 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2668. 2017-08-01 09:36:32.127 |-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= ?
  2669. 2017-08-01 09:36:32.128 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2670. 2017-08-01 09:36:32.139 |-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= ?
  2671. 2017-08-01 09:36:32.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2672. 2017-08-01 09:36:32.155 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2673. 2017-08-01 09:36:32.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2674. 2017-08-01 09:36:32.180 |-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
  2675. 2017-08-01 09:36:32.181 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2676. 2017-08-01 09:36:32.194 |-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
  2677. 2017-08-01 09:36:32.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2678. 2017-08-01 09:36:32.210 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2679. 2017-08-01 09:36:32.211 |-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=?)
  2680. 2017-08-01 09:36:32.212 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2681. 2017-08-01 09:36:32.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2682. 2017-08-01 09:36:32.231 |-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=?)
  2683. 2017-08-01 09:36:32.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2684. 2017-08-01 09:36:32.238 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2685. 2017-08-01 09:36:32.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2686. 2017-08-01 09:36:32.399 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2687. 2017-08-01 09:36:32.400 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2688. 2017-08-01 09:36:32.466 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2689. 2017-08-01 09:36:32.468 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2690. 2017-08-01 09:36:32.523 |-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
  2691. 2017-08-01 09:36:32.524 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2692. 2017-08-01 09:36:32.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2693. 2017-08-01 09:36:32.556 |-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
  2694. 2017-08-01 09:36:32.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2695. 2017-08-01 09:36:32.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2696. 2017-08-01 09:36:32.632 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2697. 2017-08-01 09:36:32.632 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2698. 2017-08-01 09:36:32.703 |-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= ?
  2699. 2017-08-01 09:36:32.704 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2700. 2017-08-01 09:36:32.723 |-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= ?
  2701. 2017-08-01 09:36:32.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2702. 2017-08-01 09:36:32.737 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2703. 2017-08-01 09:36:32.738 |-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
  2704. 2017-08-01 09:36:32.738 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2705. 2017-08-01 09:36:32.752 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2706. 2017-08-01 09:36:32.753 |-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
  2707. 2017-08-01 09:36:32.753 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2708. 2017-08-01 09:36:32.770 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2709. 2017-08-01 09:36:32.771 |-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=?)
  2710. 2017-08-01 09:36:32.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2711. 2017-08-01 09:36:32.786 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2712. 2017-08-01 09:36:32.787 |-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=?)
  2713. 2017-08-01 09:36:32.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2714. 2017-08-01 09:36:32.802 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2715. 2017-08-01 09:36:32.819 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2716. 2017-08-01 09:36:32.977 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2717. 2017-08-01 09:36:32.978 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2718. 2017-08-01 09:36:32.980 |-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
  2719. 2017-08-01 09:36:32.980 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2720. 2017-08-01 09:36:33.019 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2721. 2017-08-01 09:36:33.034 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2722. 2017-08-01 09:36:33.036 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2723. 2017-08-01 09:36:33.037 |-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
  2724. 2017-08-01 09:36:33.038 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2725. 2017-08-01 09:36:33.073 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2726. 2017-08-01 09:36:33.083 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2727. 2017-08-01 09:36:33.133 |-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= ?
  2728. 2017-08-01 09:36:33.133 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2729. 2017-08-01 09:36:33.163 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2730. 2017-08-01 09:36:33.164 |-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
  2731. 2017-08-01 09:36:33.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2732. 2017-08-01 09:36:33.195 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2733. 2017-08-01 09:36:33.196 |-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=?)
  2734. 2017-08-01 09:36:33.196 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2735. 2017-08-01 09:36:33.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2736. 2017-08-01 09:36:33.335 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2737. 2017-08-01 09:36:33.336 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2738. 2017-08-01 09:36:33.341 |-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
  2739. 2017-08-01 09:36:33.342 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2740. 2017-08-01 09:36:33.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2741. 2017-08-01 09:36:33.472 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2742. 2017-08-01 09:36:33.523 |-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= ?
  2743. 2017-08-01 09:36:33.523 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2744. 2017-08-01 09:36:33.550 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2745. 2017-08-01 09:36:33.552 |-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
  2746. 2017-08-01 09:36:33.552 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2747. 2017-08-01 09:36:33.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2748. 2017-08-01 09:36:33.584 |-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=?)
  2749. 2017-08-01 09:36:33.584 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2750. 2017-08-01 09:36:33.610 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2751. 2017-08-01 09:36:33.724 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2752. 2017-08-01 09:36:33.725 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2753. 2017-08-01 09:36:33.728 |-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=?
  2754. 2017-08-01 09:36:33.729 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2755. 2017-08-01 09:36:33.757 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2756. 2017-08-01 09:36:33.823 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2757. 2017-08-01 09:36:33.882 |-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= ?
  2758. 2017-08-01 09:36:33.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2759. 2017-08-01 09:36:33.913 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2760. 2017-08-01 09:36:33.914 |-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
  2761. 2017-08-01 09:36:33.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2762. 2017-08-01 09:36:33.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2763. 2017-08-01 09:36:33.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=?)
  2764. 2017-08-01 09:36:33.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2765. 2017-08-01 09:36:33.973 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2766. 2017-08-01 09:36:34.084 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2767. 2017-08-01 09:36:34.086 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2768. 2017-08-01 09:36:34.088 |-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
  2769. 2017-08-01 09:36:34.088 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2770. 2017-08-01 09:36:34.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2771. 2017-08-01 09:36:34.208 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2772. 2017-08-01 09:36:34.209 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2773. 2017-08-01 09:36:34.293 |-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= ?
  2774. 2017-08-01 09:36:34.293 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2775. 2017-08-01 09:36:34.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= ?
  2776. 2017-08-01 09:36:34.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2777. 2017-08-01 09:36:34.331 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2778. 2017-08-01 09:36:34.332 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2779. 2017-08-01 09:36:34.332 |-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
  2780. 2017-08-01 09:36:34.333 |-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
  2781. 2017-08-01 09:36:34.333 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2782. 2017-08-01 09:36:34.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2783. 2017-08-01 09:36:34.363 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2784. 2017-08-01 09:36:34.364 |-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=?)
  2785. 2017-08-01 09:36:34.365 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2786. 2017-08-01 09:36:34.366 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2787. 2017-08-01 09:36:34.367 |-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=?)
  2788. 2017-08-01 09:36:34.367 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2789. 2017-08-01 09:36:34.392 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2790. 2017-08-01 09:36:34.395 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2791. 2017-08-01 09:36:34.567 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2792. 2017-08-01 09:36:34.568 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2793. 2017-08-01 09:36:34.576 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2794. 2017-08-01 09:36:34.577 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2795. 2017-08-01 09:36:34.624 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2796. 2017-08-01 09:36:34.625 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2797. 2017-08-01 09:36:34.628 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2798. 2017-08-01 09:36:34.629 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2799. 2017-08-01 09:36:34.690 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2800. 2017-08-01 09:36:34.692 |-DEBUG [http-nio-8089-exec-4] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2801. 2017-08-01 09:36:34.692 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2802. 2017-08-01 09:36:34.713 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2803. 2017-08-01 09:36:34.714 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2804. 2017-08-01 09:36:34.714 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2805. 2017-08-01 09:36:34.804 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2806. 2017-08-01 09:36:34.805 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2807. 2017-08-01 09:36:34.806 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2808. 2017-08-01 09:36:34.816 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2809. 2017-08-01 09:36:34.892 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2810. 2017-08-01 09:48:41.734 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2811. 2017-08-01 09:48:41.734 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2812. 2017-08-01 09:48:42.264 |-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= ?
  2813. 2017-08-01 09:48:42.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2814. 2017-08-01 09:48:42.265 |-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= ?
  2815. 2017-08-01 09:48:42.265 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2816. 2017-08-01 09:48:42.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2817. 2017-08-01 09:48:42.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2818. 2017-08-01 09:48:42.321 |-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
  2819. 2017-08-01 09:48:42.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2820. 2017-08-01 09:48:42.323 |-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
  2821. 2017-08-01 09:48:42.323 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2822. 2017-08-01 09:48:42.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2823. 2017-08-01 09:48:42.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=?)
  2824. 2017-08-01 09:48:42.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2825. 2017-08-01 09:48:42.355 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2826. 2017-08-01 09:48:42.355 |-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=?)
  2827. 2017-08-01 09:48:42.355 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2828. 2017-08-01 09:48:42.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2829. 2017-08-01 09:48:42.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2830. 2017-08-01 09:48:43.607 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2831. 2017-08-01 09:48:43.609 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2832. 2017-08-01 09:48:43.778 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2833. 2017-08-01 09:48:43.779 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2834. 2017-08-01 09:48:45.005 |-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
  2835. 2017-08-01 09:48:45.005 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2836. 2017-08-01 09:48:45.036 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2837. 2017-08-01 09:48:45.038 |-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
  2838. 2017-08-01 09:48:45.038 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2839. 2017-08-01 09:48:45.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2840. 2017-08-01 09:48:45.109 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2841. 2017-08-01 09:48:45.109 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2842. 2017-08-01 09:48:45.820 |-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= ?
  2843. 2017-08-01 09:48:45.821 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2844. 2017-08-01 09:48:45.849 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2845. 2017-08-01 09:48:45.850 |-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
  2846. 2017-08-01 09:48:45.850 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2847. 2017-08-01 09:48:45.881 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2848. 2017-08-01 09:48:45.881 |-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=?)
  2849. 2017-08-01 09:48:45.882 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2850. 2017-08-01 09:48:45.910 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2851. 2017-08-01 09:48:46.335 |-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= ?
  2852. 2017-08-01 09:48:46.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2853. 2017-08-01 09:48:46.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2854. 2017-08-01 09:48:46.368 |-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
  2855. 2017-08-01 09:48:46.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2856. 2017-08-01 09:48:46.401 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2857. 2017-08-01 09:48:46.402 |-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=?)
  2858. 2017-08-01 09:48:46.402 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2859. 2017-08-01 09:48:46.428 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2860. 2017-08-01 09:48:46.938 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2861. 2017-08-01 09:48:46.939 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2862. 2017-08-01 09:48:46.941 |-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
  2863. 2017-08-01 09:48:46.941 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2864. 2017-08-01 09:48:46.971 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  2865. 2017-08-01 09:48:46.980 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2866. 2017-08-01 09:48:47.307 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2867. 2017-08-01 09:48:47.309 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2868. 2017-08-01 09:48:47.311 |-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
  2869. 2017-08-01 09:48:47.311 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2870. 2017-08-01 09:48:47.340 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2871. 2017-08-01 09:48:48.019 |-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= ?
  2872. 2017-08-01 09:48:48.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2873. 2017-08-01 09:48:48.049 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2874. 2017-08-01 09:48:48.050 |-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
  2875. 2017-08-01 09:48:48.050 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2876. 2017-08-01 09:48:48.084 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2877. 2017-08-01 09:48:48.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=?)
  2878. 2017-08-01 09:48:48.085 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2879. 2017-08-01 09:48:48.111 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2880. 2017-08-01 09:48:48.237 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2881. 2017-08-01 09:48:48.238 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2882. 2017-08-01 09:48:48.243 |-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
  2883. 2017-08-01 09:48:48.244 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2884. 2017-08-01 09:48:48.344 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  2885. 2017-08-01 09:48:48.372 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2886. 2017-08-01 09:48:48.658 |-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= ?
  2887. 2017-08-01 09:48:48.659 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2888. 2017-08-01 09:48:48.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2889. 2017-08-01 09:48:48.687 |-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
  2890. 2017-08-01 09:48:48.688 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2891. 2017-08-01 09:48:48.718 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2892. 2017-08-01 09:48:48.719 |-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=?)
  2893. 2017-08-01 09:48:48.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2894. 2017-08-01 09:48:48.745 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2895. 2017-08-01 09:48:48.857 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2896. 2017-08-01 09:48:48.859 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2897. 2017-08-01 09:48:48.863 |-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=?
  2898. 2017-08-01 09:48:48.863 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2899. 2017-08-01 09:48:48.893 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  2900. 2017-08-01 09:48:48.961 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2901. 2017-08-01 09:48:49.208 |-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= ?
  2902. 2017-08-01 09:48:49.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2903. 2017-08-01 09:48:49.237 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2904. 2017-08-01 09:48:49.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
  2905. 2017-08-01 09:48:49.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2906. 2017-08-01 09:48:49.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2907. 2017-08-01 09:48:49.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=?)
  2908. 2017-08-01 09:48:49.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2909. 2017-08-01 09:48:49.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2910. 2017-08-01 09:48:49.457 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2911. 2017-08-01 09:48:49.459 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2912. 2017-08-01 09:48:49.460 |-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
  2913. 2017-08-01 09:48:49.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  2914. 2017-08-01 09:48:49.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  2915. 2017-08-01 09:48:49.593 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2916. 2017-08-01 09:48:49.594 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2917. 2017-08-01 09:48:49.859 |-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= ?
  2918. 2017-08-01 09:48:49.860 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2919. 2017-08-01 09:48:49.888 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2920. 2017-08-01 09:48:49.889 |-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
  2921. 2017-08-01 09:48:49.889 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2922. 2017-08-01 09:48:49.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2923. 2017-08-01 09:48:49.920 |-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=?)
  2924. 2017-08-01 09:48:49.921 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2925. 2017-08-01 09:48:49.947 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2926. 2017-08-01 09:48:49.959 |-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= ?
  2927. 2017-08-01 09:48:49.959 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2928. 2017-08-01 09:48:49.986 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2929. 2017-08-01 09:48:49.987 |-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
  2930. 2017-08-01 09:48:49.988 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2931. 2017-08-01 09:48:50.020 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2932. 2017-08-01 09:48:50.021 |-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=?)
  2933. 2017-08-01 09:48:50.022 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2934. 2017-08-01 09:48:50.048 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2935. 2017-08-01 09:48:50.178 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2936. 2017-08-01 09:48:50.179 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2937. 2017-08-01 09:48:50.187 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  2938. 2017-08-01 09:48:50.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2939. 2017-08-01 09:48:50.299 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  2940. 2017-08-01 09:48:50.301 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  2941. 2017-08-01 09:48:50.301 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  2942. 2017-08-01 09:48:50.398 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2943. 2017-08-01 09:48:50.399 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2944. 2017-08-01 09:48:50.401 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  2945. 2017-08-01 09:48:50.402 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2946. 2017-08-01 09:48:50.414 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  2947. 2017-08-01 09:48:50.487 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  2948. 2017-08-01 09:48:50.488 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  2949. 2017-08-01 09:48:50.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2950. 2017-08-01 09:48:50.577 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  2951. 2017-08-01 09:48:50.578 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  2952. 2017-08-01 09:48:50.579 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  2953. 2017-08-01 09:48:50.665 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  2954. 2017-08-01 09:49:04.195 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2955. 2017-08-01 09:49:04.195 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2956. 2017-08-01 09:49:04.378 |-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= ?
  2957. 2017-08-01 09:49:04.378 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2958. 2017-08-01 09:49:04.388 |-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= ?
  2959. 2017-08-01 09:49:04.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2960. 2017-08-01 09:49:04.409 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2961. 2017-08-01 09:49:04.410 |-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
  2962. 2017-08-01 09:49:04.410 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2963. 2017-08-01 09:49:04.415 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2964. 2017-08-01 09:49:04.415 |-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
  2965. 2017-08-01 09:49:04.416 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2966. 2017-08-01 09:49:04.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2967. 2017-08-01 09:49:04.442 |-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=?)
  2968. 2017-08-01 09:49:04.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2969. 2017-08-01 09:49:04.444 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2970. 2017-08-01 09:49:04.445 |-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=?)
  2971. 2017-08-01 09:49:04.445 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2972. 2017-08-01 09:49:04.470 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2973. 2017-08-01 09:49:04.471 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  2974. 2017-08-01 09:49:04.677 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2975. 2017-08-01 09:49:04.679 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2976. 2017-08-01 09:49:04.707 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  2977. 2017-08-01 09:49:04.708 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2978. 2017-08-01 09:49:04.879 |-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
  2979. 2017-08-01 09:49:04.880 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  2980. 2017-08-01 09:49:04.914 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  2981. 2017-08-01 09:49:04.915 |-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
  2982. 2017-08-01 09:49:04.916 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2983. 2017-08-01 09:49:04.945 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2984. 2017-08-01 09:49:04.987 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2985. 2017-08-01 09:49:04.987 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  2986. 2017-08-01 09:49:05.189 |-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= ?
  2987. 2017-08-01 09:49:05.189 |-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= ?
  2988. 2017-08-01 09:49:05.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2989. 2017-08-01 09:49:05.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2990. 2017-08-01 09:49:05.228 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2991. 2017-08-01 09:49:05.229 |-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
  2992. 2017-08-01 09:49:05.229 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2993. 2017-08-01 09:49:05.229 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2994. 2017-08-01 09:49:05.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2995. 2017-08-01 09:49:05.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2996. 2017-08-01 09:49:05.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  2997. 2017-08-01 09:49:05.261 |-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=?)
  2998. 2017-08-01 09:49:05.261 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2999. 2017-08-01 09:49:05.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3000. 2017-08-01 09:49:05.264 |-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=?)
  3001. 2017-08-01 09:49:05.264 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3002. 2017-08-01 09:49:05.288 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3003. 2017-08-01 09:49:05.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3004. 2017-08-01 09:49:05.497 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3005. 2017-08-01 09:49:05.499 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3006. 2017-08-01 09:49:05.501 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3007. 2017-08-01 09:49:05.501 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3008. 2017-08-01 09:49:05.527 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3009. 2017-08-01 09:49:05.530 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3010. 2017-08-01 09:49:05.531 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3011. 2017-08-01 09:49:05.531 |-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
  3012. 2017-08-01 09:49:05.532 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3013. 2017-08-01 09:49:05.540 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3014. 2017-08-01 09:49:05.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3015. 2017-08-01 09:49:05.690 |-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= ?
  3016. 2017-08-01 09:49:05.691 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3017. 2017-08-01 09:49:05.722 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3018. 2017-08-01 09:49:05.723 |-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
  3019. 2017-08-01 09:49:05.723 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3020. 2017-08-01 09:49:05.755 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3021. 2017-08-01 09:49:05.756 |-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=?)
  3022. 2017-08-01 09:49:05.756 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3023. 2017-08-01 09:49:05.785 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3024. 2017-08-01 09:49:05.907 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3025. 2017-08-01 09:49:05.909 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3026. 2017-08-01 09:49:05.913 |-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
  3027. 2017-08-01 09:49:05.914 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3028. 2017-08-01 09:49:06.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3029. 2017-08-01 09:49:06.028 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3030. 2017-08-01 09:49:06.189 |-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= ?
  3031. 2017-08-01 09:49:06.189 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3032. 2017-08-01 09:49:06.217 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3033. 2017-08-01 09:49:06.218 |-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
  3034. 2017-08-01 09:49:06.218 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3035. 2017-08-01 09:49:06.250 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3036. 2017-08-01 09:49:06.251 |-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=?)
  3037. 2017-08-01 09:49:06.251 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3038. 2017-08-01 09:49:06.279 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3039. 2017-08-01 09:49:06.398 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3040. 2017-08-01 09:49:06.399 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3041. 2017-08-01 09:49:06.403 |-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=?
  3042. 2017-08-01 09:49:06.403 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3043. 2017-08-01 09:49:06.430 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3044. 2017-08-01 09:49:06.494 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3045. 2017-08-01 09:49:06.649 |-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= ?
  3046. 2017-08-01 09:49:06.650 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3047. 2017-08-01 09:49:06.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3048. 2017-08-01 09:49:06.698 |-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
  3049. 2017-08-01 09:49:06.698 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3050. 2017-08-01 09:49:06.748 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3051. 2017-08-01 09:49:06.749 |-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=?)
  3052. 2017-08-01 09:49:06.749 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3053. 2017-08-01 09:49:06.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3054. 2017-08-01 09:49:06.907 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3055. 2017-08-01 09:49:06.909 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3056. 2017-08-01 09:49:06.910 |-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
  3057. 2017-08-01 09:49:06.911 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3058. 2017-08-01 09:49:06.938 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3059. 2017-08-01 09:49:07.033 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3060. 2017-08-01 09:49:07.033 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3061. 2017-08-01 09:49:07.229 |-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= ?
  3062. 2017-08-01 09:49:07.229 |-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= ?
  3063. 2017-08-01 09:49:07.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3064. 2017-08-01 09:49:07.230 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3065. 2017-08-01 09:49:07.257 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3066. 2017-08-01 09:49:07.258 |-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
  3067. 2017-08-01 09:49:07.258 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3068. 2017-08-01 09:49:07.259 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3069. 2017-08-01 09:49:07.260 |-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
  3070. 2017-08-01 09:49:07.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3071. 2017-08-01 09:49:07.292 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3072. 2017-08-01 09:49:07.293 |-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=?)
  3073. 2017-08-01 09:49:07.294 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3074. 2017-08-01 09:49:07.302 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3075. 2017-08-01 09:49:07.303 |-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=?)
  3076. 2017-08-01 09:49:07.304 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3077. 2017-08-01 09:49:07.323 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3078. 2017-08-01 09:49:07.331 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3079. 2017-08-01 09:49:07.527 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3080. 2017-08-01 09:49:07.529 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3081. 2017-08-01 09:49:07.537 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3082. 2017-08-01 09:49:07.538 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3083. 2017-08-01 09:49:07.567 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3084. 2017-08-01 09:49:07.569 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3085. 2017-08-01 09:49:07.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3086. 2017-08-01 09:49:07.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3087. 2017-08-01 09:49:07.660 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3088. 2017-08-01 09:49:07.663 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3089. 2017-08-01 09:49:07.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3090. 2017-08-01 09:49:07.664 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3091. 2017-08-01 09:49:07.665 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3092. 2017-08-01 09:49:07.665 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3093. 2017-08-01 09:49:07.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3094. 2017-08-01 09:49:07.765 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3095. 2017-08-01 09:49:07.765 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3096. 2017-08-01 09:49:07.795 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3097. 2017-08-01 09:49:07.855 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3098. 2017-08-01 10:09:21.439 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3099. 2017-08-01 10:09:21.440 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3100. 2017-08-01 10:09:21.610 |-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= ?
  3101. 2017-08-01 10:09:21.611 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3102. 2017-08-01 10:09:21.614 |-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= ?
  3103. 2017-08-01 10:09:21.615 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3104. 2017-08-01 10:09:21.640 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3105. 2017-08-01 10:09:21.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3106. 2017-08-01 10:09:21.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
  3107. 2017-08-01 10:09:21.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3108. 2017-08-01 10:09:21.671 |-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
  3109. 2017-08-01 10:09:21.672 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3110. 2017-08-01 10:09:21.698 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3111. 2017-08-01 10:09:21.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=?)
  3112. 2017-08-01 10:09:21.699 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3113. 2017-08-01 10:09:21.717 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3114. 2017-08-01 10:09:21.717 |-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=?)
  3115. 2017-08-01 10:09:21.718 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3116. 2017-08-01 10:09:21.725 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3117. 2017-08-01 10:09:21.746 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3118. 2017-08-01 10:09:21.871 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3119. 2017-08-01 10:09:21.873 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3120. 2017-08-01 10:09:21.931 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3121. 2017-08-01 10:09:21.932 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3122. 2017-08-01 10:09:21.991 |-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
  3123. 2017-08-01 10:09:21.991 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3124. 2017-08-01 10:09:22.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3125. 2017-08-01 10:09:22.023 |-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
  3126. 2017-08-01 10:09:22.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3127. 2017-08-01 10:09:22.068 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3128. 2017-08-01 10:09:22.131 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3129. 2017-08-01 10:09:22.131 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3130. 2017-08-01 10:09:22.179 |-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= ?
  3131. 2017-08-01 10:09:22.180 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3132. 2017-08-01 10:09:22.205 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3133. 2017-08-01 10:09:22.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
  3134. 2017-08-01 10:09:22.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3135. 2017-08-01 10:09:22.219 |-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= ?
  3136. 2017-08-01 10:09:22.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3137. 2017-08-01 10:09:22.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3138. 2017-08-01 10:09:22.249 |-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
  3139. 2017-08-01 10:09:22.250 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3140. 2017-08-01 10:09:22.251 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3141. 2017-08-01 10:09:22.252 |-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=?)
  3142. 2017-08-01 10:09:22.252 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3143. 2017-08-01 10:09:22.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3144. 2017-08-01 10:09:22.281 |-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=?)
  3145. 2017-08-01 10:09:22.281 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3146. 2017-08-01 10:09:22.281 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3147. 2017-08-01 10:09:22.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3148. 2017-08-01 10:09:22.380 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3149. 2017-08-01 10:09:22.382 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3150. 2017-08-01 10:09:22.383 |-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
  3151. 2017-08-01 10:09:22.384 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3152. 2017-08-01 10:09:22.411 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3153. 2017-08-01 10:09:22.489 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3154. 2017-08-01 10:09:22.491 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3155. 2017-08-01 10:09:22.493 |-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
  3156. 2017-08-01 10:09:22.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3157. 2017-08-01 10:09:22.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3158. 2017-08-01 10:09:22.530 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3159. 2017-08-01 10:09:22.579 |-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= ?
  3160. 2017-08-01 10:09:22.580 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3161. 2017-08-01 10:09:22.607 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3162. 2017-08-01 10:09:22.608 |-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
  3163. 2017-08-01 10:09:22.608 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3164. 2017-08-01 10:09:22.636 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3165. 2017-08-01 10:09:22.637 |-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=?)
  3166. 2017-08-01 10:09:22.637 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3167. 2017-08-01 10:09:22.665 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3168. 2017-08-01 10:09:22.779 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3169. 2017-08-01 10:09:22.780 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3170. 2017-08-01 10:09:22.785 |-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
  3171. 2017-08-01 10:09:22.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3172. 2017-08-01 10:09:22.875 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3173. 2017-08-01 10:09:22.905 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3174. 2017-08-01 10:09:22.960 |-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= ?
  3175. 2017-08-01 10:09:22.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3176. 2017-08-01 10:09:22.988 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3177. 2017-08-01 10:09:22.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
  3178. 2017-08-01 10:09:22.989 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3179. 2017-08-01 10:09:23.019 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3180. 2017-08-01 10:09:23.020 |-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=?)
  3181. 2017-08-01 10:09:23.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3182. 2017-08-01 10:09:23.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3183. 2017-08-01 10:09:23.159 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3184. 2017-08-01 10:09:23.160 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3185. 2017-08-01 10:09:23.163 |-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=?
  3186. 2017-08-01 10:09:23.163 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3187. 2017-08-01 10:09:23.188 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3188. 2017-08-01 10:09:23.259 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3189. 2017-08-01 10:09:23.310 |-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= ?
  3190. 2017-08-01 10:09:23.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3191. 2017-08-01 10:09:23.337 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3192. 2017-08-01 10:09:23.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
  3193. 2017-08-01 10:09:23.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3194. 2017-08-01 10:09:23.368 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3195. 2017-08-01 10:09:23.370 |-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=?)
  3196. 2017-08-01 10:09:23.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3197. 2017-08-01 10:09:23.397 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3198. 2017-08-01 10:09:23.510 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3199. 2017-08-01 10:09:23.511 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3200. 2017-08-01 10:09:23.512 |-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
  3201. 2017-08-01 10:09:23.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3202. 2017-08-01 10:09:23.540 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3203. 2017-08-01 10:09:23.633 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3204. 2017-08-01 10:09:23.633 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3205. 2017-08-01 10:09:23.690 |-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= ?
  3206. 2017-08-01 10:09:23.690 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3207. 2017-08-01 10:09:23.717 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3208. 2017-08-01 10:09:23.718 |-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
  3209. 2017-08-01 10:09:23.718 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3210. 2017-08-01 10:09:23.730 |-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= ?
  3211. 2017-08-01 10:09:23.730 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3212. 2017-08-01 10:09:23.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3213. 2017-08-01 10:09:23.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=?)
  3214. 2017-08-01 10:09:23.749 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3215. 2017-08-01 10:09:23.757 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3216. 2017-08-01 10:09:23.758 |-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
  3217. 2017-08-01 10:09:23.758 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3218. 2017-08-01 10:09:23.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3219. 2017-08-01 10:09:23.803 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3220. 2017-08-01 10:09:23.804 |-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=?)
  3221. 2017-08-01 10:09:23.804 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3222. 2017-08-01 10:09:23.832 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3223. 2017-08-01 10:09:23.881 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3224. 2017-08-01 10:09:23.882 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3225. 2017-08-01 10:09:23.891 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3226. 2017-08-01 10:09:23.892 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3227. 2017-08-01 10:09:23.990 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3228. 2017-08-01 10:09:23.991 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3229. 2017-08-01 10:09:23.994 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3230. 2017-08-01 10:09:23.994 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3231. 2017-08-01 10:09:24.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3232. 2017-08-01 10:09:24.009 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3233. 2017-08-01 10:09:24.010 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3234. 2017-08-01 10:09:24.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3235. 2017-08-01 10:09:24.084 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3236. 2017-08-01 10:09:24.085 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3237. 2017-08-01 10:09:24.138 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3238. 2017-08-01 10:09:24.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3239. 2017-08-01 10:09:24.179 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3240. 2017-08-01 10:09:24.179 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3241. 2017-08-01 10:09:24.263 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3242. 2017-08-01 10:09:33.113 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3243. 2017-08-01 10:09:33.113 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3244. 2017-08-01 10:09:33.191 |-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= ?
  3245. 2017-08-01 10:09:33.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3246. 2017-08-01 10:09:33.209 |-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= ?
  3247. 2017-08-01 10:09:33.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3248. 2017-08-01 10:09:33.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3249. 2017-08-01 10:09:33.230 |-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
  3250. 2017-08-01 10:09:33.231 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3251. 2017-08-01 10:09:33.238 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3252. 2017-08-01 10:09:33.239 |-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
  3253. 2017-08-01 10:09:33.239 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3254. 2017-08-01 10:09:33.261 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3255. 2017-08-01 10:09:33.262 |-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=?)
  3256. 2017-08-01 10:09:33.262 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3257. 2017-08-01 10:09:33.283 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3258. 2017-08-01 10:09:33.283 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3259. 2017-08-01 10:09:33.284 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3260. 2017-08-01 10:09:33.288 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3261. 2017-08-01 10:09:33.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3262. 2017-08-01 10:09:33.431 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3263. 2017-08-01 10:09:33.433 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3264. 2017-08-01 10:09:33.520 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3265. 2017-08-01 10:09:33.521 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3266. 2017-08-01 10:09:33.582 |-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
  3267. 2017-08-01 10:09:33.582 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3268. 2017-08-01 10:09:33.613 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3269. 2017-08-01 10:09:33.615 |-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
  3270. 2017-08-01 10:09:33.615 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3271. 2017-08-01 10:09:33.662 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3272. 2017-08-01 10:09:33.700 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3273. 2017-08-01 10:09:33.700 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3274. 2017-08-01 10:09:33.769 |-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= ?
  3275. 2017-08-01 10:09:33.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3276. 2017-08-01 10:09:33.790 |-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= ?
  3277. 2017-08-01 10:09:33.790 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3278. 2017-08-01 10:09:33.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3279. 2017-08-01 10:09:33.798 |-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
  3280. 2017-08-01 10:09:33.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3281. 2017-08-01 10:09:33.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3282. 2017-08-01 10:09:33.817 |-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
  3283. 2017-08-01 10:09:33.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3284. 2017-08-01 10:09:33.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3285. 2017-08-01 10:09:33.843 |-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=?)
  3286. 2017-08-01 10:09:33.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3287. 2017-08-01 10:09:33.847 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3288. 2017-08-01 10:09:33.848 |-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=?)
  3289. 2017-08-01 10:09:33.848 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3290. 2017-08-01 10:09:33.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3291. 2017-08-01 10:09:33.873 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3292. 2017-08-01 10:09:33.971 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3293. 2017-08-01 10:09:33.972 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3294. 2017-08-01 10:09:33.974 |-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
  3295. 2017-08-01 10:09:33.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3296. 2017-08-01 10:09:33.985 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3297. 2017-08-01 10:09:33.986 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3298. 2017-08-01 10:09:33.987 |-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
  3299. 2017-08-01 10:09:33.988 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3300. 2017-08-01 10:09:34.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3301. 2017-08-01 10:09:34.017 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3302. 2017-08-01 10:09:34.027 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3303. 2017-08-01 10:09:34.079 |-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= ?
  3304. 2017-08-01 10:09:34.080 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3305. 2017-08-01 10:09:34.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3306. 2017-08-01 10:09:34.119 |-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
  3307. 2017-08-01 10:09:34.120 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3308. 2017-08-01 10:09:34.150 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3309. 2017-08-01 10:09:34.151 |-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=?)
  3310. 2017-08-01 10:09:34.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3311. 2017-08-01 10:09:34.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3312. 2017-08-01 10:09:34.290 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3313. 2017-08-01 10:09:34.292 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3314. 2017-08-01 10:09:34.298 |-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
  3315. 2017-08-01 10:09:34.298 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3316. 2017-08-01 10:09:34.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3317. 2017-08-01 10:09:34.420 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3318. 2017-08-01 10:09:34.469 |-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= ?
  3319. 2017-08-01 10:09:34.470 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3320. 2017-08-01 10:09:34.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3321. 2017-08-01 10:09:34.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
  3322. 2017-08-01 10:09:34.499 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3323. 2017-08-01 10:09:34.529 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3324. 2017-08-01 10:09:34.530 |-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=?)
  3325. 2017-08-01 10:09:34.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3326. 2017-08-01 10:09:34.558 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3327. 2017-08-01 10:09:34.661 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3328. 2017-08-01 10:09:34.662 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3329. 2017-08-01 10:09:34.666 |-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=?
  3330. 2017-08-01 10:09:34.667 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3331. 2017-08-01 10:09:34.693 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3332. 2017-08-01 10:09:34.759 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3333. 2017-08-01 10:09:34.810 |-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= ?
  3334. 2017-08-01 10:09:34.810 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3335. 2017-08-01 10:09:34.838 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3336. 2017-08-01 10:09:34.839 |-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
  3337. 2017-08-01 10:09:34.839 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3338. 2017-08-01 10:09:34.868 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3339. 2017-08-01 10:09:34.869 |-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=?)
  3340. 2017-08-01 10:09:34.870 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3341. 2017-08-01 10:09:34.896 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3342. 2017-08-01 10:09:35.012 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3343. 2017-08-01 10:09:35.013 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3344. 2017-08-01 10:09:35.014 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  3345. 2017-08-01 10:09:35.015 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3346. 2017-08-01 10:09:35.043 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3347. 2017-08-01 10:09:35.134 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3348. 2017-08-01 10:09:35.134 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3349. 2017-08-01 10:09:35.200 |-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= ?
  3350. 2017-08-01 10:09:35.200 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3351. 2017-08-01 10:09:35.229 |-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= ?
  3352. 2017-08-01 10:09:35.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3353. 2017-08-01 10:09:35.231 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3354. 2017-08-01 10:09:35.232 |-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
  3355. 2017-08-01 10:09:35.232 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3356. 2017-08-01 10:09:35.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3357. 2017-08-01 10:09:35.258 |-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
  3358. 2017-08-01 10:09:35.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3359. 2017-08-01 10:09:35.263 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3360. 2017-08-01 10:09:35.263 |-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=?)
  3361. 2017-08-01 10:09:35.264 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3362. 2017-08-01 10:09:35.292 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3363. 2017-08-01 10:09:35.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3364. 2017-08-01 10:09:35.305 |-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=?)
  3365. 2017-08-01 10:09:35.306 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3366. 2017-08-01 10:09:35.334 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3367. 2017-08-01 10:09:35.455 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3368. 2017-08-01 10:09:35.456 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3369. 2017-08-01 10:09:35.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3370. 2017-08-01 10:09:35.459 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3371. 2017-08-01 10:09:35.511 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3372. 2017-08-01 10:09:35.512 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3373. 2017-08-01 10:09:35.519 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3374. 2017-08-01 10:09:35.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3375. 2017-08-01 10:09:35.545 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3376. 2017-08-01 10:09:35.546 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3377. 2017-08-01 10:09:35.547 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3378. 2017-08-01 10:09:35.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3379. 2017-08-01 10:09:35.640 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3380. 2017-08-01 10:09:35.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3381. 2017-08-01 10:09:35.642 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3382. 2017-08-01 10:09:35.642 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3383. 2017-08-01 10:09:35.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3384. 2017-08-01 10:09:35.737 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3385. 2017-08-01 10:09:35.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3386. 2017-08-01 10:10:05.724 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3387. 2017-08-01 10:10:05.725 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3388. 2017-08-01 10:10:05.870 |-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= ?
  3389. 2017-08-01 10:10:05.870 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3390. 2017-08-01 10:10:05.879 |-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= ?
  3391. 2017-08-01 10:10:05.880 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3392. 2017-08-01 10:10:05.909 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3393. 2017-08-01 10:10:05.911 |-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
  3394. 2017-08-01 10:10:05.911 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3395. 2017-08-01 10:10:05.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3396. 2017-08-01 10:10:05.916 |-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
  3397. 2017-08-01 10:10:05.916 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3398. 2017-08-01 10:10:05.942 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3399. 2017-08-01 10:10:05.942 |-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=?)
  3400. 2017-08-01 10:10:05.943 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3401. 2017-08-01 10:10:05.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3402. 2017-08-01 10:10:05.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3403. 2017-08-01 10:10:05.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3404. 2017-08-01 10:10:05.972 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3405. 2017-08-01 10:10:05.998 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3406. 2017-08-01 10:10:06.158 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3407. 2017-08-01 10:10:06.159 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3408. 2017-08-01 10:10:06.218 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3409. 2017-08-01 10:10:06.219 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3410. 2017-08-01 10:10:06.280 |-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
  3411. 2017-08-01 10:10:06.281 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3412. 2017-08-01 10:10:06.315 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3413. 2017-08-01 10:10:06.316 |-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
  3414. 2017-08-01 10:10:06.316 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3415. 2017-08-01 10:10:06.361 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3416. 2017-08-01 10:10:06.426 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3417. 2017-08-01 10:10:06.426 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3418. 2017-08-01 10:10:06.569 |-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= ?
  3419. 2017-08-01 10:10:06.570 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3420. 2017-08-01 10:10:06.579 |-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= ?
  3421. 2017-08-01 10:10:06.580 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3422. 2017-08-01 10:10:06.605 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3423. 2017-08-01 10:10:06.606 |-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
  3424. 2017-08-01 10:10:06.606 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3425. 2017-08-01 10:10:06.614 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3426. 2017-08-01 10:10:06.615 |-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
  3427. 2017-08-01 10:10:06.615 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3428. 2017-08-01 10:10:06.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3429. 2017-08-01 10:10:06.645 |-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=?)
  3430. 2017-08-01 10:10:06.646 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3431. 2017-08-01 10:10:06.663 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3432. 2017-08-01 10:10:06.664 |-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=?)
  3433. 2017-08-01 10:10:06.664 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3434. 2017-08-01 10:10:06.681 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3435. 2017-08-01 10:10:06.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3436. 2017-08-01 10:10:06.888 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3437. 2017-08-01 10:10:06.889 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3438. 2017-08-01 10:10:06.890 |-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
  3439. 2017-08-01 10:10:06.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3440. 2017-08-01 10:10:06.917 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3441. 2017-08-01 10:10:06.919 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3442. 2017-08-01 10:10:06.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3443. 2017-08-01 10:10:06.920 |-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
  3444. 2017-08-01 10:10:06.921 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3445. 2017-08-01 10:10:06.927 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3446. 2017-08-01 10:10:06.948 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3447. 2017-08-01 10:10:07.039 |-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= ?
  3448. 2017-08-01 10:10:07.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3449. 2017-08-01 10:10:07.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3450. 2017-08-01 10:10:07.069 |-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
  3451. 2017-08-01 10:10:07.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3452. 2017-08-01 10:10:07.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3453. 2017-08-01 10:10:07.116 |-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=?)
  3454. 2017-08-01 10:10:07.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3455. 2017-08-01 10:10:07.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3456. 2017-08-01 10:10:07.268 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3457. 2017-08-01 10:10:07.269 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3458. 2017-08-01 10:10:07.274 |-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
  3459. 2017-08-01 10:10:07.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3460. 2017-08-01 10:10:07.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3461. 2017-08-01 10:10:07.403 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3462. 2017-08-01 10:10:07.519 |-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= ?
  3463. 2017-08-01 10:10:07.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3464. 2017-08-01 10:10:07.549 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3465. 2017-08-01 10:10:07.549 |-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
  3466. 2017-08-01 10:10:07.550 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3467. 2017-08-01 10:10:07.598 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3468. 2017-08-01 10:10:07.599 |-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=?)
  3469. 2017-08-01 10:10:07.599 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3470. 2017-08-01 10:10:07.628 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3471. 2017-08-01 10:10:07.748 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3472. 2017-08-01 10:10:07.749 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3473. 2017-08-01 10:10:07.753 |-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=?
  3474. 2017-08-01 10:10:07.753 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3475. 2017-08-01 10:10:07.781 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3476. 2017-08-01 10:10:07.851 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3477. 2017-08-01 10:10:07.960 |-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= ?
  3478. 2017-08-01 10:10:07.960 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3479. 2017-08-01 10:10:07.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3480. 2017-08-01 10:10:07.988 |-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
  3481. 2017-08-01 10:10:07.989 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3482. 2017-08-01 10:10:08.034 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3483. 2017-08-01 10:10:08.035 |-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=?)
  3484. 2017-08-01 10:10:08.035 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3485. 2017-08-01 10:10:08.062 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3486. 2017-08-01 10:10:08.178 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3487. 2017-08-01 10:10:08.179 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3488. 2017-08-01 10:10:08.180 |-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
  3489. 2017-08-01 10:10:08.181 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3490. 2017-08-01 10:10:08.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3491. 2017-08-01 10:10:08.305 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3492. 2017-08-01 10:10:08.305 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3493. 2017-08-01 10:10:08.450 |-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= ?
  3494. 2017-08-01 10:10:08.450 |-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= ?
  3495. 2017-08-01 10:10:08.450 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3496. 2017-08-01 10:10:08.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3497. 2017-08-01 10:10:08.478 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3498. 2017-08-01 10:10:08.479 |-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
  3499. 2017-08-01 10:10:08.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3500. 2017-08-01 10:10:08.480 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3501. 2017-08-01 10:10:08.481 |-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
  3502. 2017-08-01 10:10:08.481 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3503. 2017-08-01 10:10:08.511 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3504. 2017-08-01 10:10:08.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=?)
  3505. 2017-08-01 10:10:08.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3506. 2017-08-01 10:10:08.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3507. 2017-08-01 10:10:08.525 |-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=?)
  3508. 2017-08-01 10:10:08.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3509. 2017-08-01 10:10:08.540 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3510. 2017-08-01 10:10:08.553 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3511. 2017-08-01 10:10:08.758 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3512. 2017-08-01 10:10:08.759 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3513. 2017-08-01 10:10:08.765 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3514. 2017-08-01 10:10:08.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3515. 2017-08-01 10:10:08.778 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3516. 2017-08-01 10:10:08.779 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3517. 2017-08-01 10:10:08.780 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3518. 2017-08-01 10:10:08.780 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3519. 2017-08-01 10:10:08.869 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3520. 2017-08-01 10:10:08.870 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3521. 2017-08-01 10:10:08.871 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3522. 2017-08-01 10:10:08.887 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3523. 2017-08-01 10:10:08.890 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3524. 2017-08-01 10:10:08.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3525. 2017-08-01 10:10:08.959 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3526. 2017-08-01 10:10:08.961 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3527. 2017-08-01 10:10:08.961 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3528. 2017-08-01 10:10:09.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3529. 2017-08-01 10:10:09.043 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3530. 2017-08-01 10:10:14.278 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3531. 2017-08-01 10:10:14.278 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3532. 2017-08-01 10:10:14.420 |-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= ?
  3533. 2017-08-01 10:10:14.420 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3534. 2017-08-01 10:10:14.429 |-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= ?
  3535. 2017-08-01 10:10:14.430 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3536. 2017-08-01 10:10:14.449 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3537. 2017-08-01 10:10:14.450 |-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
  3538. 2017-08-01 10:10:14.450 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3539. 2017-08-01 10:10:14.456 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3540. 2017-08-01 10:10:14.457 |-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
  3541. 2017-08-01 10:10:14.457 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3542. 2017-08-01 10:10:14.480 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3543. 2017-08-01 10:10:14.481 |-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=?)
  3544. 2017-08-01 10:10:14.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3545. 2017-08-01 10:10:14.501 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3546. 2017-08-01 10:10:14.502 |-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=?)
  3547. 2017-08-01 10:10:14.502 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3548. 2017-08-01 10:10:14.506 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3549. 2017-08-01 10:10:14.530 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3550. 2017-08-01 10:10:14.688 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3551. 2017-08-01 10:10:14.690 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3552. 2017-08-01 10:10:14.738 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3553. 2017-08-01 10:10:14.739 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3554. 2017-08-01 10:10:14.840 |-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
  3555. 2017-08-01 10:10:14.841 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3556. 2017-08-01 10:10:14.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3557. 2017-08-01 10:10:14.874 |-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
  3558. 2017-08-01 10:10:14.874 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3559. 2017-08-01 10:10:14.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3560. 2017-08-01 10:10:14.971 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3561. 2017-08-01 10:10:14.971 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3562. 2017-08-01 10:10:15.109 |-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= ?
  3563. 2017-08-01 10:10:15.110 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3564. 2017-08-01 10:10:15.130 |-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= ?
  3565. 2017-08-01 10:10:15.131 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3566. 2017-08-01 10:10:15.137 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3567. 2017-08-01 10:10:15.138 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3568. 2017-08-01 10:10:15.139 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3569. 2017-08-01 10:10:15.159 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3570. 2017-08-01 10:10:15.160 |-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
  3571. 2017-08-01 10:10:15.160 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3572. 2017-08-01 10:10:15.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3573. 2017-08-01 10:10:15.184 |-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=?)
  3574. 2017-08-01 10:10:15.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3575. 2017-08-01 10:10:15.190 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3576. 2017-08-01 10:10:15.190 |-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=?)
  3577. 2017-08-01 10:10:15.190 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3578. 2017-08-01 10:10:15.212 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3579. 2017-08-01 10:10:15.217 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3580. 2017-08-01 10:10:15.408 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3581. 2017-08-01 10:10:15.409 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3582. 2017-08-01 10:10:15.410 |-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
  3583. 2017-08-01 10:10:15.410 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3584. 2017-08-01 10:10:15.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3585. 2017-08-01 10:10:15.449 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3586. 2017-08-01 10:10:15.449 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3587. 2017-08-01 10:10:15.450 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3588. 2017-08-01 10:10:15.451 |-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
  3589. 2017-08-01 10:10:15.451 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3590. 2017-08-01 10:10:15.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3591. 2017-08-01 10:10:15.549 |-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= ?
  3592. 2017-08-01 10:10:15.550 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3593. 2017-08-01 10:10:15.580 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3594. 2017-08-01 10:10:15.581 |-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
  3595. 2017-08-01 10:10:15.581 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3596. 2017-08-01 10:10:15.617 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3597. 2017-08-01 10:10:15.618 |-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=?)
  3598. 2017-08-01 10:10:15.618 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3599. 2017-08-01 10:10:15.651 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3600. 2017-08-01 10:10:15.778 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3601. 2017-08-01 10:10:15.779 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3602. 2017-08-01 10:10:15.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
  3603. 2017-08-01 10:10:15.785 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3604. 2017-08-01 10:10:15.875 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3605. 2017-08-01 10:10:15.903 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3606. 2017-08-01 10:10:16.020 |-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= ?
  3607. 2017-08-01 10:10:16.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3608. 2017-08-01 10:10:16.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3609. 2017-08-01 10:10:16.051 |-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
  3610. 2017-08-01 10:10:16.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3611. 2017-08-01 10:10:16.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3612. 2017-08-01 10:10:16.088 |-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=?)
  3613. 2017-08-01 10:10:16.088 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3614. 2017-08-01 10:10:16.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3615. 2017-08-01 10:10:16.248 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3616. 2017-08-01 10:10:16.249 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3617. 2017-08-01 10:10:16.253 |-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=?
  3618. 2017-08-01 10:10:16.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3619. 2017-08-01 10:10:16.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3620. 2017-08-01 10:10:16.364 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3621. 2017-08-01 10:10:16.479 |-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= ?
  3622. 2017-08-01 10:10:16.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3623. 2017-08-01 10:10:16.508 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3624. 2017-08-01 10:10:16.509 |-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
  3625. 2017-08-01 10:10:16.509 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3626. 2017-08-01 10:10:16.538 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3627. 2017-08-01 10:10:16.539 |-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=?)
  3628. 2017-08-01 10:10:16.540 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3629. 2017-08-01 10:10:16.565 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3630. 2017-08-01 10:10:16.688 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3631. 2017-08-01 10:10:16.689 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3632. 2017-08-01 10:10:16.690 |-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
  3633. 2017-08-01 10:10:16.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3634. 2017-08-01 10:10:16.728 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3635. 2017-08-01 10:10:16.828 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3636. 2017-08-01 10:10:16.829 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3637. 2017-08-01 10:10:16.959 |-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= ?
  3638. 2017-08-01 10:10:16.960 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3639. 2017-08-01 10:10:16.979 |-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= ?
  3640. 2017-08-01 10:10:16.979 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3641. 2017-08-01 10:10:16.987 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3642. 2017-08-01 10:10:16.988 |-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
  3643. 2017-08-01 10:10:16.988 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3644. 2017-08-01 10:10:17.005 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3645. 2017-08-01 10:10:17.006 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3646. 2017-08-01 10:10:17.007 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3647. 2017-08-01 10:10:17.019 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3648. 2017-08-01 10:10:17.020 |-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=?)
  3649. 2017-08-01 10:10:17.020 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3650. 2017-08-01 10:10:17.046 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3651. 2017-08-01 10:10:17.051 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3652. 2017-08-01 10:10:17.052 |-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=?)
  3653. 2017-08-01 10:10:17.052 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3654. 2017-08-01 10:10:17.080 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3655. 2017-08-01 10:10:17.248 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3656. 2017-08-01 10:10:17.249 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3657. 2017-08-01 10:10:17.251 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3658. 2017-08-01 10:10:17.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3659. 2017-08-01 10:10:17.288 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3660. 2017-08-01 10:10:17.289 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3661. 2017-08-01 10:10:17.296 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3662. 2017-08-01 10:10:17.296 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3663. 2017-08-01 10:10:17.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3664. 2017-08-01 10:10:17.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3665. 2017-08-01 10:10:17.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3666. 2017-08-01 10:10:17.405 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3667. 2017-08-01 10:10:17.407 |-DEBUG [http-nio-8089-exec-7] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3668. 2017-08-01 10:10:17.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3669. 2017-08-01 10:10:17.427 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3670. 2017-08-01 10:10:17.428 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3671. 2017-08-01 10:10:17.429 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3672. 2017-08-01 10:10:17.517 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3673. 2017-08-01 10:10:17.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3674. 2017-08-01 10:10:44.929 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3675. 2017-08-01 10:10:44.929 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3676. 2017-08-01 10:10:45.180 |-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= ?
  3677. 2017-08-01 10:10:45.180 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3678. 2017-08-01 10:10:45.207 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3679. 2017-08-01 10:10:45.208 |-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
  3680. 2017-08-01 10:10:45.208 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3681. 2017-08-01 10:10:45.209 |-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= ?
  3682. 2017-08-01 10:10:45.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3683. 2017-08-01 10:10:45.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3684. 2017-08-01 10:10:45.237 |-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
  3685. 2017-08-01 10:10:45.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3686. 2017-08-01 10:10:45.239 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3687. 2017-08-01 10:10:45.240 |-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=?)
  3688. 2017-08-01 10:10:45.240 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3689. 2017-08-01 10:10:45.266 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3690. 2017-08-01 10:10:45.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3691. 2017-08-01 10:10:45.285 |-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=?)
  3692. 2017-08-01 10:10:45.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3693. 2017-08-01 10:10:45.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3694. 2017-08-01 10:10:45.438 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3695. 2017-08-01 10:10:45.439 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3696. 2017-08-01 10:10:45.498 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3697. 2017-08-01 10:10:45.499 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3698. 2017-08-01 10:10:45.690 |-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
  3699. 2017-08-01 10:10:45.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3700. 2017-08-01 10:10:45.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3701. 2017-08-01 10:10:45.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
  3702. 2017-08-01 10:10:45.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3703. 2017-08-01 10:10:45.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3704. 2017-08-01 10:10:45.812 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3705. 2017-08-01 10:10:45.813 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3706. 2017-08-01 10:10:46.000 |-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= ?
  3707. 2017-08-01 10:10:46.000 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3708. 2017-08-01 10:10:46.010 |-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= ?
  3709. 2017-08-01 10:10:46.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3710. 2017-08-01 10:10:46.027 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3711. 2017-08-01 10:10:46.028 |-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
  3712. 2017-08-01 10:10:46.028 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3713. 2017-08-01 10:10:46.037 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3714. 2017-08-01 10:10:46.038 |-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
  3715. 2017-08-01 10:10:46.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3716. 2017-08-01 10:10:46.069 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3717. 2017-08-01 10:10:46.070 |-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=?)
  3718. 2017-08-01 10:10:46.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3719. 2017-08-01 10:10:46.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3720. 2017-08-01 10:10:46.074 |-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=?)
  3721. 2017-08-01 10:10:46.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3722. 2017-08-01 10:10:46.100 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3723. 2017-08-01 10:10:46.103 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3724. 2017-08-01 10:10:46.308 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3725. 2017-08-01 10:10:46.309 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3726. 2017-08-01 10:10:46.310 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3727. 2017-08-01 10:10:46.311 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3728. 2017-08-01 10:10:46.338 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3729. 2017-08-01 10:10:46.339 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3730. 2017-08-01 10:10:46.341 |-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
  3731. 2017-08-01 10:10:46.341 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3732. 2017-08-01 10:10:46.345 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3733. 2017-08-01 10:10:46.353 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3734. 2017-08-01 10:10:46.370 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3735. 2017-08-01 10:10:46.459 |-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= ?
  3736. 2017-08-01 10:10:46.460 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3737. 2017-08-01 10:10:46.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3738. 2017-08-01 10:10:46.490 |-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
  3739. 2017-08-01 10:10:46.490 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3740. 2017-08-01 10:10:46.536 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3741. 2017-08-01 10:10:46.536 |-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=?)
  3742. 2017-08-01 10:10:46.537 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3743. 2017-08-01 10:10:46.564 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3744. 2017-08-01 10:10:46.689 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3745. 2017-08-01 10:10:46.690 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3746. 2017-08-01 10:10:46.695 |-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
  3747. 2017-08-01 10:10:46.695 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3748. 2017-08-01 10:10:46.794 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3749. 2017-08-01 10:10:46.823 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3750. 2017-08-01 10:10:46.930 |-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= ?
  3751. 2017-08-01 10:10:46.930 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3752. 2017-08-01 10:10:46.960 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3753. 2017-08-01 10:10:46.961 |-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
  3754. 2017-08-01 10:10:46.962 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3755. 2017-08-01 10:10:47.006 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3756. 2017-08-01 10:10:47.006 |-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=?)
  3757. 2017-08-01 10:10:47.007 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3758. 2017-08-01 10:10:47.035 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3759. 2017-08-01 10:10:47.158 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3760. 2017-08-01 10:10:47.159 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3761. 2017-08-01 10:10:47.163 |-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=?
  3762. 2017-08-01 10:10:47.164 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3763. 2017-08-01 10:10:47.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3764. 2017-08-01 10:10:47.258 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3765. 2017-08-01 10:10:47.369 |-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= ?
  3766. 2017-08-01 10:10:47.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3767. 2017-08-01 10:10:47.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3768. 2017-08-01 10:10:47.398 |-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
  3769. 2017-08-01 10:10:47.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3770. 2017-08-01 10:10:47.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3771. 2017-08-01 10:10:47.443 |-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=?)
  3772. 2017-08-01 10:10:47.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3773. 2017-08-01 10:10:47.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3774. 2017-08-01 10:10:47.588 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3775. 2017-08-01 10:10:47.589 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3776. 2017-08-01 10:10:47.591 |-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
  3777. 2017-08-01 10:10:47.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3778. 2017-08-01 10:10:47.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3779. 2017-08-01 10:10:47.717 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3780. 2017-08-01 10:10:47.717 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3781. 2017-08-01 10:10:47.810 |-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= ?
  3782. 2017-08-01 10:10:47.810 |-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= ?
  3783. 2017-08-01 10:10:47.810 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3784. 2017-08-01 10:10:47.811 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3785. 2017-08-01 10:10:47.843 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3786. 2017-08-01 10:10:47.844 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3787. 2017-08-01 10:10:47.845 |-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
  3788. 2017-08-01 10:10:47.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3789. 2017-08-01 10:10:47.845 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3790. 2017-08-01 10:10:47.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3791. 2017-08-01 10:10:47.875 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3792. 2017-08-01 10:10:47.876 |-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=?)
  3793. 2017-08-01 10:10:47.876 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3794. 2017-08-01 10:10:47.890 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3795. 2017-08-01 10:10:47.891 |-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=?)
  3796. 2017-08-01 10:10:47.891 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3797. 2017-08-01 10:10:47.902 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3798. 2017-08-01 10:10:47.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3799. 2017-08-01 10:10:48.061 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3800. 2017-08-01 10:10:48.062 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3801. 2017-08-01 10:10:48.064 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3802. 2017-08-01 10:10:48.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3803. 2017-08-01 10:10:48.111 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3804. 2017-08-01 10:10:48.112 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3805. 2017-08-01 10:10:48.120 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3806. 2017-08-01 10:10:48.121 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3807. 2017-08-01 10:10:48.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3808. 2017-08-01 10:10:48.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3809. 2017-08-01 10:10:48.154 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3810. 2017-08-01 10:10:48.243 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3811. 2017-08-01 10:10:48.246 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3812. 2017-08-01 10:10:48.247 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3813. 2017-08-01 10:10:48.251 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3814. 2017-08-01 10:10:48.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3815. 2017-08-01 10:10:48.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3816. 2017-08-01 10:10:48.352 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3817. 2017-08-01 10:10:48.374 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3818. 2017-08-01 10:13:12.458 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3819. 2017-08-01 10:13:12.459 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3820. 2017-08-01 10:13:12.598 |-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= ?
  3821. 2017-08-01 10:13:12.599 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3822. 2017-08-01 10:13:12.608 |-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= ?
  3823. 2017-08-01 10:13:12.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3824. 2017-08-01 10:13:12.627 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3825. 2017-08-01 10:13:12.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3826. 2017-08-01 10:13:12.652 |-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
  3827. 2017-08-01 10:13:12.653 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3828. 2017-08-01 10:13:12.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
  3829. 2017-08-01 10:13:12.665 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3830. 2017-08-01 10:13:12.682 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3831. 2017-08-01 10:13:12.683 |-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=?)
  3832. 2017-08-01 10:13:12.683 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3833. 2017-08-01 10:13:12.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3834. 2017-08-01 10:13:12.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3835. 2017-08-01 10:13:12.711 |-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=?)
  3836. 2017-08-01 10:13:12.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3837. 2017-08-01 10:13:12.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3838. 2017-08-01 10:13:12.853 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3839. 2017-08-01 10:13:12.854 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3840. 2017-08-01 10:13:12.923 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3841. 2017-08-01 10:13:12.924 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3842. 2017-08-01 10:13:12.981 |-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
  3843. 2017-08-01 10:13:12.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3844. 2017-08-01 10:13:13.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3845. 2017-08-01 10:13:13.014 |-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
  3846. 2017-08-01 10:13:13.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3847. 2017-08-01 10:13:13.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3848. 2017-08-01 10:13:13.111 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3849. 2017-08-01 10:13:13.111 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3850. 2017-08-01 10:13:13.190 |-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= ?
  3851. 2017-08-01 10:13:13.190 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3852. 2017-08-01 10:13:13.210 |-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= ?
  3853. 2017-08-01 10:13:13.210 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3854. 2017-08-01 10:13:13.219 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3855. 2017-08-01 10:13:13.220 |-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
  3856. 2017-08-01 10:13:13.220 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3857. 2017-08-01 10:13:13.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3858. 2017-08-01 10:13:13.241 |-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
  3859. 2017-08-01 10:13:13.241 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3860. 2017-08-01 10:13:13.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3861. 2017-08-01 10:13:13.265 |-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=?)
  3862. 2017-08-01 10:13:13.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3863. 2017-08-01 10:13:13.277 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3864. 2017-08-01 10:13:13.278 |-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=?)
  3865. 2017-08-01 10:13:13.278 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3866. 2017-08-01 10:13:13.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3867. 2017-08-01 10:13:13.307 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3868. 2017-08-01 10:13:13.453 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3869. 2017-08-01 10:13:13.454 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3870. 2017-08-01 10:13:13.455 |-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
  3871. 2017-08-01 10:13:13.455 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3872. 2017-08-01 10:13:13.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  3873. 2017-08-01 10:13:13.493 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3874. 2017-08-01 10:13:13.511 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3875. 2017-08-01 10:13:13.513 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3876. 2017-08-01 10:13:13.514 |-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
  3877. 2017-08-01 10:13:13.514 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3878. 2017-08-01 10:13:13.541 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3879. 2017-08-01 10:13:13.549 |-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= ?
  3880. 2017-08-01 10:13:13.550 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3881. 2017-08-01 10:13:13.577 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3882. 2017-08-01 10:13:13.578 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3883. 2017-08-01 10:13:13.578 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3884. 2017-08-01 10:13:13.612 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3885. 2017-08-01 10:13:13.613 |-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=?)
  3886. 2017-08-01 10:13:13.613 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3887. 2017-08-01 10:13:13.639 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3888. 2017-08-01 10:13:13.752 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3889. 2017-08-01 10:13:13.753 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3890. 2017-08-01 10:13:13.757 |-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
  3891. 2017-08-01 10:13:13.758 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3892. 2017-08-01 10:13:13.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  3893. 2017-08-01 10:13:13.892 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3894. 2017-08-01 10:13:13.949 |-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= ?
  3895. 2017-08-01 10:13:13.950 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3896. 2017-08-01 10:13:13.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3897. 2017-08-01 10:13:13.984 |-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
  3898. 2017-08-01 10:13:13.984 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3899. 2017-08-01 10:13:14.013 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3900. 2017-08-01 10:13:14.014 |-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=?)
  3901. 2017-08-01 10:13:14.014 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3902. 2017-08-01 10:13:14.040 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3903. 2017-08-01 10:13:14.152 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3904. 2017-08-01 10:13:14.153 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3905. 2017-08-01 10:13:14.157 |-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=?
  3906. 2017-08-01 10:13:14.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3907. 2017-08-01 10:13:14.185 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  3908. 2017-08-01 10:13:14.249 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3909. 2017-08-01 10:13:14.300 |-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= ?
  3910. 2017-08-01 10:13:14.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3911. 2017-08-01 10:13:14.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3912. 2017-08-01 10:13:14.329 |-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
  3913. 2017-08-01 10:13:14.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3914. 2017-08-01 10:13:14.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3915. 2017-08-01 10:13:14.363 |-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=?)
  3916. 2017-08-01 10:13:14.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3917. 2017-08-01 10:13:14.389 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3918. 2017-08-01 10:13:14.503 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3919. 2017-08-01 10:13:14.504 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3920. 2017-08-01 10:13:14.505 |-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
  3921. 2017-08-01 10:13:14.506 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  3922. 2017-08-01 10:13:14.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  3923. 2017-08-01 10:13:14.626 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3924. 2017-08-01 10:13:14.626 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3925. 2017-08-01 10:13:14.710 |-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= ?
  3926. 2017-08-01 10:13:14.710 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3927. 2017-08-01 10:13:14.720 |-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= ?
  3928. 2017-08-01 10:13:14.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3929. 2017-08-01 10:13:14.739 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3930. 2017-08-01 10:13:14.739 |-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
  3931. 2017-08-01 10:13:14.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3932. 2017-08-01 10:13:14.747 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3933. 2017-08-01 10:13:14.748 |-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
  3934. 2017-08-01 10:13:14.748 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3935. 2017-08-01 10:13:14.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3936. 2017-08-01 10:13:14.770 |-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=?)
  3937. 2017-08-01 10:13:14.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3938. 2017-08-01 10:13:14.793 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3939. 2017-08-01 10:13:14.794 |-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=?)
  3940. 2017-08-01 10:13:14.795 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3941. 2017-08-01 10:13:14.796 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3942. 2017-08-01 10:13:14.823 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3943. 2017-08-01 10:13:14.952 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3944. 2017-08-01 10:13:14.953 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3945. 2017-08-01 10:13:14.961 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  3946. 2017-08-01 10:13:14.961 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3947. 2017-08-01 10:13:15.010 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3948. 2017-08-01 10:13:15.012 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3949. 2017-08-01 10:13:15.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  3950. 2017-08-01 10:13:15.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3951. 2017-08-01 10:13:15.077 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  3952. 2017-08-01 10:13:15.079 |-DEBUG [http-nio-8089-exec-5] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  3953. 2017-08-01 10:13:15.080 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  3954. 2017-08-01 10:13:15.097 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  3955. 2017-08-01 10:13:15.099 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  3956. 2017-08-01 10:13:15.100 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3957. 2017-08-01 10:13:15.187 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  3958. 2017-08-01 10:13:15.188 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  3959. 2017-08-01 10:13:15.189 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  3960. 2017-08-01 10:13:15.201 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  3961. 2017-08-01 10:13:15.273 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  3962. 2017-08-01 10:13:43.412 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3963. 2017-08-01 10:13:43.413 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3964. 2017-08-01 10:13:43.469 |-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= ?
  3965. 2017-08-01 10:13:43.469 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3966. 2017-08-01 10:13:43.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3967. 2017-08-01 10:13:43.497 |-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
  3968. 2017-08-01 10:13:43.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3969. 2017-08-01 10:13:43.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= ?
  3970. 2017-08-01 10:13:43.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3971. 2017-08-01 10:13:43.528 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3972. 2017-08-01 10:13:43.529 |-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=?)
  3973. 2017-08-01 10:13:43.529 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3974. 2017-08-01 10:13:43.536 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3975. 2017-08-01 10:13:43.538 |-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
  3976. 2017-08-01 10:13:43.538 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3977. 2017-08-01 10:13:43.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3978. 2017-08-01 10:13:43.605 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3979. 2017-08-01 10:13:43.606 |-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=?)
  3980. 2017-08-01 10:13:43.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3981. 2017-08-01 10:13:43.635 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  3982. 2017-08-01 10:13:43.672 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3983. 2017-08-01 10:13:43.674 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3984. 2017-08-01 10:13:43.800 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  3985. 2017-08-01 10:13:43.802 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3986. 2017-08-01 10:13:43.860 |-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
  3987. 2017-08-01 10:13:43.861 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  3988. 2017-08-01 10:13:43.897 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  3989. 2017-08-01 10:13:43.898 |-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
  3990. 2017-08-01 10:13:43.899 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3991. 2017-08-01 10:13:43.951 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  3992. 2017-08-01 10:13:43.993 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3993. 2017-08-01 10:13:43.993 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  3994. 2017-08-01 10:13:44.050 |-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= ?
  3995. 2017-08-01 10:13:44.050 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3996. 2017-08-01 10:13:44.079 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3997. 2017-08-01 10:13:44.080 |-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
  3998. 2017-08-01 10:13:44.080 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3999. 2017-08-01 10:13:44.089 |-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= ?
  4000. 2017-08-01 10:13:44.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4001. 2017-08-01 10:13:44.115 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4002. 2017-08-01 10:13:44.116 |-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
  4003. 2017-08-01 10:13:44.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4004. 2017-08-01 10:13:44.134 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4005. 2017-08-01 10:13:44.135 |-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=?)
  4006. 2017-08-01 10:13:44.136 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4007. 2017-08-01 10:13:44.145 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4008. 2017-08-01 10:13:44.146 |-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=?)
  4009. 2017-08-01 10:13:44.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4010. 2017-08-01 10:13:44.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4011. 2017-08-01 10:13:44.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4012. 2017-08-01 10:13:44.282 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4013. 2017-08-01 10:13:44.283 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4014. 2017-08-01 10:13:44.285 |-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
  4015. 2017-08-01 10:13:44.285 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4016. 2017-08-01 10:13:44.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4017. 2017-08-01 10:13:44.411 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4018. 2017-08-01 10:13:44.412 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4019. 2017-08-01 10:13:44.414 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4020. 2017-08-01 10:13:44.414 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4021. 2017-08-01 10:13:44.442 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4022. 2017-08-01 10:13:44.452 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4023. 2017-08-01 10:13:44.510 |-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= ?
  4024. 2017-08-01 10:13:44.511 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4025. 2017-08-01 10:13:44.543 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4026. 2017-08-01 10:13:44.544 |-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
  4027. 2017-08-01 10:13:44.544 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4028. 2017-08-01 10:13:44.576 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4029. 2017-08-01 10:13:44.576 |-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=?)
  4030. 2017-08-01 10:13:44.577 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4031. 2017-08-01 10:13:44.604 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4032. 2017-08-01 10:13:44.721 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4033. 2017-08-01 10:13:44.722 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4034. 2017-08-01 10:13:44.727 |-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
  4035. 2017-08-01 10:13:44.727 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4036. 2017-08-01 10:13:44.814 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4037. 2017-08-01 10:13:44.842 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4038. 2017-08-01 10:13:44.900 |-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= ?
  4039. 2017-08-01 10:13:44.900 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4040. 2017-08-01 10:13:44.927 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4041. 2017-08-01 10:13:44.928 |-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
  4042. 2017-08-01 10:13:44.928 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4043. 2017-08-01 10:13:44.959 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4044. 2017-08-01 10:13:44.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4045. 2017-08-01 10:13:44.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4046. 2017-08-01 10:13:44.985 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4047. 2017-08-01 10:13:45.101 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4048. 2017-08-01 10:13:45.103 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4049. 2017-08-01 10:13:45.106 |-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=?
  4050. 2017-08-01 10:13:45.107 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4051. 2017-08-01 10:13:45.133 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4052. 2017-08-01 10:13:45.199 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4053. 2017-08-01 10:13:45.250 |-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= ?
  4054. 2017-08-01 10:13:45.250 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4055. 2017-08-01 10:13:45.276 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4056. 2017-08-01 10:13:45.277 |-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
  4057. 2017-08-01 10:13:45.277 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4058. 2017-08-01 10:13:45.308 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4059. 2017-08-01 10:13:45.309 |-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=?)
  4060. 2017-08-01 10:13:45.309 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4061. 2017-08-01 10:13:45.335 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4062. 2017-08-01 10:13:45.461 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4063. 2017-08-01 10:13:45.462 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4064. 2017-08-01 10:13:45.464 |-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
  4065. 2017-08-01 10:13:45.464 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4066. 2017-08-01 10:13:45.492 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4067. 2017-08-01 10:13:47.162 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4068. 2017-08-01 10:13:47.162 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4069. 2017-08-01 10:13:47.220 |-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= ?
  4070. 2017-08-01 10:13:47.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4071. 2017-08-01 10:13:47.247 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4072. 2017-08-01 10:13:47.248 |-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
  4073. 2017-08-01 10:13:47.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4074. 2017-08-01 10:13:47.260 |-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= ?
  4075. 2017-08-01 10:13:47.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4076. 2017-08-01 10:13:47.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4077. 2017-08-01 10:13:47.281 |-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=?)
  4078. 2017-08-01 10:13:47.281 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4079. 2017-08-01 10:13:47.287 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4080. 2017-08-01 10:13:47.288 |-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
  4081. 2017-08-01 10:13:47.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4082. 2017-08-01 10:13:47.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4083. 2017-08-01 10:13:47.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4084. 2017-08-01 10:13:47.333 |-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=?)
  4085. 2017-08-01 10:13:47.333 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4086. 2017-08-01 10:13:47.361 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4087. 2017-08-01 10:13:47.435 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4088. 2017-08-01 10:13:47.436 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4089. 2017-08-01 10:13:47.443 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4090. 2017-08-01 10:13:47.444 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4091. 2017-08-01 10:13:47.553 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4092. 2017-08-01 10:13:47.555 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4093. 2017-08-01 10:13:47.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4094. 2017-08-01 10:13:47.557 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4095. 2017-08-01 10:13:47.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4096. 2017-08-01 10:13:47.559 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4097. 2017-08-01 10:13:47.559 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4098. 2017-08-01 10:13:47.654 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4099. 2017-08-01 10:13:47.655 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4100. 2017-08-01 10:13:47.656 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4101. 2017-08-01 10:13:47.686 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4102. 2017-08-01 10:13:47.742 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4103. 2017-08-01 10:13:47.743 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4104. 2017-08-01 10:13:47.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4105. 2017-08-01 10:13:47.837 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4106. 2017-08-01 10:14:09.145 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4107. 2017-08-01 10:14:09.145 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4108. 2017-08-01 10:14:09.230 |-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= ?
  4109. 2017-08-01 10:14:09.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4110. 2017-08-01 10:14:09.239 |-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= ?
  4111. 2017-08-01 10:14:09.240 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4112. 2017-08-01 10:14:09.258 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4113. 2017-08-01 10:14:09.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4114. 2017-08-01 10:14:09.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4115. 2017-08-01 10:14:09.267 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4116. 2017-08-01 10:14:09.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4117. 2017-08-01 10:14:09.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4118. 2017-08-01 10:14:09.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4119. 2017-08-01 10:14:09.293 |-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=?)
  4120. 2017-08-01 10:14:09.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4121. 2017-08-01 10:14:09.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4122. 2017-08-01 10:14:09.318 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4123. 2017-08-01 10:14:09.319 |-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=?)
  4124. 2017-08-01 10:14:09.319 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4125. 2017-08-01 10:14:09.347 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4126. 2017-08-01 10:14:09.543 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4127. 2017-08-01 10:14:09.545 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4128. 2017-08-01 10:14:09.611 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4129. 2017-08-01 10:14:09.613 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4130. 2017-08-01 10:14:09.670 |-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
  4131. 2017-08-01 10:14:09.670 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4132. 2017-08-01 10:14:09.700 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4133. 2017-08-01 10:14:09.701 |-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
  4134. 2017-08-01 10:14:09.701 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4135. 2017-08-01 10:14:09.745 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4136. 2017-08-01 10:14:09.785 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4137. 2017-08-01 10:14:09.785 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4138. 2017-08-01 10:14:09.860 |-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= ?
  4139. 2017-08-01 10:14:09.860 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4140. 2017-08-01 10:14:09.880 |-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= ?
  4141. 2017-08-01 10:14:09.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4142. 2017-08-01 10:14:09.889 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4143. 2017-08-01 10:14:09.890 |-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
  4144. 2017-08-01 10:14:09.890 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4145. 2017-08-01 10:14:09.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4146. 2017-08-01 10:14:09.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4147. 2017-08-01 10:14:09.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4148. 2017-08-01 10:14:09.934 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4149. 2017-08-01 10:14:09.935 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4150. 2017-08-01 10:14:09.935 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4151. 2017-08-01 10:14:09.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4152. 2017-08-01 10:14:09.937 |-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=?)
  4153. 2017-08-01 10:14:09.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4154. 2017-08-01 10:14:09.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4155. 2017-08-01 10:14:09.962 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4156. 2017-08-01 10:14:10.233 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4157. 2017-08-01 10:14:10.234 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4158. 2017-08-01 10:14:10.235 |-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
  4159. 2017-08-01 10:14:10.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4160. 2017-08-01 10:14:10.260 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4161. 2017-08-01 10:14:10.262 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4162. 2017-08-01 10:14:10.263 |-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
  4163. 2017-08-01 10:14:10.264 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4164. 2017-08-01 10:14:10.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4165. 2017-08-01 10:14:10.273 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4166. 2017-08-01 10:14:10.291 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4167. 2017-08-01 10:14:10.330 |-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= ?
  4168. 2017-08-01 10:14:10.330 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4169. 2017-08-01 10:14:10.359 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4170. 2017-08-01 10:14:10.360 |-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
  4171. 2017-08-01 10:14:10.360 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4172. 2017-08-01 10:14:10.404 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4173. 2017-08-01 10:14:10.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4174. 2017-08-01 10:14:10.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4175. 2017-08-01 10:14:10.433 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4176. 2017-08-01 10:14:10.571 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4177. 2017-08-01 10:14:10.573 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4178. 2017-08-01 10:14:10.577 |-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
  4179. 2017-08-01 10:14:10.578 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4180. 2017-08-01 10:14:10.671 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4181. 2017-08-01 10:14:10.699 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4182. 2017-08-01 10:14:10.750 |-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= ?
  4183. 2017-08-01 10:14:10.750 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4184. 2017-08-01 10:14:10.778 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4185. 2017-08-01 10:14:10.779 |-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
  4186. 2017-08-01 10:14:10.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4187. 2017-08-01 10:14:10.825 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4188. 2017-08-01 10:14:10.826 |-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=?)
  4189. 2017-08-01 10:14:10.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4190. 2017-08-01 10:14:10.854 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4191. 2017-08-01 10:14:10.991 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4192. 2017-08-01 10:14:10.992 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4193. 2017-08-01 10:14:10.996 |-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=?
  4194. 2017-08-01 10:14:10.996 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4195. 2017-08-01 10:14:11.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4196. 2017-08-01 10:14:11.090 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4197. 2017-08-01 10:14:11.140 |-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= ?
  4198. 2017-08-01 10:14:11.140 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4199. 2017-08-01 10:14:11.168 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4200. 2017-08-01 10:14:11.169 |-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
  4201. 2017-08-01 10:14:11.170 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4202. 2017-08-01 10:14:11.213 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4203. 2017-08-01 10:14:11.214 |-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=?)
  4204. 2017-08-01 10:14:11.214 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4205. 2017-08-01 10:14:11.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4206. 2017-08-01 10:14:11.381 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4207. 2017-08-01 10:14:11.382 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4208. 2017-08-01 10:14:11.384 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  4209. 2017-08-01 10:14:11.384 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4210. 2017-08-01 10:14:11.413 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4211. 2017-08-01 10:14:11.509 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4212. 2017-08-01 10:14:11.509 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4213. 2017-08-01 10:14:11.579 |-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= ?
  4214. 2017-08-01 10:14:11.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4215. 2017-08-01 10:14:11.599 |-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= ?
  4216. 2017-08-01 10:14:11.600 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4217. 2017-08-01 10:14:11.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4218. 2017-08-01 10:14:11.608 |-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
  4219. 2017-08-01 10:14:11.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4220. 2017-08-01 10:14:11.626 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4221. 2017-08-01 10:14:11.627 |-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
  4222. 2017-08-01 10:14:11.628 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4223. 2017-08-01 10:14:11.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4224. 2017-08-01 10:14:11.655 |-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=?)
  4225. 2017-08-01 10:14:11.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4226. 2017-08-01 10:14:11.658 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4227. 2017-08-01 10:14:11.658 |-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=?)
  4228. 2017-08-01 10:14:11.659 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4229. 2017-08-01 10:14:11.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4230. 2017-08-01 10:14:11.684 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4231. 2017-08-01 10:14:11.933 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4232. 2017-08-01 10:14:11.934 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4233. 2017-08-01 10:14:11.942 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4234. 2017-08-01 10:14:11.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4235. 2017-08-01 10:14:11.981 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4236. 2017-08-01 10:14:11.982 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4237. 2017-08-01 10:14:11.985 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4238. 2017-08-01 10:14:11.985 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4239. 2017-08-01 10:14:12.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4240. 2017-08-01 10:14:12.061 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4241. 2017-08-01 10:14:12.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4242. 2017-08-01 10:14:12.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4243. 2017-08-01 10:14:12.074 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4244. 2017-08-01 10:14:12.075 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4245. 2017-08-01 10:14:12.170 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4246. 2017-08-01 10:14:12.171 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4247. 2017-08-01 10:14:12.172 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4248. 2017-08-01 10:14:12.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4249. 2017-08-01 10:14:12.265 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4250. 2017-08-01 10:14:23.261 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4251. 2017-08-01 10:14:23.262 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4252. 2017-08-01 10:14:23.409 |-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= ?
  4253. 2017-08-01 10:14:23.409 |-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= ?
  4254. 2017-08-01 10:14:23.410 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4255. 2017-08-01 10:14:23.410 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4256. 2017-08-01 10:14:23.437 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4257. 2017-08-01 10:14:23.438 |-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
  4258. 2017-08-01 10:14:23.438 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4259. 2017-08-01 10:14:23.439 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4260. 2017-08-01 10:14:23.439 |-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
  4261. 2017-08-01 10:14:23.440 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4262. 2017-08-01 10:14:23.469 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4263. 2017-08-01 10:14:23.470 |-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=?)
  4264. 2017-08-01 10:14:23.470 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4265. 2017-08-01 10:14:23.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4266. 2017-08-01 10:14:23.485 |-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=?)
  4267. 2017-08-01 10:14:23.486 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4268. 2017-08-01 10:14:23.496 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4269. 2017-08-01 10:14:23.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4270. 2017-08-01 10:14:23.748 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4271. 2017-08-01 10:14:23.749 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4272. 2017-08-01 10:14:23.798 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4273. 2017-08-01 10:14:23.799 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4274. 2017-08-01 10:14:23.920 |-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
  4275. 2017-08-01 10:14:23.921 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4276. 2017-08-01 10:14:23.951 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4277. 2017-08-01 10:14:23.952 |-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
  4278. 2017-08-01 10:14:23.953 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4279. 2017-08-01 10:14:23.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4280. 2017-08-01 10:14:24.040 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4281. 2017-08-01 10:14:24.041 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4282. 2017-08-01 10:14:24.190 |-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= ?
  4283. 2017-08-01 10:14:24.190 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4284. 2017-08-01 10:14:24.200 |-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= ?
  4285. 2017-08-01 10:14:24.200 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4286. 2017-08-01 10:14:24.219 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4287. 2017-08-01 10:14:24.220 |-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
  4288. 2017-08-01 10:14:24.220 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4289. 2017-08-01 10:14:24.226 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4290. 2017-08-01 10:14:24.227 |-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
  4291. 2017-08-01 10:14:24.228 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4292. 2017-08-01 10:14:24.258 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4293. 2017-08-01 10:14:24.259 |-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=?)
  4294. 2017-08-01 10:14:24.259 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4295. 2017-08-01 10:14:24.263 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4296. 2017-08-01 10:14:24.264 |-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=?)
  4297. 2017-08-01 10:14:24.264 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4298. 2017-08-01 10:14:24.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4299. 2017-08-01 10:14:24.292 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4300. 2017-08-01 10:14:24.488 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4301. 2017-08-01 10:14:24.489 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4302. 2017-08-01 10:14:24.491 |-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
  4303. 2017-08-01 10:14:24.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4304. 2017-08-01 10:14:24.516 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4305. 2017-08-01 10:14:24.528 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4306. 2017-08-01 10:14:24.530 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4307. 2017-08-01 10:14:24.531 |-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
  4308. 2017-08-01 10:14:24.532 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4309. 2017-08-01 10:14:24.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4310. 2017-08-01 10:14:24.567 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4311. 2017-08-01 10:14:24.670 |-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= ?
  4312. 2017-08-01 10:14:24.670 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4313. 2017-08-01 10:14:24.696 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4314. 2017-08-01 10:14:24.697 |-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
  4315. 2017-08-01 10:14:24.697 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4316. 2017-08-01 10:14:24.743 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4317. 2017-08-01 10:14:24.744 |-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=?)
  4318. 2017-08-01 10:14:24.745 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4319. 2017-08-01 10:14:24.783 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4320. 2017-08-01 10:14:24.898 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4321. 2017-08-01 10:14:24.900 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4322. 2017-08-01 10:14:24.904 |-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
  4323. 2017-08-01 10:14:24.905 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4324. 2017-08-01 10:14:24.997 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4325. 2017-08-01 10:14:25.025 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4326. 2017-08-01 10:14:25.140 |-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= ?
  4327. 2017-08-01 10:14:25.140 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4328. 2017-08-01 10:14:25.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4329. 2017-08-01 10:14:25.168 |-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
  4330. 2017-08-01 10:14:25.169 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4331. 2017-08-01 10:14:25.213 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4332. 2017-08-01 10:14:25.214 |-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=?)
  4333. 2017-08-01 10:14:25.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4334. 2017-08-01 10:14:25.246 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4335. 2017-08-01 10:14:25.368 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4336. 2017-08-01 10:14:25.370 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4337. 2017-08-01 10:14:25.373 |-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=?
  4338. 2017-08-01 10:14:25.374 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4339. 2017-08-01 10:14:25.401 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4340. 2017-08-01 10:14:25.465 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4341. 2017-08-01 10:14:25.570 |-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= ?
  4342. 2017-08-01 10:14:25.570 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4343. 2017-08-01 10:14:25.597 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4344. 2017-08-01 10:14:25.598 |-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
  4345. 2017-08-01 10:14:25.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4346. 2017-08-01 10:14:25.643 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4347. 2017-08-01 10:14:25.645 |-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=?)
  4348. 2017-08-01 10:14:25.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4349. 2017-08-01 10:14:25.672 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4350. 2017-08-01 10:14:25.788 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4351. 2017-08-01 10:14:25.789 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4352. 2017-08-01 10:14:25.791 |-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
  4353. 2017-08-01 10:14:25.791 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4354. 2017-08-01 10:14:25.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4355. 2017-08-01 10:14:25.918 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4356. 2017-08-01 10:14:25.919 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4357. 2017-08-01 10:14:26.060 |-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= ?
  4358. 2017-08-01 10:14:26.060 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4359. 2017-08-01 10:14:26.070 |-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= ?
  4360. 2017-08-01 10:14:26.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4361. 2017-08-01 10:14:26.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4362. 2017-08-01 10:14:26.088 |-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
  4363. 2017-08-01 10:14:26.088 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4364. 2017-08-01 10:14:26.098 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4365. 2017-08-01 10:14:26.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
  4366. 2017-08-01 10:14:26.099 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4367. 2017-08-01 10:14:26.129 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4368. 2017-08-01 10:14:26.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=?)
  4369. 2017-08-01 10:14:26.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4370. 2017-08-01 10:14:26.132 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4371. 2017-08-01 10:14:26.133 |-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=?)
  4372. 2017-08-01 10:14:26.133 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4373. 2017-08-01 10:14:26.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4374. 2017-08-01 10:14:26.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4375. 2017-08-01 10:14:26.468 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4376. 2017-08-01 10:14:26.470 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4377. 2017-08-01 10:14:26.478 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4378. 2017-08-01 10:14:26.478 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4379. 2017-08-01 10:14:26.508 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4380. 2017-08-01 10:14:26.509 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4381. 2017-08-01 10:14:26.512 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4382. 2017-08-01 10:14:26.512 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4383. 2017-08-01 10:14:26.598 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4384. 2017-08-01 10:14:26.599 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4385. 2017-08-01 10:14:26.600 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4386. 2017-08-01 10:14:26.600 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4387. 2017-08-01 10:14:26.600 |-DEBUG [http-nio-8089-exec-9] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4388. 2017-08-01 10:14:26.601 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4389. 2017-08-01 10:14:26.697 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4390. 2017-08-01 10:14:26.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4391. 2017-08-01 10:14:26.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4392. 2017-08-01 10:14:26.727 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4393. 2017-08-01 10:14:26.792 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4394. 2017-08-01 10:15:02.646 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4395. 2017-08-01 10:15:02.646 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4396. 2017-08-01 10:15:02.740 |-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= ?
  4397. 2017-08-01 10:15:02.740 |-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= ?
  4398. 2017-08-01 10:15:02.740 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4399. 2017-08-01 10:15:02.740 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4400. 2017-08-01 10:15:02.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4401. 2017-08-01 10:15:02.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4402. 2017-08-01 10:15:02.768 |-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
  4403. 2017-08-01 10:15:02.769 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4404. 2017-08-01 10:15:02.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4405. 2017-08-01 10:15:02.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4406. 2017-08-01 10:15:02.798 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4407. 2017-08-01 10:15:02.799 |-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=?)
  4408. 2017-08-01 10:15:02.800 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4409. 2017-08-01 10:15:02.814 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4410. 2017-08-01 10:15:02.816 |-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=?)
  4411. 2017-08-01 10:15:02.816 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4412. 2017-08-01 10:15:02.828 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4413. 2017-08-01 10:15:02.844 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4414. 2017-08-01 10:15:03.013 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4415. 2017-08-01 10:15:03.015 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4416. 2017-08-01 10:15:03.052 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4417. 2017-08-01 10:15:03.053 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4418. 2017-08-01 10:15:03.110 |-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
  4419. 2017-08-01 10:15:03.111 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4420. 2017-08-01 10:15:03.150 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4421. 2017-08-01 10:15:03.151 |-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
  4422. 2017-08-01 10:15:03.152 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4423. 2017-08-01 10:15:03.195 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4424. 2017-08-01 10:15:03.236 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4425. 2017-08-01 10:15:03.236 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4426. 2017-08-01 10:15:03.309 |-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= ?
  4427. 2017-08-01 10:15:03.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4428. 2017-08-01 10:15:03.329 |-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= ?
  4429. 2017-08-01 10:15:03.329 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4430. 2017-08-01 10:15:03.336 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4431. 2017-08-01 10:15:03.337 |-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
  4432. 2017-08-01 10:15:03.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4433. 2017-08-01 10:15:03.357 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4434. 2017-08-01 10:15:03.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4435. 2017-08-01 10:15:03.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4436. 2017-08-01 10:15:03.381 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4437. 2017-08-01 10:15:03.382 |-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=?)
  4438. 2017-08-01 10:15:03.382 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4439. 2017-08-01 10:15:03.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4440. 2017-08-01 10:15:03.389 |-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=?)
  4441. 2017-08-01 10:15:03.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4442. 2017-08-01 10:15:03.409 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4443. 2017-08-01 10:15:03.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4444. 2017-08-01 10:15:03.603 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4445. 2017-08-01 10:15:03.604 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4446. 2017-08-01 10:15:03.606 |-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
  4447. 2017-08-01 10:15:03.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4448. 2017-08-01 10:15:03.624 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4449. 2017-08-01 10:15:03.625 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4450. 2017-08-01 10:15:03.626 |-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
  4451. 2017-08-01 10:15:03.626 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4452. 2017-08-01 10:15:03.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4453. 2017-08-01 10:15:03.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4454. 2017-08-01 10:15:03.669 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4455. 2017-08-01 10:15:03.719 |-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= ?
  4456. 2017-08-01 10:15:03.719 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4457. 2017-08-01 10:15:03.748 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4458. 2017-08-01 10:15:03.749 |-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
  4459. 2017-08-01 10:15:03.749 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4460. 2017-08-01 10:15:03.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4461. 2017-08-01 10:15:03.779 |-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=?)
  4462. 2017-08-01 10:15:03.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4463. 2017-08-01 10:15:03.812 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4464. 2017-08-01 10:15:03.921 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4465. 2017-08-01 10:15:03.922 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4466. 2017-08-01 10:15:03.928 |-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
  4467. 2017-08-01 10:15:03.929 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4468. 2017-08-01 10:15:04.018 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4469. 2017-08-01 10:15:04.049 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4470. 2017-08-01 10:15:04.100 |-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= ?
  4471. 2017-08-01 10:15:04.100 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4472. 2017-08-01 10:15:04.140 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4473. 2017-08-01 10:15:04.141 |-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
  4474. 2017-08-01 10:15:04.141 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4475. 2017-08-01 10:15:04.172 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4476. 2017-08-01 10:15:04.173 |-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=?)
  4477. 2017-08-01 10:15:04.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4478. 2017-08-01 10:15:04.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4479. 2017-08-01 10:15:04.310 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4480. 2017-08-01 10:15:04.312 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4481. 2017-08-01 10:15:04.315 |-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=?
  4482. 2017-08-01 10:15:04.316 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4483. 2017-08-01 10:15:04.341 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4484. 2017-08-01 10:15:04.406 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4485. 2017-08-01 10:15:04.460 |-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= ?
  4486. 2017-08-01 10:15:04.460 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4487. 2017-08-01 10:15:04.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4488. 2017-08-01 10:15:04.490 |-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
  4489. 2017-08-01 10:15:04.490 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4490. 2017-08-01 10:15:04.521 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4491. 2017-08-01 10:15:04.522 |-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=?)
  4492. 2017-08-01 10:15:04.522 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4493. 2017-08-01 10:15:04.550 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4494. 2017-08-01 10:15:04.661 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4495. 2017-08-01 10:15:04.662 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4496. 2017-08-01 10:15:04.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  4497. 2017-08-01 10:15:04.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4498. 2017-08-01 10:15:04.693 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4499. 2017-08-01 10:15:04.799 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4500. 2017-08-01 10:15:04.800 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4501. 2017-08-01 10:15:04.869 |-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= ?
  4502. 2017-08-01 10:15:04.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4503. 2017-08-01 10:15:04.890 |-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= ?
  4504. 2017-08-01 10:15:04.890 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4505. 2017-08-01 10:15:04.897 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4506. 2017-08-01 10:15:04.898 |-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
  4507. 2017-08-01 10:15:04.898 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4508. 2017-08-01 10:15:04.916 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4509. 2017-08-01 10:15:04.917 |-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
  4510. 2017-08-01 10:15:04.918 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4511. 2017-08-01 10:15:04.927 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4512. 2017-08-01 10:15:04.928 |-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=?)
  4513. 2017-08-01 10:15:04.928 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4514. 2017-08-01 10:15:04.954 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4515. 2017-08-01 10:15:04.962 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4516. 2017-08-01 10:15:04.963 |-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=?)
  4517. 2017-08-01 10:15:04.963 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4518. 2017-08-01 10:15:05.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4519. 2017-08-01 10:15:05.072 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4520. 2017-08-01 10:15:05.073 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4521. 2017-08-01 10:15:05.081 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4522. 2017-08-01 10:15:05.081 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4523. 2017-08-01 10:15:05.195 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4524. 2017-08-01 10:15:05.197 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4525. 2017-08-01 10:15:05.198 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4526. 2017-08-01 10:15:05.251 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4527. 2017-08-01 10:15:05.253 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4528. 2017-08-01 10:15:05.256 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4529. 2017-08-01 10:15:05.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4530. 2017-08-01 10:15:05.315 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4531. 2017-08-01 10:15:05.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4532. 2017-08-01 10:15:05.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4533. 2017-08-01 10:15:05.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4534. 2017-08-01 10:15:05.447 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4535. 2017-08-01 10:15:05.448 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4536. 2017-08-01 10:15:05.449 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4537. 2017-08-01 10:15:05.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4538. 2017-08-01 10:15:30.379 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4539. 2017-08-01 10:15:30.379 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4540. 2017-08-01 10:15:30.439 |-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= ?
  4541. 2017-08-01 10:15:30.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4542. 2017-08-01 10:15:30.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4543. 2017-08-01 10:15:30.468 |-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
  4544. 2017-08-01 10:15:30.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4545. 2017-08-01 10:15:30.469 |-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= ?
  4546. 2017-08-01 10:15:30.469 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4547. 2017-08-01 10:15:30.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4548. 2017-08-01 10:15:30.496 |-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
  4549. 2017-08-01 10:15:30.496 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4550. 2017-08-01 10:15:30.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4551. 2017-08-01 10:15:30.498 |-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=?)
  4552. 2017-08-01 10:15:30.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4553. 2017-08-01 10:15:30.524 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4554. 2017-08-01 10:15:30.543 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4555. 2017-08-01 10:15:30.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=?)
  4556. 2017-08-01 10:15:30.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4557. 2017-08-01 10:15:30.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4558. 2017-08-01 10:15:30.692 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4559. 2017-08-01 10:15:30.694 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4560. 2017-08-01 10:15:30.747 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4561. 2017-08-01 10:15:30.748 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4562. 2017-08-01 10:15:30.800 |-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
  4563. 2017-08-01 10:15:30.800 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4564. 2017-08-01 10:15:30.839 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4565. 2017-08-01 10:15:30.840 |-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
  4566. 2017-08-01 10:15:30.840 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4567. 2017-08-01 10:15:30.884 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4568. 2017-08-01 10:15:30.925 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4569. 2017-08-01 10:15:30.926 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4570. 2017-08-01 10:15:31.000 |-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= ?
  4571. 2017-08-01 10:15:31.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4572. 2017-08-01 10:15:31.020 |-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= ?
  4573. 2017-08-01 10:15:31.020 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4574. 2017-08-01 10:15:31.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4575. 2017-08-01 10:15:31.028 |-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
  4576. 2017-08-01 10:15:31.029 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4577. 2017-08-01 10:15:31.048 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4578. 2017-08-01 10:15:31.049 |-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
  4579. 2017-08-01 10:15:31.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4580. 2017-08-01 10:15:31.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4581. 2017-08-01 10:15:31.076 |-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=?)
  4582. 2017-08-01 10:15:31.076 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4583. 2017-08-01 10:15:31.080 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4584. 2017-08-01 10:15:31.081 |-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=?)
  4585. 2017-08-01 10:15:31.081 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4586. 2017-08-01 10:15:31.106 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4587. 2017-08-01 10:15:31.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4588. 2017-08-01 10:15:31.303 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4589. 2017-08-01 10:15:31.304 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4590. 2017-08-01 10:15:31.305 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4591. 2017-08-01 10:15:31.306 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4592. 2017-08-01 10:15:31.320 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4593. 2017-08-01 10:15:31.322 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4594. 2017-08-01 10:15:31.323 |-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
  4595. 2017-08-01 10:15:31.323 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4596. 2017-08-01 10:15:31.334 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4597. 2017-08-01 10:15:31.351 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4598. 2017-08-01 10:15:31.357 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4599. 2017-08-01 10:15:31.410 |-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= ?
  4600. 2017-08-01 10:15:31.410 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4601. 2017-08-01 10:15:31.437 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4602. 2017-08-01 10:15:31.438 |-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
  4603. 2017-08-01 10:15:31.438 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4604. 2017-08-01 10:15:31.468 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4605. 2017-08-01 10:15:31.469 |-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=?)
  4606. 2017-08-01 10:15:31.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4607. 2017-08-01 10:15:31.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4608. 2017-08-01 10:15:31.611 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4609. 2017-08-01 10:15:31.612 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4610. 2017-08-01 10:15:31.617 |-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
  4611. 2017-08-01 10:15:31.618 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4612. 2017-08-01 10:15:31.701 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4613. 2017-08-01 10:15:31.730 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4614. 2017-08-01 10:15:31.779 |-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= ?
  4615. 2017-08-01 10:15:31.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4616. 2017-08-01 10:15:31.805 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4617. 2017-08-01 10:15:31.806 |-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
  4618. 2017-08-01 10:15:31.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4619. 2017-08-01 10:15:31.836 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4620. 2017-08-01 10:15:31.837 |-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=?)
  4621. 2017-08-01 10:15:31.838 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4622. 2017-08-01 10:15:31.863 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4623. 2017-08-01 10:15:31.980 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4624. 2017-08-01 10:15:31.981 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4625. 2017-08-01 10:15:31.984 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4626. 2017-08-01 10:15:31.984 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4627. 2017-08-01 10:15:32.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4628. 2017-08-01 10:15:32.076 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4629. 2017-08-01 10:15:32.130 |-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= ?
  4630. 2017-08-01 10:15:32.130 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4631. 2017-08-01 10:15:32.156 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4632. 2017-08-01 10:15:32.157 |-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
  4633. 2017-08-01 10:15:32.158 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4634. 2017-08-01 10:15:32.187 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4635. 2017-08-01 10:15:32.188 |-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=?)
  4636. 2017-08-01 10:15:32.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4637. 2017-08-01 10:15:32.214 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4638. 2017-08-01 10:15:32.322 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4639. 2017-08-01 10:15:32.323 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4640. 2017-08-01 10:15:32.324 |-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
  4641. 2017-08-01 10:15:32.325 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4642. 2017-08-01 10:15:32.353 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4643. 2017-08-01 10:15:32.455 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4644. 2017-08-01 10:15:32.456 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4645. 2017-08-01 10:15:32.529 |-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= ?
  4646. 2017-08-01 10:15:32.529 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4647. 2017-08-01 10:15:32.550 |-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= ?
  4648. 2017-08-01 10:15:32.550 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4649. 2017-08-01 10:15:32.556 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4650. 2017-08-01 10:15:32.557 |-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
  4651. 2017-08-01 10:15:32.557 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4652. 2017-08-01 10:15:32.577 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4653. 2017-08-01 10:15:32.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
  4654. 2017-08-01 10:15:32.579 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4655. 2017-08-01 10:15:32.587 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4656. 2017-08-01 10:15:32.588 |-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=?)
  4657. 2017-08-01 10:15:32.588 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4658. 2017-08-01 10:15:32.614 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4659. 2017-08-01 10:15:32.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4660. 2017-08-01 10:15:32.623 |-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=?)
  4661. 2017-08-01 10:15:32.624 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4662. 2017-08-01 10:15:32.651 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4663. 2017-08-01 10:15:32.775 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4664. 2017-08-01 10:15:32.776 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4665. 2017-08-01 10:15:32.782 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4666. 2017-08-01 10:15:32.783 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4667. 2017-08-01 10:15:32.830 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4668. 2017-08-01 10:15:32.832 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4669. 2017-08-01 10:15:32.834 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4670. 2017-08-01 10:15:32.835 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4671. 2017-08-01 10:15:32.899 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4672. 2017-08-01 10:15:32.902 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4673. 2017-08-01 10:15:32.902 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4674. 2017-08-01 10:15:32.916 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4675. 2017-08-01 10:15:32.917 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4676. 2017-08-01 10:15:32.918 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4677. 2017-08-01 10:15:33.009 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4678. 2017-08-01 10:15:33.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4679. 2017-08-01 10:15:33.011 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4680. 2017-08-01 10:15:33.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4681. 2017-08-01 10:15:33.095 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4682. 2017-08-01 10:15:55.723 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4683. 2017-08-01 10:15:55.723 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4684. 2017-08-01 10:15:55.809 |-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= ?
  4685. 2017-08-01 10:15:55.810 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4686. 2017-08-01 10:15:55.819 |-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= ?
  4687. 2017-08-01 10:15:55.820 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4688. 2017-08-01 10:15:55.837 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4689. 2017-08-01 10:15:55.838 |-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
  4690. 2017-08-01 10:15:55.838 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4691. 2017-08-01 10:15:55.847 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4692. 2017-08-01 10:15:55.848 |-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
  4693. 2017-08-01 10:15:55.848 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4694. 2017-08-01 10:15:55.870 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4695. 2017-08-01 10:15:55.871 |-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=?)
  4696. 2017-08-01 10:15:55.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4697. 2017-08-01 10:15:55.892 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4698. 2017-08-01 10:15:55.893 |-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=?)
  4699. 2017-08-01 10:15:55.894 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4700. 2017-08-01 10:15:55.898 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4701. 2017-08-01 10:15:55.921 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4702. 2017-08-01 10:15:56.064 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4703. 2017-08-01 10:15:56.065 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4704. 2017-08-01 10:15:56.123 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4705. 2017-08-01 10:15:56.124 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4706. 2017-08-01 10:15:56.150 |-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
  4707. 2017-08-01 10:15:56.151 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4708. 2017-08-01 10:15:56.182 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4709. 2017-08-01 10:15:56.183 |-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
  4710. 2017-08-01 10:15:56.184 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4711. 2017-08-01 10:15:56.227 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4712. 2017-08-01 10:15:56.268 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4713. 2017-08-01 10:15:56.268 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4714. 2017-08-01 10:15:56.340 |-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= ?
  4715. 2017-08-01 10:15:56.340 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4716. 2017-08-01 10:15:56.360 |-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= ?
  4717. 2017-08-01 10:15:56.361 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4718. 2017-08-01 10:15:56.366 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4719. 2017-08-01 10:15:56.367 |-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
  4720. 2017-08-01 10:15:56.367 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4721. 2017-08-01 10:15:56.389 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4722. 2017-08-01 10:15:56.390 |-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
  4723. 2017-08-01 10:15:56.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4724. 2017-08-01 10:15:56.418 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4725. 2017-08-01 10:15:56.419 |-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=?)
  4726. 2017-08-01 10:15:56.420 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4727. 2017-08-01 10:15:56.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4728. 2017-08-01 10:15:56.432 |-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=?)
  4729. 2017-08-01 10:15:56.433 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4730. 2017-08-01 10:15:56.446 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4731. 2017-08-01 10:15:56.474 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4732. 2017-08-01 10:15:56.643 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4733. 2017-08-01 10:15:56.644 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4734. 2017-08-01 10:15:56.646 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4735. 2017-08-01 10:15:56.646 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4736. 2017-08-01 10:15:56.661 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4737. 2017-08-01 10:15:56.662 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4738. 2017-08-01 10:15:56.664 |-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
  4739. 2017-08-01 10:15:56.665 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4740. 2017-08-01 10:15:56.676 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4741. 2017-08-01 10:15:56.685 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4742. 2017-08-01 10:15:56.691 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4743. 2017-08-01 10:15:56.740 |-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= ?
  4744. 2017-08-01 10:15:56.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4745. 2017-08-01 10:15:56.767 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4746. 2017-08-01 10:15:56.768 |-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
  4747. 2017-08-01 10:15:56.768 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4748. 2017-08-01 10:15:56.833 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4749. 2017-08-01 10:15:56.834 |-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=?)
  4750. 2017-08-01 10:15:56.834 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4751. 2017-08-01 10:15:56.871 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4752. 2017-08-01 10:15:56.984 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4753. 2017-08-01 10:15:56.985 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4754. 2017-08-01 10:15:56.990 |-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
  4755. 2017-08-01 10:15:56.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4756. 2017-08-01 10:15:57.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4757. 2017-08-01 10:15:57.115 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4758. 2017-08-01 10:15:57.169 |-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= ?
  4759. 2017-08-01 10:15:57.170 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4760. 2017-08-01 10:15:57.197 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4761. 2017-08-01 10:15:57.198 |-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
  4762. 2017-08-01 10:15:57.198 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4763. 2017-08-01 10:15:57.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4764. 2017-08-01 10:15:57.243 |-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=?)
  4765. 2017-08-01 10:15:57.243 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4766. 2017-08-01 10:15:57.273 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4767. 2017-08-01 10:15:57.384 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4768. 2017-08-01 10:15:57.385 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4769. 2017-08-01 10:15:57.389 |-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=?
  4770. 2017-08-01 10:15:57.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4771. 2017-08-01 10:15:57.427 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4772. 2017-08-01 10:15:57.490 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4773. 2017-08-01 10:15:57.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= ?
  4774. 2017-08-01 10:15:57.550 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4775. 2017-08-01 10:15:57.577 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4776. 2017-08-01 10:15:57.578 |-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
  4777. 2017-08-01 10:15:57.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4778. 2017-08-01 10:15:57.655 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4779. 2017-08-01 10:15:57.656 |-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=?)
  4780. 2017-08-01 10:15:57.657 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4781. 2017-08-01 10:15:57.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4782. 2017-08-01 10:15:57.812 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4783. 2017-08-01 10:15:57.814 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4784. 2017-08-01 10:15:57.816 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  4785. 2017-08-01 10:15:57.816 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4786. 2017-08-01 10:15:57.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4787. 2017-08-01 10:15:57.944 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4788. 2017-08-01 10:15:57.945 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4789. 2017-08-01 10:15:58.030 |-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= ?
  4790. 2017-08-01 10:15:58.030 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4791. 2017-08-01 10:15:58.040 |-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= ?
  4792. 2017-08-01 10:15:58.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4793. 2017-08-01 10:15:58.058 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4794. 2017-08-01 10:15:58.059 |-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
  4795. 2017-08-01 10:15:58.059 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4796. 2017-08-01 10:15:58.068 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4797. 2017-08-01 10:15:58.069 |-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
  4798. 2017-08-01 10:15:58.069 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4799. 2017-08-01 10:15:58.105 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4800. 2017-08-01 10:15:58.106 |-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=?)
  4801. 2017-08-01 10:15:58.107 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4802. 2017-08-01 10:15:58.108 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4803. 2017-08-01 10:15:58.109 |-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=?)
  4804. 2017-08-01 10:15:58.109 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4805. 2017-08-01 10:15:58.134 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4806. 2017-08-01 10:15:58.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4807. 2017-08-01 10:15:58.326 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4808. 2017-08-01 10:15:58.327 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4809. 2017-08-01 10:15:58.330 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4810. 2017-08-01 10:15:58.330 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4811. 2017-08-01 10:15:58.352 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4812. 2017-08-01 10:15:58.353 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4813. 2017-08-01 10:15:58.361 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4814. 2017-08-01 10:15:58.361 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4815. 2017-08-01 10:15:58.421 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4816. 2017-08-01 10:15:58.422 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4817. 2017-08-01 10:15:58.423 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4818. 2017-08-01 10:15:58.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4819. 2017-08-01 10:15:58.476 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4820. 2017-08-01 10:15:58.477 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4821. 2017-08-01 10:15:58.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4822. 2017-08-01 10:15:58.507 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4823. 2017-08-01 10:15:58.508 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4824. 2017-08-01 10:15:58.593 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4825. 2017-08-01 10:15:58.596 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4826. 2017-08-01 10:17:00.921 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4827. 2017-08-01 10:17:00.921 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4828. 2017-08-01 10:17:01.035 |-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= ?
  4829. 2017-08-01 10:17:01.035 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4830. 2017-08-01 10:17:01.045 |-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= ?
  4831. 2017-08-01 10:17:01.046 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4832. 2017-08-01 10:17:01.063 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4833. 2017-08-01 10:17:01.072 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4834. 2017-08-01 10:17:01.090 |-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
  4835. 2017-08-01 10:17:01.091 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4836. 2017-08-01 10:17:01.101 |-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
  4837. 2017-08-01 10:17:01.101 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4838. 2017-08-01 10:17:01.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4839. 2017-08-01 10:17:01.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=?)
  4840. 2017-08-01 10:17:01.131 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4841. 2017-08-01 10:17:01.134 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4842. 2017-08-01 10:17:01.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4843. 2017-08-01 10:17:01.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4844. 2017-08-01 10:17:01.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4845. 2017-08-01 10:17:01.162 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4846. 2017-08-01 10:17:01.352 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4847. 2017-08-01 10:17:01.353 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4848. 2017-08-01 10:17:01.371 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4849. 2017-08-01 10:17:01.372 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4850. 2017-08-01 10:17:01.431 |-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
  4851. 2017-08-01 10:17:01.431 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  4852. 2017-08-01 10:17:01.461 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  4853. 2017-08-01 10:17:01.462 |-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
  4854. 2017-08-01 10:17:01.463 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4855. 2017-08-01 10:17:01.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4856. 2017-08-01 10:17:01.548 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4857. 2017-08-01 10:17:01.548 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4858. 2017-08-01 10:17:01.629 |-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= ?
  4859. 2017-08-01 10:17:01.630 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4860. 2017-08-01 10:17:01.640 |-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= ?
  4861. 2017-08-01 10:17:01.640 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4862. 2017-08-01 10:17:01.656 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4863. 2017-08-01 10:17:01.657 |-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
  4864. 2017-08-01 10:17:01.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4865. 2017-08-01 10:17:01.667 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4866. 2017-08-01 10:17:01.668 |-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
  4867. 2017-08-01 10:17:01.669 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4868. 2017-08-01 10:17:01.698 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4869. 2017-08-01 10:17:01.699 |-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=?)
  4870. 2017-08-01 10:17:01.699 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4871. 2017-08-01 10:17:01.701 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4872. 2017-08-01 10:17:01.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=?)
  4873. 2017-08-01 10:17:01.702 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4874. 2017-08-01 10:17:01.725 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4875. 2017-08-01 10:17:01.738 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4876. 2017-08-01 10:17:01.893 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4877. 2017-08-01 10:17:01.894 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4878. 2017-08-01 10:17:01.895 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4879. 2017-08-01 10:17:01.895 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4880. 2017-08-01 10:17:01.925 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  4881. 2017-08-01 10:17:01.932 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4882. 2017-08-01 10:17:01.941 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4883. 2017-08-01 10:17:01.942 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4884. 2017-08-01 10:17:01.943 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4885. 2017-08-01 10:17:01.944 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4886. 2017-08-01 10:17:01.973 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4887. 2017-08-01 10:17:01.990 |-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= ?
  4888. 2017-08-01 10:17:01.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4889. 2017-08-01 10:17:02.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4890. 2017-08-01 10:17:02.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
  4891. 2017-08-01 10:17:02.021 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4892. 2017-08-01 10:17:02.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4893. 2017-08-01 10:17:02.073 |-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=?)
  4894. 2017-08-01 10:17:02.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4895. 2017-08-01 10:17:02.104 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4896. 2017-08-01 10:17:02.213 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4897. 2017-08-01 10:17:02.214 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4898. 2017-08-01 10:17:02.218 |-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
  4899. 2017-08-01 10:17:02.219 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4900. 2017-08-01 10:17:02.317 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  4901. 2017-08-01 10:17:02.344 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4902. 2017-08-01 10:17:02.399 |-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= ?
  4903. 2017-08-01 10:17:02.400 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4904. 2017-08-01 10:17:02.428 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4905. 2017-08-01 10:17:02.429 |-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
  4906. 2017-08-01 10:17:02.429 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4907. 2017-08-01 10:17:02.474 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4908. 2017-08-01 10:17:02.475 |-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=?)
  4909. 2017-08-01 10:17:02.475 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4910. 2017-08-01 10:17:02.504 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4911. 2017-08-01 10:17:02.612 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4912. 2017-08-01 10:17:02.614 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4913. 2017-08-01 10:17:02.618 |-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=?
  4914. 2017-08-01 10:17:02.618 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4915. 2017-08-01 10:17:02.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  4916. 2017-08-01 10:17:02.708 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4917. 2017-08-01 10:17:02.759 |-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= ?
  4918. 2017-08-01 10:17:02.760 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4919. 2017-08-01 10:17:02.789 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4920. 2017-08-01 10:17:02.791 |-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
  4921. 2017-08-01 10:17:02.791 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4922. 2017-08-01 10:17:02.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4923. 2017-08-01 10:17:02.837 |-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=?)
  4924. 2017-08-01 10:17:02.837 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4925. 2017-08-01 10:17:02.865 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4926. 2017-08-01 10:17:02.983 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4927. 2017-08-01 10:17:02.984 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4928. 2017-08-01 10:17:02.985 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  4929. 2017-08-01 10:17:02.986 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  4930. 2017-08-01 10:17:03.015 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  4931. 2017-08-01 10:17:03.111 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4932. 2017-08-01 10:17:03.111 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4933. 2017-08-01 10:17:03.170 |-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= ?
  4934. 2017-08-01 10:17:03.170 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4935. 2017-08-01 10:17:03.198 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4936. 2017-08-01 10:17:03.200 |-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
  4937. 2017-08-01 10:17:03.200 |-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= ?
  4938. 2017-08-01 10:17:03.200 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4939. 2017-08-01 10:17:03.200 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4940. 2017-08-01 10:17:03.229 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4941. 2017-08-01 10:17:03.230 |-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
  4942. 2017-08-01 10:17:03.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4943. 2017-08-01 10:17:03.244 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4944. 2017-08-01 10:17:03.245 |-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=?)
  4945. 2017-08-01 10:17:03.246 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4946. 2017-08-01 10:17:03.275 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4947. 2017-08-01 10:17:03.276 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4948. 2017-08-01 10:17:03.276 |-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=?)
  4949. 2017-08-01 10:17:03.277 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4950. 2017-08-01 10:17:03.306 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4951. 2017-08-01 10:17:03.443 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4952. 2017-08-01 10:17:03.445 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4953. 2017-08-01 10:17:03.452 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4954. 2017-08-01 10:17:03.453 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4955. 2017-08-01 10:17:03.491 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4956. 2017-08-01 10:17:03.493 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4957. 2017-08-01 10:17:03.495 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  4958. 2017-08-01 10:17:03.496 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4959. 2017-08-01 10:17:03.569 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4960. 2017-08-01 10:17:03.571 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4961. 2017-08-01 10:17:03.572 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  4962. 2017-08-01 10:17:03.582 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  4963. 2017-08-01 10:17:03.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  4964. 2017-08-01 10:17:03.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4965. 2017-08-01 10:17:03.679 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  4966. 2017-08-01 10:17:03.681 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  4967. 2017-08-01 10:17:03.681 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4968. 2017-08-01 10:17:03.697 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4969. 2017-08-01 10:17:03.767 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  4970. 2017-08-01 10:17:31.706 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4971. 2017-08-01 10:17:31.760 |-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= ?
  4972. 2017-08-01 10:17:31.760 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4973. 2017-08-01 10:17:31.791 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4974. 2017-08-01 10:17:31.792 |-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
  4975. 2017-08-01 10:17:31.793 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4976. 2017-08-01 10:17:31.840 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  4977. 2017-08-01 10:17:31.840 |-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=?)
  4978. 2017-08-01 10:17:31.841 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4979. 2017-08-01 10:17:31.868 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4980. 2017-08-01 10:17:31.980 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  4981. 2017-08-01 10:17:31.981 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4982. 2017-08-01 10:17:31.988 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  4983. 2017-08-01 10:17:31.988 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  4984. 2017-08-01 10:17:32.102 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  4985. 2017-08-01 10:17:32.105 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  4986. 2017-08-01 10:17:32.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 30(Integer), 10(Integer)
  4987. 2017-08-01 10:17:32.220 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  4988. 2017-08-01 10:28:05.011 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4989. 2017-08-01 10:28:05.011 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  4990. 2017-08-01 10:28:05.194 |-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= ?
  4991. 2017-08-01 10:28:05.194 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4992. 2017-08-01 10:28:05.222 |-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= ?
  4993. 2017-08-01 10:28:05.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4994. 2017-08-01 10:28:05.254 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4995. 2017-08-01 10:28:05.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4996. 2017-08-01 10:28:05.282 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4997. 2017-08-01 10:28:05.283 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4998. 2017-08-01 10:28:05.329 |-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
  4999. 2017-08-01 10:28:05.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5000. 2017-08-01 10:28:05.331 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5001. 2017-08-01 10:28:05.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5002. 2017-08-01 10:28:05.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5003. 2017-08-01 10:28:05.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5004. 2017-08-01 10:28:05.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5005. 2017-08-01 10:28:05.425 |-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=?)
  5006. 2017-08-01 10:28:05.426 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5007. 2017-08-01 10:28:05.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5008. 2017-08-01 10:28:05.489 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5009. 2017-08-01 10:28:05.490 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5010. 2017-08-01 10:28:05.740 |-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
  5011. 2017-08-01 10:28:05.741 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5012. 2017-08-01 10:28:05.769 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5013. 2017-08-01 10:28:05.770 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5014. 2017-08-01 10:28:05.780 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5015. 2017-08-01 10:28:05.781 |-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
  5016. 2017-08-01 10:28:05.781 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5017. 2017-08-01 10:28:05.815 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5018. 2017-08-01 10:28:05.856 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5019. 2017-08-01 10:28:05.856 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5020. 2017-08-01 10:28:06.100 |-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= ?
  5021. 2017-08-01 10:28:06.100 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5022. 2017-08-01 10:28:06.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5023. 2017-08-01 10:28:06.142 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5024. 2017-08-01 10:28:06.142 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5025. 2017-08-01 10:28:06.191 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5026. 2017-08-01 10:28:06.192 |-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=?)
  5027. 2017-08-01 10:28:06.192 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5028. 2017-08-01 10:28:06.240 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5029. 2017-08-01 10:28:06.301 |-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= ?
  5030. 2017-08-01 10:28:06.301 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5031. 2017-08-01 10:28:06.343 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5032. 2017-08-01 10:28:06.344 |-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
  5033. 2017-08-01 10:28:06.345 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5034. 2017-08-01 10:28:06.409 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5035. 2017-08-01 10:28:06.410 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5036. 2017-08-01 10:28:06.412 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5037. 2017-08-01 10:28:06.412 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5038. 2017-08-01 10:28:06.412 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5039. 2017-08-01 10:28:06.413 |-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=?)
  5040. 2017-08-01 10:28:06.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5041. 2017-08-01 10:28:06.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5042. 2017-08-01 10:28:06.448 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5043. 2017-08-01 10:28:06.582 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5044. 2017-08-01 10:28:06.583 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5045. 2017-08-01 10:28:06.585 |-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
  5046. 2017-08-01 10:28:06.585 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5047. 2017-08-01 10:28:06.659 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5048. 2017-08-01 10:28:06.668 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5049. 2017-08-01 10:28:06.890 |-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= ?
  5050. 2017-08-01 10:28:06.891 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5051. 2017-08-01 10:28:06.930 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5052. 2017-08-01 10:28:06.931 |-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
  5053. 2017-08-01 10:28:06.931 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5054. 2017-08-01 10:28:06.962 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5055. 2017-08-01 10:28:06.963 |-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=?)
  5056. 2017-08-01 10:28:06.963 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5057. 2017-08-01 10:28:06.996 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5058. 2017-08-01 10:28:07.128 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5059. 2017-08-01 10:28:07.130 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5060. 2017-08-01 10:28:07.134 |-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
  5061. 2017-08-01 10:28:07.135 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5062. 2017-08-01 10:28:07.436 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  5063. 2017-08-01 10:28:07.465 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5064. 2017-08-01 10:28:07.710 |-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= ?
  5065. 2017-08-01 10:28:07.711 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5066. 2017-08-01 10:28:07.738 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5067. 2017-08-01 10:28:07.739 |-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
  5068. 2017-08-01 10:28:07.740 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5069. 2017-08-01 10:28:07.773 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5070. 2017-08-01 10:28:07.774 |-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=?)
  5071. 2017-08-01 10:28:07.775 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5072. 2017-08-01 10:28:07.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5073. 2017-08-01 10:28:07.919 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5074. 2017-08-01 10:28:07.920 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5075. 2017-08-01 10:28:07.924 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5076. 2017-08-01 10:28:07.924 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5077. 2017-08-01 10:28:07.951 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  5078. 2017-08-01 10:28:08.020 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5079. 2017-08-01 10:28:08.240 |-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= ?
  5080. 2017-08-01 10:28:08.241 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5081. 2017-08-01 10:28:08.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5082. 2017-08-01 10:28:08.271 |-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
  5083. 2017-08-01 10:28:08.271 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5084. 2017-08-01 10:28:08.301 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5085. 2017-08-01 10:28:08.302 |-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=?)
  5086. 2017-08-01 10:28:08.302 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5087. 2017-08-01 10:28:08.330 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5088. 2017-08-01 10:28:08.448 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5089. 2017-08-01 10:28:08.450 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5090. 2017-08-01 10:28:08.451 |-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
  5091. 2017-08-01 10:28:08.452 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5092. 2017-08-01 10:28:08.490 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5093. 2017-08-01 10:28:08.578 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5094. 2017-08-01 10:28:08.579 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5095. 2017-08-01 10:28:08.830 |-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= ?
  5096. 2017-08-01 10:28:08.831 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5097. 2017-08-01 10:28:08.858 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5098. 2017-08-01 10:28:08.859 |-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
  5099. 2017-08-01 10:28:08.860 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5100. 2017-08-01 10:28:08.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5101. 2017-08-01 10:28:08.892 |-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=?)
  5102. 2017-08-01 10:28:08.893 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5103. 2017-08-01 10:28:08.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5104. 2017-08-01 10:28:09.020 |-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= ?
  5105. 2017-08-01 10:28:09.021 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5106. 2017-08-01 10:28:09.047 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5107. 2017-08-01 10:28:09.048 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5108. 2017-08-01 10:28:09.048 |-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
  5109. 2017-08-01 10:28:09.049 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5110. 2017-08-01 10:28:09.049 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5111. 2017-08-01 10:28:09.057 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5112. 2017-08-01 10:28:09.058 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5113. 2017-08-01 10:28:09.081 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5114. 2017-08-01 10:28:09.082 |-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=?)
  5115. 2017-08-01 10:28:09.082 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5116. 2017-08-01 10:28:09.115 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5117. 2017-08-01 10:28:09.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5118. 2017-08-01 10:28:09.174 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5119. 2017-08-01 10:28:09.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5120. 2017-08-01 10:28:09.238 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5121. 2017-08-01 10:28:09.240 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5122. 2017-08-01 10:28:09.242 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5123. 2017-08-01 10:28:09.243 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5124. 2017-08-01 10:28:09.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5125. 2017-08-01 10:28:09.331 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5126. 2017-08-01 10:28:09.332 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5127. 2017-08-01 10:28:09.333 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5128. 2017-08-01 10:28:09.417 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5129. 2017-08-01 10:28:09.418 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5130. 2017-08-01 10:28:09.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5131. 2017-08-01 10:28:09.513 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5132. 2017-08-01 10:28:19.973 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5133. 2017-08-01 10:28:20.029 |-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= ?
  5134. 2017-08-01 10:28:20.030 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5135. 2017-08-01 10:28:20.057 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5136. 2017-08-01 10:28:20.058 |-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
  5137. 2017-08-01 10:28:20.058 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5138. 2017-08-01 10:28:20.088 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5139. 2017-08-01 10:28:20.089 |-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=?)
  5140. 2017-08-01 10:28:20.089 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5141. 2017-08-01 10:28:20.126 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5142. 2017-08-01 10:28:20.249 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5143. 2017-08-01 10:28:20.250 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5144. 2017-08-01 10:28:20.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  5145. 2017-08-01 10:28:20.253 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14389(Long)
  5146. 2017-08-01 10:28:20.282 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  5147. 2017-08-01 10:28:20.329 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5148. 2017-08-01 10:28:20.333 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5149. 2017-08-01 10:28:20.481 |-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= ?
  5150. 2017-08-01 10:28:20.481 |-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= ?
  5151. 2017-08-01 10:28:20.481 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5152. 2017-08-01 10:28:20.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5153. 2017-08-01 10:28:20.508 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5154. 2017-08-01 10:28:20.509 |-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
  5155. 2017-08-01 10:28:20.510 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5156. 2017-08-01 10:28:20.511 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5157. 2017-08-01 10:28:20.512 |-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
  5158. 2017-08-01 10:28:20.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5159. 2017-08-01 10:28:20.540 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5160. 2017-08-01 10:28:20.541 |-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=?)
  5161. 2017-08-01 10:28:20.541 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5162. 2017-08-01 10:28:20.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5163. 2017-08-01 10:28:20.558 |-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=?)
  5164. 2017-08-01 10:28:20.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5165. 2017-08-01 10:28:20.567 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5166. 2017-08-01 10:28:20.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5167. 2017-08-01 10:28:20.758 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5168. 2017-08-01 10:28:20.760 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5169. 2017-08-01 10:28:20.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  5170. 2017-08-01 10:28:20.764 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14389(Long)
  5171. 2017-08-01 10:28:20.794 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  5172. 2017-08-01 10:28:20.802 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5173. 2017-08-01 10:28:20.803 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5174. 2017-08-01 10:28:20.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  5175. 2017-08-01 10:28:20.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14389(Long)
  5176. 2017-08-01 10:28:20.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 5
  5177. 2017-08-01 10:28:24.002 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5178. 2017-08-01 10:28:24.060 |-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= ?
  5179. 2017-08-01 10:28:24.060 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5180. 2017-08-01 10:28:24.093 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5181. 2017-08-01 10:28:24.094 |-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
  5182. 2017-08-01 10:28:24.094 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5183. 2017-08-01 10:28:24.138 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5184. 2017-08-01 10:28:24.139 |-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=?)
  5185. 2017-08-01 10:28:24.139 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5186. 2017-08-01 10:28:24.167 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5187. 2017-08-01 10:28:24.282 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5188. 2017-08-01 10:28:24.284 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5189. 2017-08-01 10:28:24.286 |-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
  5190. 2017-08-01 10:28:24.286 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5191. 2017-08-01 10:28:24.317 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5192. 2017-08-01 10:28:24.411 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5193. 2017-08-01 10:28:24.411 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5194. 2017-08-01 10:28:24.550 |-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= ?
  5195. 2017-08-01 10:28:24.551 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5196. 2017-08-01 10:28:24.579 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5197. 2017-08-01 10:28:24.580 |-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
  5198. 2017-08-01 10:28:24.581 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5199. 2017-08-01 10:28:24.600 |-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= ?
  5200. 2017-08-01 10:28:24.601 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5201. 2017-08-01 10:28:24.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5202. 2017-08-01 10:28:24.628 |-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=?)
  5203. 2017-08-01 10:28:24.628 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5204. 2017-08-01 10:28:24.628 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5205. 2017-08-01 10:28:24.629 |-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
  5206. 2017-08-01 10:28:24.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5207. 2017-08-01 10:28:24.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5208. 2017-08-01 10:28:24.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5209. 2017-08-01 10:28:24.660 |-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=?)
  5210. 2017-08-01 10:28:24.660 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5211. 2017-08-01 10:28:24.689 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5212. 2017-08-01 10:28:24.809 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5213. 2017-08-01 10:28:24.810 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5214. 2017-08-01 10:28:24.818 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5215. 2017-08-01 10:28:24.819 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5216. 2017-08-01 10:28:24.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5217. 2017-08-01 10:28:24.933 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5218. 2017-08-01 10:28:24.934 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5219. 2017-08-01 10:28:25.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5220. 2017-08-01 10:28:25.328 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5221. 2017-08-01 10:28:25.329 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5222. 2017-08-01 10:28:25.330 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5223. 2017-08-01 10:28:25.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5224. 2017-08-01 10:28:25.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5225. 2017-08-01 10:28:25.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5226. 2017-08-01 10:28:25.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5227. 2017-08-01 10:28:25.503 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5228. 2017-08-01 10:28:25.505 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5229. 2017-08-01 10:28:25.505 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5230. 2017-08-01 10:28:25.591 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5231. 2017-08-01 10:28:34.085 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5232. 2017-08-01 10:28:34.140 |-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= ?
  5233. 2017-08-01 10:28:34.140 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5234. 2017-08-01 10:28:34.206 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5235. 2017-08-01 10:28:34.207 |-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
  5236. 2017-08-01 10:28:34.207 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5237. 2017-08-01 10:28:34.277 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5238. 2017-08-01 10:28:34.278 |-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=?)
  5239. 2017-08-01 10:28:34.278 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5240. 2017-08-01 10:28:34.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5241. 2017-08-01 10:28:34.452 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5242. 2017-08-01 10:28:34.453 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5243. 2017-08-01 10:28:34.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  5244. 2017-08-01 10:28:34.455 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  5245. 2017-08-01 10:28:34.500 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  5246. 2017-08-01 10:28:34.533 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5247. 2017-08-01 10:28:34.535 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5248. 2017-08-01 10:28:34.610 |-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= ?
  5249. 2017-08-01 10:28:34.611 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5250. 2017-08-01 10:28:34.631 |-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= ?
  5251. 2017-08-01 10:28:34.631 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5252. 2017-08-01 10:28:34.638 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5253. 2017-08-01 10:28:34.639 |-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
  5254. 2017-08-01 10:28:34.639 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5255. 2017-08-01 10:28:34.657 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5256. 2017-08-01 10:28:34.658 |-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
  5257. 2017-08-01 10:28:34.658 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5258. 2017-08-01 10:28:34.682 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5259. 2017-08-01 10:28:34.683 |-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=?)
  5260. 2017-08-01 10:28:34.684 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5261. 2017-08-01 10:28:34.703 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5262. 2017-08-01 10:28:34.704 |-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=?)
  5263. 2017-08-01 10:28:34.704 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5264. 2017-08-01 10:28:34.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5265. 2017-08-01 10:28:34.732 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5266. 2017-08-01 10:28:34.873 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5267. 2017-08-01 10:28:34.874 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5268. 2017-08-01 10:28:34.877 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  5269. 2017-08-01 10:28:34.878 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  5270. 2017-08-01 10:28:34.921 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  5271. 2017-08-01 10:28:34.922 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5272. 2017-08-01 10:28:34.922 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5273. 2017-08-01 10:28:34.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  5274. 2017-08-01 10:28:34.938 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  5275. 2017-08-01 10:28:34.969 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  5276. 2017-08-01 10:28:40.999 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5277. 2017-08-01 10:28:41.050 |-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= ?
  5278. 2017-08-01 10:28:41.051 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5279. 2017-08-01 10:28:41.080 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5280. 2017-08-01 10:28:41.081 |-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
  5281. 2017-08-01 10:28:41.081 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5282. 2017-08-01 10:28:41.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5283. 2017-08-01 10:28:41.127 |-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=?)
  5284. 2017-08-01 10:28:41.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5285. 2017-08-01 10:28:41.157 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5286. 2017-08-01 10:28:41.272 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5287. 2017-08-01 10:28:41.274 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5288. 2017-08-01 10:28:41.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5289. 2017-08-01 10:28:41.276 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5290. 2017-08-01 10:28:41.307 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5291. 2017-08-01 10:28:41.391 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5292. 2017-08-01 10:28:41.391 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5293. 2017-08-01 10:28:41.471 |-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= ?
  5294. 2017-08-01 10:28:41.471 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5295. 2017-08-01 10:28:41.490 |-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= ?
  5296. 2017-08-01 10:28:41.491 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5297. 2017-08-01 10:28:41.499 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5298. 2017-08-01 10:28:41.500 |-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
  5299. 2017-08-01 10:28:41.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5300. 2017-08-01 10:28:41.520 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5301. 2017-08-01 10:28:41.520 |-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
  5302. 2017-08-01 10:28:41.521 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5303. 2017-08-01 10:28:41.547 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5304. 2017-08-01 10:28:41.548 |-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=?)
  5305. 2017-08-01 10:28:41.548 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5306. 2017-08-01 10:28:41.565 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5307. 2017-08-01 10:28:41.566 |-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=?)
  5308. 2017-08-01 10:28:41.566 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5309. 2017-08-01 10:28:41.579 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5310. 2017-08-01 10:28:41.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5311. 2017-08-01 10:28:41.773 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5312. 2017-08-01 10:28:41.774 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5313. 2017-08-01 10:28:41.782 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5314. 2017-08-01 10:28:41.782 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5315. 2017-08-01 10:28:41.803 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5316. 2017-08-01 10:28:41.804 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5317. 2017-08-01 10:28:41.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5318. 2017-08-01 10:28:41.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5319. 2017-08-01 10:28:41.895 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5320. 2017-08-01 10:28:41.896 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5321. 2017-08-01 10:28:41.896 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5322. 2017-08-01 10:28:41.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5323. 2017-08-01 10:28:41.906 |-DEBUG [http-nio-8089-exec-9] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5324. 2017-08-01 10:28:41.906 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5325. 2017-08-01 10:28:41.992 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5326. 2017-08-01 10:28:41.993 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5327. 2017-08-01 10:28:41.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5328. 2017-08-01 10:28:42.027 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5329. 2017-08-01 10:28:42.078 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5330. 2017-08-01 10:31:27.533 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5331. 2017-08-01 10:31:27.533 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5332. 2017-08-01 10:31:27.678 |-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= ?
  5333. 2017-08-01 10:31:27.678 |-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= ?
  5334. 2017-08-01 10:31:27.678 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5335. 2017-08-01 10:31:27.679 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5336. 2017-08-01 10:31:27.705 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5337. 2017-08-01 10:31:27.708 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5338. 2017-08-01 10:31:27.734 |-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
  5339. 2017-08-01 10:31:27.735 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5340. 2017-08-01 10:31:27.736 |-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
  5341. 2017-08-01 10:31:27.737 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5342. 2017-08-01 10:31:27.784 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5343. 2017-08-01 10:31:27.785 |-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=?)
  5344. 2017-08-01 10:31:27.785 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5345. 2017-08-01 10:31:27.789 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5346. 2017-08-01 10:31:27.790 |-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=?)
  5347. 2017-08-01 10:31:27.790 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5348. 2017-08-01 10:31:27.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5349. 2017-08-01 10:31:27.820 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5350. 2017-08-01 10:31:27.992 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5351. 2017-08-01 10:31:27.994 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5352. 2017-08-01 10:31:28.042 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5353. 2017-08-01 10:31:28.043 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5354. 2017-08-01 10:31:28.101 |-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
  5355. 2017-08-01 10:31:28.102 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5356. 2017-08-01 10:31:28.134 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5357. 2017-08-01 10:31:28.135 |-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
  5358. 2017-08-01 10:31:28.136 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5359. 2017-08-01 10:31:28.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5360. 2017-08-01 10:31:28.242 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5361. 2017-08-01 10:31:28.242 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5362. 2017-08-01 10:31:28.320 |-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= ?
  5363. 2017-08-01 10:31:28.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5364. 2017-08-01 10:31:28.340 |-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= ?
  5365. 2017-08-01 10:31:28.341 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5366. 2017-08-01 10:31:28.351 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5367. 2017-08-01 10:31:28.352 |-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
  5368. 2017-08-01 10:31:28.352 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5369. 2017-08-01 10:31:28.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5370. 2017-08-01 10:31:28.369 |-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
  5371. 2017-08-01 10:31:28.370 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5372. 2017-08-01 10:31:28.397 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5373. 2017-08-01 10:31:28.398 |-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=?)
  5374. 2017-08-01 10:31:28.399 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5375. 2017-08-01 10:31:28.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5376. 2017-08-01 10:31:28.413 |-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=?)
  5377. 2017-08-01 10:31:28.413 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5378. 2017-08-01 10:31:28.428 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5379. 2017-08-01 10:31:28.440 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5380. 2017-08-01 10:31:28.603 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5381. 2017-08-01 10:31:28.604 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5382. 2017-08-01 10:31:28.606 |-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
  5383. 2017-08-01 10:31:28.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5384. 2017-08-01 10:31:28.640 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5385. 2017-08-01 10:31:28.661 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5386. 2017-08-01 10:31:28.662 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5387. 2017-08-01 10:31:28.664 |-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
  5388. 2017-08-01 10:31:28.664 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5389. 2017-08-01 10:31:28.692 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5390. 2017-08-01 10:31:28.702 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5391. 2017-08-01 10:31:28.750 |-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= ?
  5392. 2017-08-01 10:31:28.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5393. 2017-08-01 10:31:28.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5394. 2017-08-01 10:31:28.777 |-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
  5395. 2017-08-01 10:31:28.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5396. 2017-08-01 10:31:28.821 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5397. 2017-08-01 10:31:28.822 |-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=?)
  5398. 2017-08-01 10:31:28.823 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5399. 2017-08-01 10:31:28.850 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5400. 2017-08-01 10:31:28.961 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5401. 2017-08-01 10:31:28.962 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5402. 2017-08-01 10:31:28.966 |-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
  5403. 2017-08-01 10:31:28.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5404. 2017-08-01 10:31:29.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  5405. 2017-08-01 10:31:29.117 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5406. 2017-08-01 10:31:29.169 |-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= ?
  5407. 2017-08-01 10:31:29.170 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5408. 2017-08-01 10:31:29.198 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5409. 2017-08-01 10:31:29.199 |-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
  5410. 2017-08-01 10:31:29.199 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5411. 2017-08-01 10:31:29.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5412. 2017-08-01 10:31:29.242 |-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=?)
  5413. 2017-08-01 10:31:29.243 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5414. 2017-08-01 10:31:29.269 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5415. 2017-08-01 10:31:29.381 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5416. 2017-08-01 10:31:29.383 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5417. 2017-08-01 10:31:29.386 |-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=?
  5418. 2017-08-01 10:31:29.386 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5419. 2017-08-01 10:31:29.414 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  5420. 2017-08-01 10:31:29.477 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5421. 2017-08-01 10:31:29.530 |-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= ?
  5422. 2017-08-01 10:31:29.530 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5423. 2017-08-01 10:31:29.570 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5424. 2017-08-01 10:31:29.571 |-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
  5425. 2017-08-01 10:31:29.571 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5426. 2017-08-01 10:31:29.614 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5427. 2017-08-01 10:31:29.615 |-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=?)
  5428. 2017-08-01 10:31:29.615 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5429. 2017-08-01 10:31:29.653 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5430. 2017-08-01 10:31:29.761 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5431. 2017-08-01 10:31:29.762 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5432. 2017-08-01 10:31:29.763 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5433. 2017-08-01 10:31:29.764 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5434. 2017-08-01 10:31:29.792 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5435. 2017-08-01 10:31:29.897 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5436. 2017-08-01 10:31:29.898 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5437. 2017-08-01 10:31:29.960 |-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= ?
  5438. 2017-08-01 10:31:29.960 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5439. 2017-08-01 10:31:29.987 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5440. 2017-08-01 10:31:29.988 |-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
  5441. 2017-08-01 10:31:29.988 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5442. 2017-08-01 10:31:29.989 |-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= ?
  5443. 2017-08-01 10:31:29.990 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5444. 2017-08-01 10:31:30.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5445. 2017-08-01 10:31:30.017 |-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
  5446. 2017-08-01 10:31:30.018 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5447. 2017-08-01 10:31:30.029 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5448. 2017-08-01 10:31:30.030 |-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=?)
  5449. 2017-08-01 10:31:30.030 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5450. 2017-08-01 10:31:30.056 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5451. 2017-08-01 10:31:30.063 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5452. 2017-08-01 10:31:30.064 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5453. 2017-08-01 10:31:30.064 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5454. 2017-08-01 10:31:30.095 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5455. 2017-08-01 10:31:30.204 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5456. 2017-08-01 10:31:30.205 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5457. 2017-08-01 10:31:30.212 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5458. 2017-08-01 10:31:30.213 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5459. 2017-08-01 10:31:30.271 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5460. 2017-08-01 10:31:30.273 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5461. 2017-08-01 10:31:30.275 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5462. 2017-08-01 10:31:30.275 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5463. 2017-08-01 10:31:30.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5464. 2017-08-01 10:31:30.330 |-DEBUG [http-nio-8089-exec-9] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5465. 2017-08-01 10:31:30.330 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5466. 2017-08-01 10:31:30.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5467. 2017-08-01 10:31:30.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5468. 2017-08-01 10:31:30.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5469. 2017-08-01 10:31:30.453 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5470. 2017-08-01 10:31:30.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5471. 2017-08-01 10:31:30.471 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5472. 2017-08-01 10:31:30.472 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5473. 2017-08-01 10:31:30.572 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5474. 2017-08-01 10:31:34.431 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5475. 2017-08-01 10:31:34.480 |-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= ?
  5476. 2017-08-01 10:31:34.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5477. 2017-08-01 10:31:34.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5478. 2017-08-01 10:31:34.508 |-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
  5479. 2017-08-01 10:31:34.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5480. 2017-08-01 10:31:34.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5481. 2017-08-01 10:31:34.553 |-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=?)
  5482. 2017-08-01 10:31:34.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5483. 2017-08-01 10:31:34.583 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5484. 2017-08-01 10:31:34.703 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5485. 2017-08-01 10:31:34.704 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5486. 2017-08-01 10:31:34.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  5487. 2017-08-01 10:31:34.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  5488. 2017-08-01 10:31:34.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  5489. 2017-08-01 10:31:34.785 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5490. 2017-08-01 10:31:34.788 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5491. 2017-08-01 10:31:34.861 |-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= ?
  5492. 2017-08-01 10:31:34.861 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5493. 2017-08-01 10:31:34.880 |-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= ?
  5494. 2017-08-01 10:31:34.881 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5495. 2017-08-01 10:31:34.890 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5496. 2017-08-01 10:31:34.891 |-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
  5497. 2017-08-01 10:31:34.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5498. 2017-08-01 10:31:34.908 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5499. 2017-08-01 10:31:34.910 |-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
  5500. 2017-08-01 10:31:34.910 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5501. 2017-08-01 10:31:34.936 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5502. 2017-08-01 10:31:34.937 |-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=?)
  5503. 2017-08-01 10:31:34.938 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5504. 2017-08-01 10:31:34.955 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5505. 2017-08-01 10:31:34.956 |-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=?)
  5506. 2017-08-01 10:31:34.956 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5507. 2017-08-01 10:31:34.963 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5508. 2017-08-01 10:31:34.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5509. 2017-08-01 10:31:35.114 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5510. 2017-08-01 10:31:35.116 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5511. 2017-08-01 10:31:35.119 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  5512. 2017-08-01 10:31:35.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  5513. 2017-08-01 10:31:35.164 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  5514. 2017-08-01 10:31:35.170 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5515. 2017-08-01 10:31:35.172 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5516. 2017-08-01 10:31:35.175 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  5517. 2017-08-01 10:31:35.175 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  5518. 2017-08-01 10:31:35.206 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  5519. 2017-08-01 10:31:40.186 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5520. 2017-08-01 10:31:40.240 |-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= ?
  5521. 2017-08-01 10:31:40.241 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5522. 2017-08-01 10:31:40.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5523. 2017-08-01 10:31:40.274 |-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
  5524. 2017-08-01 10:31:40.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5525. 2017-08-01 10:31:40.321 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5526. 2017-08-01 10:31:40.322 |-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=?)
  5527. 2017-08-01 10:31:40.322 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5528. 2017-08-01 10:31:40.351 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5529. 2017-08-01 10:31:40.461 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5530. 2017-08-01 10:31:40.463 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5531. 2017-08-01 10:31:40.464 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5532. 2017-08-01 10:31:40.465 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5533. 2017-08-01 10:31:40.501 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5534. 2017-08-01 10:31:40.600 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5535. 2017-08-01 10:31:40.600 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5536. 2017-08-01 10:31:40.671 |-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= ?
  5537. 2017-08-01 10:31:40.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5538. 2017-08-01 10:31:40.690 |-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= ?
  5539. 2017-08-01 10:31:40.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5540. 2017-08-01 10:31:40.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5541. 2017-08-01 10:31:40.700 |-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
  5542. 2017-08-01 10:31:40.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5543. 2017-08-01 10:31:40.719 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5544. 2017-08-01 10:31:40.720 |-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
  5545. 2017-08-01 10:31:40.720 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5546. 2017-08-01 10:31:40.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5547. 2017-08-01 10:31:40.750 |-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=?)
  5548. 2017-08-01 10:31:40.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5549. 2017-08-01 10:31:40.771 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5550. 2017-08-01 10:31:40.772 |-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=?)
  5551. 2017-08-01 10:31:40.772 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5552. 2017-08-01 10:31:40.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5553. 2017-08-01 10:31:40.799 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5554. 2017-08-01 10:31:40.933 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5555. 2017-08-01 10:31:40.934 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5556. 2017-08-01 10:31:40.942 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5557. 2017-08-01 10:31:40.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5558. 2017-08-01 10:31:40.991 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5559. 2017-08-01 10:31:40.993 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5560. 2017-08-01 10:31:40.994 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5561. 2017-08-01 10:31:40.995 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5562. 2017-08-01 10:31:41.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5563. 2017-08-01 10:31:41.057 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5564. 2017-08-01 10:31:41.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5565. 2017-08-01 10:31:41.082 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5566. 2017-08-01 10:31:41.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5567. 2017-08-01 10:31:41.084 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5568. 2017-08-01 10:31:41.175 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5569. 2017-08-01 10:31:41.176 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5570. 2017-08-01 10:31:41.177 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5571. 2017-08-01 10:31:41.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5572. 2017-08-01 10:31:41.263 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5573. 2017-08-01 10:32:09.966 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5574. 2017-08-01 10:32:09.966 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5575. 2017-08-01 10:32:10.120 |-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= ?
  5576. 2017-08-01 10:32:10.120 |-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= ?
  5577. 2017-08-01 10:32:10.120 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5578. 2017-08-01 10:32:10.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5579. 2017-08-01 10:32:10.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5580. 2017-08-01 10:32:10.152 |-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
  5581. 2017-08-01 10:32:10.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5582. 2017-08-01 10:32:10.155 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5583. 2017-08-01 10:32:10.156 |-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
  5584. 2017-08-01 10:32:10.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5585. 2017-08-01 10:32:10.200 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5586. 2017-08-01 10:32:10.201 |-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=?)
  5587. 2017-08-01 10:32:10.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5588. 2017-08-01 10:32:10.206 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5589. 2017-08-01 10:32:10.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5590. 2017-08-01 10:32:10.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5591. 2017-08-01 10:32:10.230 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5592. 2017-08-01 10:32:10.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5593. 2017-08-01 10:32:10.449 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5594. 2017-08-01 10:32:10.450 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5595. 2017-08-01 10:32:10.459 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5596. 2017-08-01 10:32:10.460 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5597. 2017-08-01 10:32:10.571 |-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
  5598. 2017-08-01 10:32:10.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5599. 2017-08-01 10:32:10.605 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5600. 2017-08-01 10:32:10.606 |-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
  5601. 2017-08-01 10:32:10.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5602. 2017-08-01 10:32:10.648 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5603. 2017-08-01 10:32:10.692 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5604. 2017-08-01 10:32:10.692 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5605. 2017-08-01 10:32:10.840 |-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= ?
  5606. 2017-08-01 10:32:10.840 |-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= ?
  5607. 2017-08-01 10:32:10.840 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5608. 2017-08-01 10:32:10.840 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5609. 2017-08-01 10:32:10.867 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5610. 2017-08-01 10:32:10.868 |-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
  5611. 2017-08-01 10:32:10.868 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5612. 2017-08-01 10:32:10.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5613. 2017-08-01 10:32:10.869 |-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
  5614. 2017-08-01 10:32:10.870 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5615. 2017-08-01 10:32:10.915 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5616. 2017-08-01 10:32:10.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5617. 2017-08-01 10:32:10.916 |-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=?)
  5618. 2017-08-01 10:32:10.916 |-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=?)
  5619. 2017-08-01 10:32:10.916 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5620. 2017-08-01 10:32:10.917 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5621. 2017-08-01 10:32:10.945 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5622. 2017-08-01 10:32:10.945 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5623. 2017-08-01 10:32:11.169 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5624. 2017-08-01 10:32:11.170 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5625. 2017-08-01 10:32:11.171 |-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
  5626. 2017-08-01 10:32:11.171 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5627. 2017-08-01 10:32:11.179 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5628. 2017-08-01 10:32:11.180 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5629. 2017-08-01 10:32:11.181 |-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
  5630. 2017-08-01 10:32:11.181 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5631. 2017-08-01 10:32:11.210 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  5632. 2017-08-01 10:32:11.213 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5633. 2017-08-01 10:32:11.220 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5634. 2017-08-01 10:32:11.330 |-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= ?
  5635. 2017-08-01 10:32:11.330 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5636. 2017-08-01 10:32:11.371 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5637. 2017-08-01 10:32:11.372 |-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
  5638. 2017-08-01 10:32:11.372 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5639. 2017-08-01 10:32:11.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5640. 2017-08-01 10:32:11.436 |-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=?)
  5641. 2017-08-01 10:32:11.436 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5642. 2017-08-01 10:32:11.478 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5643. 2017-08-01 10:32:11.609 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5644. 2017-08-01 10:32:11.610 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5645. 2017-08-01 10:32:11.615 |-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
  5646. 2017-08-01 10:32:11.615 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5647. 2017-08-01 10:32:12.044 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  5648. 2017-08-01 10:32:12.073 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5649. 2017-08-01 10:32:12.190 |-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= ?
  5650. 2017-08-01 10:32:12.191 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5651. 2017-08-01 10:32:12.219 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5652. 2017-08-01 10:32:12.220 |-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
  5653. 2017-08-01 10:32:12.221 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5654. 2017-08-01 10:32:12.260 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5655. 2017-08-01 10:32:12.261 |-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=?)
  5656. 2017-08-01 10:32:12.262 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5657. 2017-08-01 10:32:12.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5658. 2017-08-01 10:32:12.418 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5659. 2017-08-01 10:32:12.420 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5660. 2017-08-01 10:32:12.423 |-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=?
  5661. 2017-08-01 10:32:12.423 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5662. 2017-08-01 10:32:12.457 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  5663. 2017-08-01 10:32:12.523 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5664. 2017-08-01 10:32:12.630 |-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= ?
  5665. 2017-08-01 10:32:12.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5666. 2017-08-01 10:32:12.661 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5667. 2017-08-01 10:32:12.662 |-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
  5668. 2017-08-01 10:32:12.662 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5669. 2017-08-01 10:32:12.714 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5670. 2017-08-01 10:32:12.715 |-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=?)
  5671. 2017-08-01 10:32:12.715 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5672. 2017-08-01 10:32:12.743 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5673. 2017-08-01 10:32:12.858 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5674. 2017-08-01 10:32:12.860 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5675. 2017-08-01 10:32:12.861 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5676. 2017-08-01 10:32:12.862 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5677. 2017-08-01 10:32:12.895 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5678. 2017-08-01 10:32:12.991 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5679. 2017-08-01 10:32:12.991 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5680. 2017-08-01 10:32:13.130 |-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= ?
  5681. 2017-08-01 10:32:13.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5682. 2017-08-01 10:32:13.150 |-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= ?
  5683. 2017-08-01 10:32:13.150 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5684. 2017-08-01 10:32:13.174 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5685. 2017-08-01 10:32:13.175 |-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
  5686. 2017-08-01 10:32:13.175 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5687. 2017-08-01 10:32:13.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5688. 2017-08-01 10:32:13.187 |-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
  5689. 2017-08-01 10:32:13.187 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5690. 2017-08-01 10:32:13.229 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5691. 2017-08-01 10:32:13.230 |-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=?)
  5692. 2017-08-01 10:32:13.231 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5693. 2017-08-01 10:32:13.235 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5694. 2017-08-01 10:32:13.235 |-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=?)
  5695. 2017-08-01 10:32:13.236 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5696. 2017-08-01 10:32:13.258 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5697. 2017-08-01 10:32:13.266 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5698. 2017-08-01 10:32:13.469 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5699. 2017-08-01 10:32:13.470 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5700. 2017-08-01 10:32:13.472 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5701. 2017-08-01 10:32:13.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5702. 2017-08-01 10:32:13.499 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5703. 2017-08-01 10:32:13.500 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5704. 2017-08-01 10:32:13.508 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5705. 2017-08-01 10:32:13.509 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5706. 2017-08-01 10:32:13.563 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5707. 2017-08-01 10:32:13.565 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5708. 2017-08-01 10:32:13.565 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5709. 2017-08-01 10:32:13.620 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5710. 2017-08-01 10:32:13.622 |-DEBUG [http-nio-8089-exec-4] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5711. 2017-08-01 10:32:13.622 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5712. 2017-08-01 10:32:13.655 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5713. 2017-08-01 10:32:13.655 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5714. 2017-08-01 10:32:13.656 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5715. 2017-08-01 10:32:13.742 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5716. 2017-08-01 10:32:13.744 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5717. 2017-08-01 10:32:15.163 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5718. 2017-08-01 10:32:15.269 |-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= ?
  5719. 2017-08-01 10:32:15.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5720. 2017-08-01 10:32:15.336 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5721. 2017-08-01 10:32:15.336 |-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
  5722. 2017-08-01 10:32:15.337 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5723. 2017-08-01 10:32:15.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5724. 2017-08-01 10:32:15.383 |-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=?)
  5725. 2017-08-01 10:32:15.383 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5726. 2017-08-01 10:32:15.412 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5727. 2017-08-01 10:32:15.529 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5728. 2017-08-01 10:32:15.530 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5729. 2017-08-01 10:32:15.532 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  5730. 2017-08-01 10:32:15.533 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  5731. 2017-08-01 10:32:15.563 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  5732. 2017-08-01 10:32:15.607 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5733. 2017-08-01 10:32:15.610 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5734. 2017-08-01 10:32:15.760 |-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= ?
  5735. 2017-08-01 10:32:15.760 |-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= ?
  5736. 2017-08-01 10:32:15.760 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5737. 2017-08-01 10:32:15.761 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5738. 2017-08-01 10:32:15.826 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5739. 2017-08-01 10:32:15.827 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5740. 2017-08-01 10:32:15.827 |-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
  5741. 2017-08-01 10:32:15.828 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5742. 2017-08-01 10:32:15.828 |-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
  5743. 2017-08-01 10:32:15.828 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5744. 2017-08-01 10:32:15.874 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5745. 2017-08-01 10:32:15.875 |-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=?)
  5746. 2017-08-01 10:32:15.875 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5747. 2017-08-01 10:32:15.904 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5748. 2017-08-01 10:32:15.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5749. 2017-08-01 10:32:15.920 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5750. 2017-08-01 10:32:15.920 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5751. 2017-08-01 10:32:15.977 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5752. 2017-08-01 10:32:16.019 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5753. 2017-08-01 10:32:16.020 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5754. 2017-08-01 10:32:16.024 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  5755. 2017-08-01 10:32:16.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  5756. 2017-08-01 10:32:16.060 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  5757. 2017-08-01 10:32:16.148 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5758. 2017-08-01 10:32:16.149 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5759. 2017-08-01 10:32:16.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  5760. 2017-08-01 10:32:16.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  5761. 2017-08-01 10:32:16.198 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  5762. 2017-08-01 10:32:19.294 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5763. 2017-08-01 10:32:19.660 |-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= ?
  5764. 2017-08-01 10:32:19.661 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5765. 2017-08-01 10:32:19.716 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5766. 2017-08-01 10:32:19.717 |-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
  5767. 2017-08-01 10:32:19.717 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5768. 2017-08-01 10:32:19.770 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5769. 2017-08-01 10:32:19.771 |-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=?)
  5770. 2017-08-01 10:32:19.771 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5771. 2017-08-01 10:32:19.809 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5772. 2017-08-01 10:32:20.299 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5773. 2017-08-01 10:32:20.300 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5774. 2017-08-01 10:32:20.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5775. 2017-08-01 10:32:20.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5776. 2017-08-01 10:32:20.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5777. 2017-08-01 10:32:20.419 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5778. 2017-08-01 10:32:20.419 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5779. 2017-08-01 10:32:20.520 |-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= ?
  5780. 2017-08-01 10:32:20.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5781. 2017-08-01 10:32:20.549 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5782. 2017-08-01 10:32:20.550 |-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
  5783. 2017-08-01 10:32:20.551 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5784. 2017-08-01 10:32:20.583 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5785. 2017-08-01 10:32:20.584 |-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=?)
  5786. 2017-08-01 10:32:20.584 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5787. 2017-08-01 10:32:20.622 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5788. 2017-08-01 10:32:20.739 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5789. 2017-08-01 10:32:20.740 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5790. 2017-08-01 10:32:20.741 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5791. 2017-08-01 10:32:20.742 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5792. 2017-08-01 10:32:20.831 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5793. 2017-08-01 10:32:20.832 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5794. 2017-08-01 10:32:20.833 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5795. 2017-08-01 10:32:20.926 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5796. 2017-08-01 10:32:20.927 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5797. 2017-08-01 10:32:20.928 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5798. 2017-08-01 10:32:21.023 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5799. 2017-08-01 10:32:21.440 |-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= ?
  5800. 2017-08-01 10:32:21.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5801. 2017-08-01 10:32:21.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5802. 2017-08-01 10:32:21.501 |-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
  5803. 2017-08-01 10:32:21.502 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5804. 2017-08-01 10:32:21.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5805. 2017-08-01 10:32:21.552 |-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=?)
  5806. 2017-08-01 10:32:21.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5807. 2017-08-01 10:32:21.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5808. 2017-08-01 10:32:22.269 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5809. 2017-08-01 10:32:22.270 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5810. 2017-08-01 10:32:22.277 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5811. 2017-08-01 10:32:22.278 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5812. 2017-08-01 10:32:22.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5813. 2017-08-01 10:32:22.415 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5814. 2017-08-01 10:32:22.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5815. 2017-08-01 10:32:22.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5816. 2017-08-01 10:32:49.701 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5817. 2017-08-01 10:32:49.759 |-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= ?
  5818. 2017-08-01 10:32:49.760 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5819. 2017-08-01 10:32:49.795 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5820. 2017-08-01 10:32:49.796 |-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
  5821. 2017-08-01 10:32:49.796 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5822. 2017-08-01 10:32:49.833 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5823. 2017-08-01 10:32:49.834 |-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=?)
  5824. 2017-08-01 10:32:49.834 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5825. 2017-08-01 10:32:49.868 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5826. 2017-08-01 10:32:50.000 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5827. 2017-08-01 10:32:50.001 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5828. 2017-08-01 10:32:50.003 |-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
  5829. 2017-08-01 10:32:50.003 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5830. 2017-08-01 10:32:50.042 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5831. 2017-08-01 10:32:50.143 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5832. 2017-08-01 10:32:50.143 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5833. 2017-08-01 10:32:50.220 |-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= ?
  5834. 2017-08-01 10:32:50.220 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5835. 2017-08-01 10:32:50.240 |-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= ?
  5836. 2017-08-01 10:32:50.240 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5837. 2017-08-01 10:32:50.247 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5838. 2017-08-01 10:32:50.248 |-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
  5839. 2017-08-01 10:32:50.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5840. 2017-08-01 10:32:50.266 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5841. 2017-08-01 10:32:50.267 |-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
  5842. 2017-08-01 10:32:50.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5843. 2017-08-01 10:32:50.279 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5844. 2017-08-01 10:32:50.280 |-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=?)
  5845. 2017-08-01 10:32:50.280 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5846. 2017-08-01 10:32:50.316 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5847. 2017-08-01 10:32:50.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5848. 2017-08-01 10:32:50.318 |-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=?)
  5849. 2017-08-01 10:32:50.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5850. 2017-08-01 10:32:50.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5851. 2017-08-01 10:32:50.488 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5852. 2017-08-01 10:32:50.490 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5853. 2017-08-01 10:32:50.492 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5854. 2017-08-01 10:32:50.492 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5855. 2017-08-01 10:32:50.539 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5856. 2017-08-01 10:32:50.540 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5857. 2017-08-01 10:32:50.547 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5858. 2017-08-01 10:32:50.548 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5859. 2017-08-01 10:32:50.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5860. 2017-08-01 10:32:50.585 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5861. 2017-08-01 10:32:50.585 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5862. 2017-08-01 10:32:50.663 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5863. 2017-08-01 10:32:50.665 |-DEBUG [http-nio-8089-exec-7] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5864. 2017-08-01 10:32:50.666 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5865. 2017-08-01 10:32:50.686 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5866. 2017-08-01 10:32:50.687 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5867. 2017-08-01 10:32:50.688 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5868. 2017-08-01 10:32:50.794 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5869. 2017-08-01 10:32:50.803 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5870. 2017-08-01 10:33:58.796 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5871. 2017-08-01 10:33:58.877 |-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= ?
  5872. 2017-08-01 10:33:58.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5873. 2017-08-01 10:33:58.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5874. 2017-08-01 10:33:58.935 |-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
  5875. 2017-08-01 10:33:58.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5876. 2017-08-01 10:33:58.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5877. 2017-08-01 10:33:58.976 |-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=?)
  5878. 2017-08-01 10:33:58.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5879. 2017-08-01 10:33:59.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5880. 2017-08-01 10:33:59.111 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5881. 2017-08-01 10:33:59.113 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5882. 2017-08-01 10:33:59.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  5883. 2017-08-01 10:33:59.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  5884. 2017-08-01 10:33:59.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  5885. 2017-08-01 10:33:59.181 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5886. 2017-08-01 10:33:59.182 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5887. 2017-08-01 10:33:59.240 |-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= ?
  5888. 2017-08-01 10:33:59.240 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5889. 2017-08-01 10:33:59.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5890. 2017-08-01 10:33:59.266 |-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
  5891. 2017-08-01 10:33:59.267 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5892. 2017-08-01 10:33:59.269 |-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= ?
  5893. 2017-08-01 10:33:59.270 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5894. 2017-08-01 10:33:59.296 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5895. 2017-08-01 10:33:59.297 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5896. 2017-08-01 10:33:59.297 |-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=?)
  5897. 2017-08-01 10:33:59.298 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5898. 2017-08-01 10:33:59.325 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5899. 2017-08-01 10:33:59.325 |-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
  5900. 2017-08-01 10:33:59.326 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5901. 2017-08-01 10:33:59.371 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5902. 2017-08-01 10:33:59.371 |-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=?)
  5903. 2017-08-01 10:33:59.372 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5904. 2017-08-01 10:33:59.399 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5905. 2017-08-01 10:33:59.463 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5906. 2017-08-01 10:33:59.464 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5907. 2017-08-01 10:33:59.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  5908. 2017-08-01 10:33:59.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  5909. 2017-08-01 10:33:59.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  5910. 2017-08-01 10:33:59.541 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5911. 2017-08-01 10:33:59.542 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5912. 2017-08-01 10:33:59.546 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  5913. 2017-08-01 10:33:59.546 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  5914. 2017-08-01 10:33:59.594 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  5915. 2017-08-01 10:34:01.651 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5916. 2017-08-01 10:34:01.710 |-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= ?
  5917. 2017-08-01 10:34:01.710 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5918. 2017-08-01 10:34:01.737 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5919. 2017-08-01 10:34:01.738 |-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
  5920. 2017-08-01 10:34:01.738 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5921. 2017-08-01 10:34:01.783 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5922. 2017-08-01 10:34:01.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5923. 2017-08-01 10:34:01.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5924. 2017-08-01 10:34:01.812 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5925. 2017-08-01 10:34:01.921 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5926. 2017-08-01 10:34:01.922 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5927. 2017-08-01 10:34:01.923 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  5928. 2017-08-01 10:34:01.923 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  5929. 2017-08-01 10:34:01.956 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  5930. 2017-08-01 10:34:02.044 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5931. 2017-08-01 10:34:02.045 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5932. 2017-08-01 10:34:02.110 |-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= ?
  5933. 2017-08-01 10:34:02.110 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5934. 2017-08-01 10:34:02.142 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5935. 2017-08-01 10:34:02.143 |-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
  5936. 2017-08-01 10:34:02.143 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5937. 2017-08-01 10:34:02.166 |-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= ?
  5938. 2017-08-01 10:34:02.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5939. 2017-08-01 10:34:02.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5940. 2017-08-01 10:34:02.189 |-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=?)
  5941. 2017-08-01 10:34:02.189 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5942. 2017-08-01 10:34:02.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5943. 2017-08-01 10:34:02.195 |-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
  5944. 2017-08-01 10:34:02.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5945. 2017-08-01 10:34:02.217 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5946. 2017-08-01 10:34:02.224 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5947. 2017-08-01 10:34:02.225 |-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=?)
  5948. 2017-08-01 10:34:02.225 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5949. 2017-08-01 10:34:02.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5950. 2017-08-01 10:34:02.393 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5951. 2017-08-01 10:34:02.394 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5952. 2017-08-01 10:34:02.402 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  5953. 2017-08-01 10:34:02.403 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5954. 2017-08-01 10:34:02.431 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5955. 2017-08-01 10:34:02.432 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5956. 2017-08-01 10:34:02.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  5957. 2017-08-01 10:34:02.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5958. 2017-08-01 10:34:02.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  5959. 2017-08-01 10:34:02.522 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  5960. 2017-08-01 10:34:02.523 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  5961. 2017-08-01 10:34:02.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  5962. 2017-08-01 10:34:02.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  5963. 2017-08-01 10:34:02.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5964. 2017-08-01 10:34:02.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  5965. 2017-08-01 10:34:02.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  5966. 2017-08-01 10:34:02.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  5967. 2017-08-01 10:34:02.646 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  5968. 2017-08-01 10:34:02.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  5969. 2017-08-01 10:55:19.661 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5970. 2017-08-01 10:55:19.661 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5971. 2017-08-01 10:55:19.803 |-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= ?
  5972. 2017-08-01 10:55:19.803 |-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= ?
  5973. 2017-08-01 10:55:19.804 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5974. 2017-08-01 10:55:19.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5975. 2017-08-01 10:55:19.831 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5976. 2017-08-01 10:55:19.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5977. 2017-08-01 10:55:19.860 |-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
  5978. 2017-08-01 10:55:19.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5979. 2017-08-01 10:55:19.862 |-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
  5980. 2017-08-01 10:55:19.862 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5981. 2017-08-01 10:55:19.895 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5982. 2017-08-01 10:55:19.896 |-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=?)
  5983. 2017-08-01 10:55:19.896 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5984. 2017-08-01 10:55:19.906 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5985. 2017-08-01 10:55:19.907 |-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=?)
  5986. 2017-08-01 10:55:19.908 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5987. 2017-08-01 10:55:19.925 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5988. 2017-08-01 10:55:19.936 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  5989. 2017-08-01 10:55:19.970 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5990. 2017-08-01 10:55:19.971 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5991. 2017-08-01 10:55:19.980 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  5992. 2017-08-01 10:55:19.981 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  5993. 2017-08-01 10:55:20.014 |-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
  5994. 2017-08-01 10:55:20.014 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  5995. 2017-08-01 10:55:20.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  5996. 2017-08-01 10:55:20.046 |-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
  5997. 2017-08-01 10:55:20.047 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5998. 2017-08-01 10:55:20.091 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  5999. 2017-08-01 10:55:20.135 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6000. 2017-08-01 10:55:20.135 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6001. 2017-08-01 10:55:20.172 |-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= ?
  6002. 2017-08-01 10:55:20.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6003. 2017-08-01 10:55:20.174 |-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= ?
  6004. 2017-08-01 10:55:20.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6005. 2017-08-01 10:55:20.202 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6006. 2017-08-01 10:55:20.203 |-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
  6007. 2017-08-01 10:55:20.203 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6008. 2017-08-01 10:55:20.203 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6009. 2017-08-01 10:55:20.204 |-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
  6010. 2017-08-01 10:55:20.204 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6011. 2017-08-01 10:55:20.234 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6012. 2017-08-01 10:55:20.235 |-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=?)
  6013. 2017-08-01 10:55:20.235 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6014. 2017-08-01 10:55:20.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6015. 2017-08-01 10:55:20.250 |-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=?)
  6016. 2017-08-01 10:55:20.250 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6017. 2017-08-01 10:55:20.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6018. 2017-08-01 10:55:20.278 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6019. 2017-08-01 10:55:20.306 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6020. 2017-08-01 10:55:20.308 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6021. 2017-08-01 10:55:20.309 |-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
  6022. 2017-08-01 10:55:20.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6023. 2017-08-01 10:55:20.322 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6024. 2017-08-01 10:55:20.324 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6025. 2017-08-01 10:55:20.326 |-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
  6026. 2017-08-01 10:55:20.327 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6027. 2017-08-01 10:55:20.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6028. 2017-08-01 10:55:20.354 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6029. 2017-08-01 10:55:20.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6030. 2017-08-01 10:55:20.384 |-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= ?
  6031. 2017-08-01 10:55:20.385 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6032. 2017-08-01 10:55:20.416 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6033. 2017-08-01 10:55:20.417 |-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
  6034. 2017-08-01 10:55:20.418 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6035. 2017-08-01 10:55:20.463 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6036. 2017-08-01 10:55:20.464 |-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=?)
  6037. 2017-08-01 10:55:20.464 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6038. 2017-08-01 10:55:20.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6039. 2017-08-01 10:55:20.536 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6040. 2017-08-01 10:55:20.538 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6041. 2017-08-01 10:55:20.542 |-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
  6042. 2017-08-01 10:55:20.543 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6043. 2017-08-01 10:55:20.787 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  6044. 2017-08-01 10:55:20.816 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6045. 2017-08-01 10:55:20.845 |-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= ?
  6046. 2017-08-01 10:55:20.846 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6047. 2017-08-01 10:55:20.889 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6048. 2017-08-01 10:55:20.890 |-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
  6049. 2017-08-01 10:55:20.890 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6050. 2017-08-01 10:55:20.935 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6051. 2017-08-01 10:55:20.936 |-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=?)
  6052. 2017-08-01 10:55:20.936 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6053. 2017-08-01 10:55:20.964 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6054. 2017-08-01 10:55:21.008 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6055. 2017-08-01 10:55:21.009 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6056. 2017-08-01 10:55:21.011 |-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=?
  6057. 2017-08-01 10:55:21.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6058. 2017-08-01 10:55:21.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  6059. 2017-08-01 10:55:21.114 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6060. 2017-08-01 10:55:21.144 |-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= ?
  6061. 2017-08-01 10:55:21.145 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6062. 2017-08-01 10:55:21.195 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6063. 2017-08-01 10:55:21.196 |-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
  6064. 2017-08-01 10:55:21.196 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6065. 2017-08-01 10:55:21.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6066. 2017-08-01 10:55:21.243 |-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=?)
  6067. 2017-08-01 10:55:21.244 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6068. 2017-08-01 10:55:21.272 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6069. 2017-08-01 10:55:21.318 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6070. 2017-08-01 10:55:21.319 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6071. 2017-08-01 10:55:21.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  6072. 2017-08-01 10:55:21.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6073. 2017-08-01 10:55:21.351 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6074. 2017-08-01 10:55:21.454 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6075. 2017-08-01 10:55:21.455 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6076. 2017-08-01 10:55:21.487 |-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= ?
  6077. 2017-08-01 10:55:21.487 |-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= ?
  6078. 2017-08-01 10:55:21.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6079. 2017-08-01 10:55:21.487 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6080. 2017-08-01 10:55:21.529 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6081. 2017-08-01 10:55:21.530 |-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
  6082. 2017-08-01 10:55:21.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6083. 2017-08-01 10:55:21.530 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6084. 2017-08-01 10:55:21.530 |-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
  6085. 2017-08-01 10:55:21.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6086. 2017-08-01 10:55:21.577 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6087. 2017-08-01 10:55:21.578 |-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=?)
  6088. 2017-08-01 10:55:21.578 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6089. 2017-08-01 10:55:21.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6090. 2017-08-01 10:55:21.581 |-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=?)
  6091. 2017-08-01 10:55:21.582 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6092. 2017-08-01 10:55:21.606 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6093. 2017-08-01 10:55:21.635 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6094. 2017-08-01 10:55:21.652 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6095. 2017-08-01 10:55:21.653 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6096. 2017-08-01 10:55:21.661 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  6097. 2017-08-01 10:55:21.661 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6098. 2017-08-01 10:55:21.679 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6099. 2017-08-01 10:55:21.680 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6100. 2017-08-01 10:55:21.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6101. 2017-08-01 10:55:21.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6102. 2017-08-01 10:55:21.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6103. 2017-08-01 10:55:21.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6104. 2017-08-01 10:55:21.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6105. 2017-08-01 10:55:21.779 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6106. 2017-08-01 10:55:21.781 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  6107. 2017-08-01 10:55:21.781 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  6108. 2017-08-01 10:55:21.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6109. 2017-08-01 10:55:21.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6110. 2017-08-01 10:55:21.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6111. 2017-08-01 10:55:21.923 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6112. 2017-08-01 10:55:21.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6113. 2017-08-01 10:55:38.029 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6114. 2017-08-01 10:55:38.060 |-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= ?
  6115. 2017-08-01 10:55:38.062 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6116. 2017-08-01 10:55:38.090 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6117. 2017-08-01 10:55:38.091 |-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
  6118. 2017-08-01 10:55:38.091 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6119. 2017-08-01 10:55:38.136 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6120. 2017-08-01 10:55:38.137 |-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=?)
  6121. 2017-08-01 10:55:38.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6122. 2017-08-01 10:55:38.171 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6123. 2017-08-01 10:55:38.215 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6124. 2017-08-01 10:55:38.216 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6125. 2017-08-01 10:55:38.218 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  6126. 2017-08-01 10:55:38.218 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  6127. 2017-08-01 10:55:38.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  6128. 2017-08-01 10:55:38.289 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6129. 2017-08-01 10:55:38.293 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6130. 2017-08-01 10:55:38.318 |-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= ?
  6131. 2017-08-01 10:55:38.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6132. 2017-08-01 10:55:38.323 |-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= ?
  6133. 2017-08-01 10:55:38.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6134. 2017-08-01 10:55:38.350 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6135. 2017-08-01 10:55:38.351 |-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
  6136. 2017-08-01 10:55:38.351 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6137. 2017-08-01 10:55:38.360 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6138. 2017-08-01 10:55:38.361 |-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
  6139. 2017-08-01 10:55:38.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6140. 2017-08-01 10:55:38.396 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6141. 2017-08-01 10:55:38.397 |-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=?)
  6142. 2017-08-01 10:55:38.397 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6143. 2017-08-01 10:55:38.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6144. 2017-08-01 10:55:38.403 |-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=?)
  6145. 2017-08-01 10:55:38.404 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6146. 2017-08-01 10:55:38.427 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6147. 2017-08-01 10:55:38.429 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6148. 2017-08-01 10:55:38.473 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6149. 2017-08-01 10:55:38.473 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6150. 2017-08-01 10:55:38.474 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6151. 2017-08-01 10:55:38.474 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6152. 2017-08-01 10:55:38.478 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  6153. 2017-08-01 10:55:38.478 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  6154. 2017-08-01 10:55:38.479 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  6155. 2017-08-01 10:55:38.479 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  6156. 2017-08-01 10:55:38.512 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  6157. 2017-08-01 10:55:38.520 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  6158. 2017-08-01 10:55:40.599 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6159. 2017-08-01 10:55:40.632 |-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= ?
  6160. 2017-08-01 10:55:40.632 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6161. 2017-08-01 10:55:40.659 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6162. 2017-08-01 10:55:40.660 |-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
  6163. 2017-08-01 10:55:40.661 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6164. 2017-08-01 10:55:40.691 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6165. 2017-08-01 10:55:40.692 |-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=?)
  6166. 2017-08-01 10:55:40.692 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6167. 2017-08-01 10:55:40.718 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6168. 2017-08-01 10:55:40.764 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6169. 2017-08-01 10:55:40.765 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6170. 2017-08-01 10:55:40.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  6171. 2017-08-01 10:55:40.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6172. 2017-08-01 10:55:40.795 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6173. 2017-08-01 10:55:40.883 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6174. 2017-08-01 10:55:40.886 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6175. 2017-08-01 10:55:40.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= ?
  6176. 2017-08-01 10:55:40.916 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6177. 2017-08-01 10:55:40.916 |-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= ?
  6178. 2017-08-01 10:55:40.916 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6179. 2017-08-01 10:55:40.945 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6180. 2017-08-01 10:55:40.945 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6181. 2017-08-01 10:55:40.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
  6182. 2017-08-01 10:55:40.946 |-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
  6183. 2017-08-01 10:55:40.946 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6184. 2017-08-01 10:55:40.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6185. 2017-08-01 10:55:40.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6186. 2017-08-01 10:55:40.978 |-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=?)
  6187. 2017-08-01 10:55:40.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6188. 2017-08-01 10:55:40.992 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6189. 2017-08-01 10:55:40.993 |-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=?)
  6190. 2017-08-01 10:55:40.993 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6191. 2017-08-01 10:55:41.004 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6192. 2017-08-01 10:55:41.021 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6193. 2017-08-01 10:55:41.047 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6194. 2017-08-01 10:55:41.048 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6195. 2017-08-01 10:55:41.055 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  6196. 2017-08-01 10:55:41.055 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6197. 2017-08-01 10:55:41.066 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6198. 2017-08-01 10:55:41.067 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6199. 2017-08-01 10:55:41.069 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6200. 2017-08-01 10:55:41.069 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6201. 2017-08-01 10:55:41.157 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6202. 2017-08-01 10:55:41.158 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6203. 2017-08-01 10:55:41.158 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6204. 2017-08-01 10:55:41.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6205. 2017-08-01 10:55:41.181 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  6206. 2017-08-01 10:55:41.181 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  6207. 2017-08-01 10:55:41.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6208. 2017-08-01 10:55:41.249 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6209. 2017-08-01 10:55:41.249 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6210. 2017-08-01 10:55:41.300 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6211. 2017-08-01 10:55:41.331 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6212. 2017-08-01 11:09:04.283 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6213. 2017-08-01 11:09:04.283 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6214. 2017-08-01 11:09:04.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= ?
  6215. 2017-08-01 11:09:04.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= ?
  6216. 2017-08-01 11:09:04.437 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6217. 2017-08-01 11:09:04.437 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6218. 2017-08-01 11:09:04.468 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6219. 2017-08-01 11:09:04.468 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6220. 2017-08-01 11:09:04.494 |-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
  6221. 2017-08-01 11:09:04.494 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6222. 2017-08-01 11:09:04.498 |-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
  6223. 2017-08-01 11:09:04.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6224. 2017-08-01 11:09:04.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6225. 2017-08-01 11:09:04.525 |-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=?)
  6226. 2017-08-01 11:09:04.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6227. 2017-08-01 11:09:04.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6228. 2017-08-01 11:09:04.546 |-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=?)
  6229. 2017-08-01 11:09:04.546 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6230. 2017-08-01 11:09:04.551 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6231. 2017-08-01 11:09:04.576 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6232. 2017-08-01 11:09:04.598 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6233. 2017-08-01 11:09:04.599 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6234. 2017-08-01 11:09:04.621 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6235. 2017-08-01 11:09:04.623 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6236. 2017-08-01 11:09:04.659 |-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
  6237. 2017-08-01 11:09:04.659 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6238. 2017-08-01 11:09:04.692 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  6239. 2017-08-01 11:09:04.693 |-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
  6240. 2017-08-01 11:09:04.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6241. 2017-08-01 11:09:04.743 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6242. 2017-08-01 11:09:04.786 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6243. 2017-08-01 11:09:04.786 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6244. 2017-08-01 11:09:04.821 |-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= ?
  6245. 2017-08-01 11:09:04.821 |-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= ?
  6246. 2017-08-01 11:09:04.821 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6247. 2017-08-01 11:09:04.821 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6248. 2017-08-01 11:09:04.849 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6249. 2017-08-01 11:09:04.850 |-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
  6250. 2017-08-01 11:09:04.851 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6251. 2017-08-01 11:09:04.851 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6252. 2017-08-01 11:09:04.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
  6253. 2017-08-01 11:09:04.852 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6254. 2017-08-01 11:09:04.883 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6255. 2017-08-01 11:09:04.884 |-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=?)
  6256. 2017-08-01 11:09:04.884 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6257. 2017-08-01 11:09:04.899 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6258. 2017-08-01 11:09:04.900 |-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=?)
  6259. 2017-08-01 11:09:04.900 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6260. 2017-08-01 11:09:04.910 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6261. 2017-08-01 11:09:04.933 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6262. 2017-08-01 11:09:04.957 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6263. 2017-08-01 11:09:04.958 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6264. 2017-08-01 11:09:04.959 |-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
  6265. 2017-08-01 11:09:04.960 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6266. 2017-08-01 11:09:04.979 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6267. 2017-08-01 11:09:04.980 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6268. 2017-08-01 11:09:04.981 |-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
  6269. 2017-08-01 11:09:04.981 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6270. 2017-08-01 11:09:04.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6271. 2017-08-01 11:09:05.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6272. 2017-08-01 11:09:05.017 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6273. 2017-08-01 11:09:05.049 |-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= ?
  6274. 2017-08-01 11:09:05.049 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6275. 2017-08-01 11:09:05.078 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6276. 2017-08-01 11:09:05.079 |-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
  6277. 2017-08-01 11:09:05.079 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6278. 2017-08-01 11:09:05.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6279. 2017-08-01 11:09:05.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=?)
  6280. 2017-08-01 11:09:05.129 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6281. 2017-08-01 11:09:05.158 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6282. 2017-08-01 11:09:05.204 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6283. 2017-08-01 11:09:05.205 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6284. 2017-08-01 11:09:05.210 |-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
  6285. 2017-08-01 11:09:05.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6286. 2017-08-01 11:09:05.318 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  6287. 2017-08-01 11:09:05.347 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6288. 2017-08-01 11:09:05.380 |-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= ?
  6289. 2017-08-01 11:09:05.381 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6290. 2017-08-01 11:09:05.408 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6291. 2017-08-01 11:09:05.408 |-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
  6292. 2017-08-01 11:09:05.409 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6293. 2017-08-01 11:09:05.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6294. 2017-08-01 11:09:05.458 |-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=?)
  6295. 2017-08-01 11:09:05.459 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6296. 2017-08-01 11:09:05.502 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6297. 2017-08-01 11:09:05.548 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6298. 2017-08-01 11:09:05.550 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6299. 2017-08-01 11:09:05.554 |-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=?
  6300. 2017-08-01 11:09:05.555 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6301. 2017-08-01 11:09:05.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  6302. 2017-08-01 11:09:05.651 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6303. 2017-08-01 11:09:05.684 |-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= ?
  6304. 2017-08-01 11:09:05.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6305. 2017-08-01 11:09:05.710 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6306. 2017-08-01 11:09:05.711 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6307. 2017-08-01 11:09:05.712 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6308. 2017-08-01 11:09:05.762 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6309. 2017-08-01 11:09:05.762 |-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=?)
  6310. 2017-08-01 11:09:05.763 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6311. 2017-08-01 11:09:05.795 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6312. 2017-08-01 11:09:05.840 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6313. 2017-08-01 11:09:05.841 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6314. 2017-08-01 11:09:05.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  6315. 2017-08-01 11:09:05.843 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6316. 2017-08-01 11:09:05.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6317. 2017-08-01 11:09:45.427 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6318. 2017-08-01 11:09:45.427 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6319. 2017-08-01 11:09:45.460 |-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= ?
  6320. 2017-08-01 11:09:45.461 |-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= ?
  6321. 2017-08-01 11:09:45.461 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6322. 2017-08-01 11:09:45.462 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6323. 2017-08-01 11:09:45.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6324. 2017-08-01 11:09:45.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
  6325. 2017-08-01 11:09:45.493 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6326. 2017-08-01 11:09:45.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6327. 2017-08-01 11:09:45.496 |-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
  6328. 2017-08-01 11:09:45.496 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6329. 2017-08-01 11:09:45.534 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6330. 2017-08-01 11:09:45.535 |-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=?)
  6331. 2017-08-01 11:09:45.535 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6332. 2017-08-01 11:09:45.539 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6333. 2017-08-01 11:09:45.539 |-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=?)
  6334. 2017-08-01 11:09:45.540 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6335. 2017-08-01 11:09:45.568 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6336. 2017-08-01 11:09:45.570 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6337. 2017-08-01 11:09:45.615 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6338. 2017-08-01 11:09:45.617 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6339. 2017-08-01 11:09:45.621 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6340. 2017-08-01 11:09:45.622 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6341. 2017-08-01 11:09:45.656 |-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
  6342. 2017-08-01 11:09:45.656 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6343. 2017-08-01 11:09:45.688 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  6344. 2017-08-01 11:09:45.689 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6345. 2017-08-01 11:09:45.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6346. 2017-08-01 11:09:45.719 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6347. 2017-08-01 11:09:45.758 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6348. 2017-08-01 11:09:45.758 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6349. 2017-08-01 11:09:45.790 |-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= ?
  6350. 2017-08-01 11:09:45.791 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6351. 2017-08-01 11:09:45.792 |-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= ?
  6352. 2017-08-01 11:09:45.792 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6353. 2017-08-01 11:09:45.822 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6354. 2017-08-01 11:09:45.822 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6355. 2017-08-01 11:09:45.823 |-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
  6356. 2017-08-01 11:09:45.823 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6357. 2017-08-01 11:09:45.823 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6358. 2017-08-01 11:09:45.824 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6359. 2017-08-01 11:09:45.855 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6360. 2017-08-01 11:09:45.856 |-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=?)
  6361. 2017-08-01 11:09:45.856 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6362. 2017-08-01 11:09:45.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6363. 2017-08-01 11:09:45.880 |-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=?)
  6364. 2017-08-01 11:09:45.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6365. 2017-08-01 11:09:45.881 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6366. 2017-08-01 11:09:45.910 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6367. 2017-08-01 11:09:45.928 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6368. 2017-08-01 11:09:45.929 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6369. 2017-08-01 11:09:45.931 |-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
  6370. 2017-08-01 11:09:45.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6371. 2017-08-01 11:09:45.957 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6372. 2017-08-01 11:09:45.959 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6373. 2017-08-01 11:09:45.960 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6374. 2017-08-01 11:09:45.961 |-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
  6375. 2017-08-01 11:09:45.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6376. 2017-08-01 11:09:46.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  6377. 2017-08-01 11:09:46.009 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6378. 2017-08-01 11:09:46.055 |-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= ?
  6379. 2017-08-01 11:09:46.055 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6380. 2017-08-01 11:09:46.094 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6381. 2017-08-01 11:09:46.095 |-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
  6382. 2017-08-01 11:09:46.095 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6383. 2017-08-01 11:09:46.141 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6384. 2017-08-01 11:09:46.142 |-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=?)
  6385. 2017-08-01 11:09:46.142 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6386. 2017-08-01 11:09:46.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6387. 2017-08-01 11:09:46.228 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6388. 2017-08-01 11:09:46.229 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6389. 2017-08-01 11:09:46.234 |-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
  6390. 2017-08-01 11:09:46.234 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6391. 2017-08-01 11:09:46.338 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  6392. 2017-08-01 11:09:46.367 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6393. 2017-08-01 11:09:46.399 |-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= ?
  6394. 2017-08-01 11:09:46.400 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6395. 2017-08-01 11:09:46.428 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6396. 2017-08-01 11:09:46.429 |-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
  6397. 2017-08-01 11:09:46.429 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6398. 2017-08-01 11:09:46.476 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6399. 2017-08-01 11:09:46.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=?)
  6400. 2017-08-01 11:09:46.478 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6401. 2017-08-01 11:09:46.508 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6402. 2017-08-01 11:09:46.556 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6403. 2017-08-01 11:09:46.557 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6404. 2017-08-01 11:09:46.561 |-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=?
  6405. 2017-08-01 11:09:46.561 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6406. 2017-08-01 11:09:46.590 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  6407. 2017-08-01 11:09:46.656 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6408. 2017-08-01 11:09:46.686 |-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= ?
  6409. 2017-08-01 11:09:46.687 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6410. 2017-08-01 11:09:46.714 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6411. 2017-08-01 11:09:46.715 |-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
  6412. 2017-08-01 11:09:46.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6413. 2017-08-01 11:09:46.762 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6414. 2017-08-01 11:09:46.763 |-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=?)
  6415. 2017-08-01 11:09:46.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6416. 2017-08-01 11:09:46.792 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6417. 2017-08-01 11:09:46.841 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6418. 2017-08-01 11:09:46.843 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6419. 2017-08-01 11:09:46.844 |-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
  6420. 2017-08-01 11:09:46.845 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6421. 2017-08-01 11:09:46.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6422. 2017-08-01 11:09:46.979 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6423. 2017-08-01 11:09:46.979 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6424. 2017-08-01 11:09:47.011 |-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= ?
  6425. 2017-08-01 11:09:47.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6426. 2017-08-01 11:09:47.012 |-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= ?
  6427. 2017-08-01 11:09:47.013 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6428. 2017-08-01 11:09:47.046 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6429. 2017-08-01 11:09:47.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6430. 2017-08-01 11:09:47.047 |-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
  6431. 2017-08-01 11:09:47.047 |-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
  6432. 2017-08-01 11:09:47.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6433. 2017-08-01 11:09:47.047 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6434. 2017-08-01 11:09:47.080 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6435. 2017-08-01 11:09:47.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=?)
  6436. 2017-08-01 11:09:47.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6437. 2017-08-01 11:09:47.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6438. 2017-08-01 11:09:47.096 |-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=?)
  6439. 2017-08-01 11:09:47.097 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6440. 2017-08-01 11:09:47.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6441. 2017-08-01 11:09:47.125 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6442. 2017-08-01 11:09:47.157 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6443. 2017-08-01 11:09:47.158 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6444. 2017-08-01 11:09:47.160 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6445. 2017-08-01 11:09:47.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6446. 2017-08-01 11:09:47.175 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6447. 2017-08-01 11:09:47.177 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6448. 2017-08-01 11:09:47.185 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  6449. 2017-08-01 11:09:47.185 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6450. 2017-08-01 11:09:47.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6451. 2017-08-01 11:09:47.253 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6452. 2017-08-01 11:09:47.254 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6453. 2017-08-01 11:09:47.301 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6454. 2017-08-01 11:09:47.304 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  6455. 2017-08-01 11:09:47.304 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  6456. 2017-08-01 11:09:47.338 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6457. 2017-08-01 11:09:47.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6458. 2017-08-01 11:09:47.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6459. 2017-08-01 11:09:47.432 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6460. 2017-08-01 11:09:47.440 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6461. 2017-08-01 11:09:49.596 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6462. 2017-08-01 11:09:49.628 |-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= ?
  6463. 2017-08-01 11:09:49.628 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6464. 2017-08-01 11:09:49.667 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6465. 2017-08-01 11:09:49.668 |-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
  6466. 2017-08-01 11:09:49.668 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6467. 2017-08-01 11:09:49.697 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6468. 2017-08-01 11:09:49.698 |-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=?)
  6469. 2017-08-01 11:09:49.698 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6470. 2017-08-01 11:09:49.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6471. 2017-08-01 11:09:49.776 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6472. 2017-08-01 11:09:49.777 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6473. 2017-08-01 11:09:49.779 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  6474. 2017-08-01 11:09:49.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14384(Long)
  6475. 2017-08-01 11:09:49.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  6476. 2017-08-01 11:09:49.848 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6477. 2017-08-01 11:09:49.851 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6478. 2017-08-01 11:09:49.883 |-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= ?
  6479. 2017-08-01 11:09:49.884 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6480. 2017-08-01 11:09:49.885 |-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= ?
  6481. 2017-08-01 11:09:49.885 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6482. 2017-08-01 11:09:49.919 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6483. 2017-08-01 11:09:49.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6484. 2017-08-01 11:09:49.920 |-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
  6485. 2017-08-01 11:09:49.920 |-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
  6486. 2017-08-01 11:09:49.920 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6487. 2017-08-01 11:09:49.920 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6488. 2017-08-01 11:09:49.950 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6489. 2017-08-01 11:09:49.951 |-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=?)
  6490. 2017-08-01 11:09:49.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6491. 2017-08-01 11:09:49.968 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6492. 2017-08-01 11:09:49.969 |-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=?)
  6493. 2017-08-01 11:09:49.969 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6494. 2017-08-01 11:09:49.979 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6495. 2017-08-01 11:09:49.998 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6496. 2017-08-01 11:09:50.026 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6497. 2017-08-01 11:09:50.027 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6498. 2017-08-01 11:09:50.030 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  6499. 2017-08-01 11:09:50.030 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14384(Long)
  6500. 2017-08-01 11:09:50.043 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6501. 2017-08-01 11:09:50.044 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6502. 2017-08-01 11:09:50.049 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  6503. 2017-08-01 11:09:50.049 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14384(Long)
  6504. 2017-08-01 11:09:50.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  6505. 2017-08-01 11:09:50.079 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  6506. 2017-08-01 11:09:51.421 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6507. 2017-08-01 11:09:51.486 |-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= ?
  6508. 2017-08-01 11:09:51.487 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6509. 2017-08-01 11:09:51.535 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6510. 2017-08-01 11:09:51.536 |-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
  6511. 2017-08-01 11:09:51.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6512. 2017-08-01 11:09:51.601 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6513. 2017-08-01 11:09:51.601 |-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=?)
  6514. 2017-08-01 11:09:51.602 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6515. 2017-08-01 11:09:51.662 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6516. 2017-08-01 11:09:51.720 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6517. 2017-08-01 11:09:51.722 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6518. 2017-08-01 11:09:51.723 |-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
  6519. 2017-08-01 11:09:51.724 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6520. 2017-08-01 11:09:51.757 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6521. 2017-08-01 11:09:51.856 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6522. 2017-08-01 11:09:51.857 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6523. 2017-08-01 11:09:51.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= ?
  6524. 2017-08-01 11:09:51.889 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6525. 2017-08-01 11:09:51.889 |-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= ?
  6526. 2017-08-01 11:09:51.889 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6527. 2017-08-01 11:09:51.916 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6528. 2017-08-01 11:09:51.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
  6529. 2017-08-01 11:09:51.917 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6530. 2017-08-01 11:09:51.917 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6531. 2017-08-01 11:09:51.918 |-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
  6532. 2017-08-01 11:09:51.918 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6533. 2017-08-01 11:09:51.957 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6534. 2017-08-01 11:09:51.958 |-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=?)
  6535. 2017-08-01 11:09:51.958 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6536. 2017-08-01 11:09:51.967 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6537. 2017-08-01 11:09:51.968 |-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=?)
  6538. 2017-08-01 11:09:51.968 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6539. 2017-08-01 11:09:51.985 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6540. 2017-08-01 11:09:51.999 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6541. 2017-08-01 11:09:52.032 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6542. 2017-08-01 11:09:52.033 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6543. 2017-08-01 11:09:52.039 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6544. 2017-08-01 11:09:52.040 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6545. 2017-08-01 11:09:52.044 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6546. 2017-08-01 11:09:52.045 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6547. 2017-08-01 11:09:52.047 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6548. 2017-08-01 11:09:52.048 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6549. 2017-08-01 11:09:52.140 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6550. 2017-08-01 11:09:52.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6551. 2017-08-01 11:09:52.142 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6552. 2017-08-01 11:09:52.222 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6553. 2017-08-01 11:09:52.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6554. 2017-08-01 11:09:52.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6555. 2017-08-01 11:09:52.230 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6556. 2017-08-01 11:09:52.233 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6557. 2017-08-01 11:09:52.233 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  6558. 2017-08-01 11:09:52.314 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6559. 2017-08-01 11:09:52.420 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6560. 2017-08-01 11:09:58.819 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6561. 2017-08-01 11:09:58.858 |-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= ?
  6562. 2017-08-01 11:09:58.859 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6563. 2017-08-01 11:09:58.894 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6564. 2017-08-01 11:09:58.895 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6565. 2017-08-01 11:09:58.895 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6566. 2017-08-01 11:09:58.942 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6567. 2017-08-01 11:09:58.943 |-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=?)
  6568. 2017-08-01 11:09:58.943 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6569. 2017-08-01 11:09:58.972 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6570. 2017-08-01 11:09:59.018 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6571. 2017-08-01 11:09:59.019 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6572. 2017-08-01 11:09:59.027 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6573. 2017-08-01 11:09:59.028 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6574. 2017-08-01 11:09:59.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6575. 2017-08-01 11:09:59.212 |-DEBUG [http-nio-8089-exec-9] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6576. 2017-08-01 11:09:59.212 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6577. 2017-08-01 11:09:59.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6578. 2017-08-01 11:10:02.404 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6579. 2017-08-01 11:10:02.444 |-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= ?
  6580. 2017-08-01 11:10:02.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6581. 2017-08-01 11:10:02.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6582. 2017-08-01 11:10:02.485 |-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
  6583. 2017-08-01 11:10:02.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6584. 2017-08-01 11:10:02.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6585. 2017-08-01 11:10:02.532 |-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=?)
  6586. 2017-08-01 11:10:02.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6587. 2017-08-01 11:10:02.561 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6588. 2017-08-01 11:10:02.639 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6589. 2017-08-01 11:10:02.640 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6590. 2017-08-01 11:10:02.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  6591. 2017-08-01 11:10:02.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14630(Long)
  6592. 2017-08-01 11:10:02.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  6593. 2017-08-01 11:10:02.704 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6594. 2017-08-01 11:10:02.706 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6595. 2017-08-01 11:10:02.738 |-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= ?
  6596. 2017-08-01 11:10:02.738 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6597. 2017-08-01 11:10:02.752 |-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= ?
  6598. 2017-08-01 11:10:02.753 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6599. 2017-08-01 11:10:02.771 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6600. 2017-08-01 11:10:02.773 |-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
  6601. 2017-08-01 11:10:02.773 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6602. 2017-08-01 11:10:02.781 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6603. 2017-08-01 11:10:02.782 |-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
  6604. 2017-08-01 11:10:02.783 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6605. 2017-08-01 11:10:02.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6606. 2017-08-01 11:10:02.819 |-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=?)
  6607. 2017-08-01 11:10:02.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6608. 2017-08-01 11:10:02.829 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6609. 2017-08-01 11:10:02.830 |-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=?)
  6610. 2017-08-01 11:10:02.830 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6611. 2017-08-01 11:10:02.847 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6612. 2017-08-01 11:10:02.867 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6613. 2017-08-01 11:10:02.896 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6614. 2017-08-01 11:10:02.898 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6615. 2017-08-01 11:10:02.902 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  6616. 2017-08-01 11:10:02.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14630(Long)
  6617. 2017-08-01 11:10:02.915 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6618. 2017-08-01 11:10:02.916 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6619. 2017-08-01 11:10:02.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  6620. 2017-08-01 11:10:02.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14630(Long)
  6621. 2017-08-01 11:10:02.932 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 2
  6622. 2017-08-01 11:10:02.963 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  6623. 2017-08-01 11:10:04.407 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6624. 2017-08-01 11:10:04.457 |-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= ?
  6625. 2017-08-01 11:10:04.458 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6626. 2017-08-01 11:10:04.498 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6627. 2017-08-01 11:10:04.499 |-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
  6628. 2017-08-01 11:10:04.499 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6629. 2017-08-01 11:10:04.568 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6630. 2017-08-01 11:10:04.569 |-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=?)
  6631. 2017-08-01 11:10:04.569 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6632. 2017-08-01 11:10:04.616 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6633. 2017-08-01 11:10:04.671 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6634. 2017-08-01 11:10:04.672 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6635. 2017-08-01 11:10:04.673 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  6636. 2017-08-01 11:10:04.673 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6637. 2017-08-01 11:10:04.703 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6638. 2017-08-01 11:10:04.770 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6639. 2017-08-01 11:10:04.770 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6640. 2017-08-01 11:10:04.803 |-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= ?
  6641. 2017-08-01 11:10:04.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6642. 2017-08-01 11:10:04.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6643. 2017-08-01 11:10:04.842 |-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
  6644. 2017-08-01 11:10:04.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6645. 2017-08-01 11:10:04.873 |-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= ?
  6646. 2017-08-01 11:10:04.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6647. 2017-08-01 11:10:04.893 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6648. 2017-08-01 11:10:04.894 |-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=?)
  6649. 2017-08-01 11:10:04.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6650. 2017-08-01 11:10:04.904 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6651. 2017-08-01 11:10:04.905 |-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
  6652. 2017-08-01 11:10:04.906 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6653. 2017-08-01 11:10:04.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6654. 2017-08-01 11:10:04.965 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6655. 2017-08-01 11:10:04.966 |-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=?)
  6656. 2017-08-01 11:10:04.967 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6657. 2017-08-01 11:10:04.987 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6658. 2017-08-01 11:10:04.988 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6659. 2017-08-01 11:10:04.996 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6660. 2017-08-01 11:10:04.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6661. 2017-08-01 11:10:05.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6662. 2017-08-01 11:10:05.094 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6663. 2017-08-01 11:10:05.095 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6664. 2017-08-01 11:10:05.098 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6665. 2017-08-01 11:10:05.098 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6666. 2017-08-01 11:10:05.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6667. 2017-08-01 11:10:05.201 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6668. 2017-08-01 11:10:05.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6669. 2017-08-01 11:10:05.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6670. 2017-08-01 11:10:05.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6671. 2017-08-01 11:10:05.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6672. 2017-08-01 11:10:05.314 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6673. 2017-08-01 11:10:05.316 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6674. 2017-08-01 11:10:05.316 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6675. 2017-08-01 11:10:05.409 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6676. 2017-08-01 11:10:05.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6677. 2017-08-01 11:10:13.587 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6678. 2017-08-01 11:10:13.587 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6679. 2017-08-01 11:10:13.618 |-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= ?
  6680. 2017-08-01 11:10:13.619 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6681. 2017-08-01 11:10:13.619 |-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= ?
  6682. 2017-08-01 11:10:13.620 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6683. 2017-08-01 11:10:13.648 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6684. 2017-08-01 11:10:13.649 |-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
  6685. 2017-08-01 11:10:13.649 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6686. 2017-08-01 11:10:13.650 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6687. 2017-08-01 11:10:13.650 |-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
  6688. 2017-08-01 11:10:13.651 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6689. 2017-08-01 11:10:13.691 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6690. 2017-08-01 11:10:13.692 |-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=?)
  6691. 2017-08-01 11:10:13.692 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6692. 2017-08-01 11:10:13.697 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6693. 2017-08-01 11:10:13.698 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6694. 2017-08-01 11:10:13.698 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6695. 2017-08-01 11:10:13.719 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6696. 2017-08-01 11:10:13.727 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6697. 2017-08-01 11:10:13.766 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6698. 2017-08-01 11:10:13.768 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6699. 2017-08-01 11:10:13.774 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6700. 2017-08-01 11:10:13.775 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6701. 2017-08-01 11:10:13.775 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  6702. 2017-08-01 11:10:13.776 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6703. 2017-08-01 11:10:13.777 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6704. 2017-08-01 11:10:13.777 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6705. 2017-08-01 11:10:13.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6706. 2017-08-01 11:10:13.872 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6707. 2017-08-01 11:10:13.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6708. 2017-08-01 11:10:13.904 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6709. 2017-08-01 11:10:13.906 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  6710. 2017-08-01 11:10:13.906 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6711. 2017-08-01 11:10:13.967 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6712. 2017-08-01 11:10:13.968 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6713. 2017-08-01 11:10:13.969 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6714. 2017-08-01 11:10:14.033 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 8
  6715. 2017-08-01 11:10:14.051 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6716. 2017-08-01 11:10:19.058 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6717. 2017-08-01 11:10:19.090 |-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= ?
  6718. 2017-08-01 11:10:19.091 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6719. 2017-08-01 11:10:19.121 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6720. 2017-08-01 11:10:19.122 |-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
  6721. 2017-08-01 11:10:19.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6722. 2017-08-01 11:10:19.165 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6723. 2017-08-01 11:10:19.166 |-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=?)
  6724. 2017-08-01 11:10:19.167 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6725. 2017-08-01 11:10:19.192 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6726. 2017-08-01 11:10:19.240 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6727. 2017-08-01 11:10:19.241 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6728. 2017-08-01 11:10:19.243 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  6729. 2017-08-01 11:10:19.244 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14635(Long)
  6730. 2017-08-01 11:10:19.270 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  6731. 2017-08-01 11:10:19.305 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6732. 2017-08-01 11:10:19.305 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6733. 2017-08-01 11:10:19.336 |-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= ?
  6734. 2017-08-01 11:10:19.336 |-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= ?
  6735. 2017-08-01 11:10:19.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6736. 2017-08-01 11:10:19.337 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6737. 2017-08-01 11:10:19.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6738. 2017-08-01 11:10:19.366 |-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
  6739. 2017-08-01 11:10:19.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6740. 2017-08-01 11:10:19.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6741. 2017-08-01 11:10:19.367 |-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
  6742. 2017-08-01 11:10:19.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6743. 2017-08-01 11:10:19.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6744. 2017-08-01 11:10:19.407 |-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=?)
  6745. 2017-08-01 11:10:19.408 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6746. 2017-08-01 11:10:19.414 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6747. 2017-08-01 11:10:19.415 |-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=?)
  6748. 2017-08-01 11:10:19.415 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6749. 2017-08-01 11:10:19.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6750. 2017-08-01 11:10:19.444 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6751. 2017-08-01 11:10:19.479 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6752. 2017-08-01 11:10:19.480 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6753. 2017-08-01 11:10:19.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  6754. 2017-08-01 11:10:19.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14635(Long)
  6755. 2017-08-01 11:10:19.490 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6756. 2017-08-01 11:10:19.491 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6757. 2017-08-01 11:10:19.494 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  6758. 2017-08-01 11:10:19.494 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14635(Long)
  6759. 2017-08-01 11:10:19.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  6760. 2017-08-01 11:10:19.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 5
  6761. 2017-08-01 11:10:21.464 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6762. 2017-08-01 11:10:21.496 |-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= ?
  6763. 2017-08-01 11:10:21.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6764. 2017-08-01 11:10:21.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6765. 2017-08-01 11:10:21.533 |-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
  6766. 2017-08-01 11:10:21.533 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6767. 2017-08-01 11:10:21.576 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6768. 2017-08-01 11:10:21.577 |-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=?)
  6769. 2017-08-01 11:10:21.577 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6770. 2017-08-01 11:10:21.602 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6771. 2017-08-01 11:10:21.650 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6772. 2017-08-01 11:10:21.651 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6773. 2017-08-01 11:10:21.652 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  6774. 2017-08-01 11:10:21.652 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  6775. 2017-08-01 11:10:21.682 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  6776. 2017-08-01 11:10:21.764 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6777. 2017-08-01 11:10:21.764 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6778. 2017-08-01 11:10:21.797 |-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= ?
  6779. 2017-08-01 11:10:21.798 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6780. 2017-08-01 11:10:21.798 |-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= ?
  6781. 2017-08-01 11:10:21.799 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6782. 2017-08-01 11:10:21.828 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6783. 2017-08-01 11:10:21.829 |-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
  6784. 2017-08-01 11:10:21.829 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6785. 2017-08-01 11:10:21.830 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6786. 2017-08-01 11:10:21.831 |-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
  6787. 2017-08-01 11:10:21.831 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6788. 2017-08-01 11:10:21.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6789. 2017-08-01 11:10:21.878 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6790. 2017-08-01 11:10:21.879 |-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=?)
  6791. 2017-08-01 11:10:21.879 |-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=?)
  6792. 2017-08-01 11:10:21.879 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6793. 2017-08-01 11:10:21.880 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6794. 2017-08-01 11:10:21.909 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6795. 2017-08-01 11:10:21.912 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6796. 2017-08-01 11:10:21.958 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6797. 2017-08-01 11:10:21.960 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6798. 2017-08-01 11:10:21.964 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6799. 2017-08-01 11:10:21.965 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6800. 2017-08-01 11:10:21.966 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6801. 2017-08-01 11:10:21.967 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6802. 2017-08-01 11:10:21.967 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6803. 2017-08-01 11:10:21.968 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6804. 2017-08-01 11:10:22.061 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6805. 2017-08-01 11:10:22.062 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6806. 2017-08-01 11:10:22.063 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6807. 2017-08-01 11:10:22.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6808. 2017-08-01 11:10:22.144 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6809. 2017-08-01 11:10:22.145 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6810. 2017-08-01 11:10:22.158 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6811. 2017-08-01 11:10:22.161 |-DEBUG [http-nio-8089-exec-7] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6812. 2017-08-01 11:10:22.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6813. 2017-08-01 11:10:22.239 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6814. 2017-08-01 11:10:22.347 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6815. 2017-08-01 11:10:25.215 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6816. 2017-08-01 11:10:25.215 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6817. 2017-08-01 11:10:25.247 |-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= ?
  6818. 2017-08-01 11:10:25.248 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6819. 2017-08-01 11:10:25.273 |-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= ?
  6820. 2017-08-01 11:10:25.273 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6821. 2017-08-01 11:10:25.292 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6822. 2017-08-01 11:10:25.293 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6823. 2017-08-01 11:10:25.294 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6824. 2017-08-01 11:10:25.312 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6825. 2017-08-01 11:10:25.313 |-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
  6826. 2017-08-01 11:10:25.313 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6827. 2017-08-01 11:10:25.340 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6828. 2017-08-01 11:10:25.341 |-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=?)
  6829. 2017-08-01 11:10:25.341 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6830. 2017-08-01 11:10:25.370 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6831. 2017-08-01 11:10:25.388 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6832. 2017-08-01 11:10:25.389 |-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=?)
  6833. 2017-08-01 11:10:25.389 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6834. 2017-08-01 11:10:25.422 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6835. 2017-08-01 11:10:25.423 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6836. 2017-08-01 11:10:25.424 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6837. 2017-08-01 11:10:25.426 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6838. 2017-08-01 11:10:25.426 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6839. 2017-08-01 11:10:25.468 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6840. 2017-08-01 11:10:25.469 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6841. 2017-08-01 11:10:25.477 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6842. 2017-08-01 11:10:25.477 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6843. 2017-08-01 11:10:25.513 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6844. 2017-08-01 11:10:25.514 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6845. 2017-08-01 11:10:25.514 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6846. 2017-08-01 11:10:25.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6847. 2017-08-01 11:10:25.615 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6848. 2017-08-01 11:10:25.615 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6849. 2017-08-01 11:10:25.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6850. 2017-08-01 11:10:25.659 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6851. 2017-08-01 11:10:25.660 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6852. 2017-08-01 11:10:25.698 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6853. 2017-08-01 11:10:25.838 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6854. 2017-08-01 11:10:26.623 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6855. 2017-08-01 11:10:26.623 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6856. 2017-08-01 11:10:26.658 |-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= ?
  6857. 2017-08-01 11:10:26.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6858. 2017-08-01 11:10:26.669 |-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= ?
  6859. 2017-08-01 11:10:26.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6860. 2017-08-01 11:10:26.689 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6861. 2017-08-01 11:10:26.690 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6862. 2017-08-01 11:10:26.690 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6863. 2017-08-01 11:10:26.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6864. 2017-08-01 11:10:26.698 |-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
  6865. 2017-08-01 11:10:26.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6866. 2017-08-01 11:10:26.729 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6867. 2017-08-01 11:10:26.730 |-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=?)
  6868. 2017-08-01 11:10:26.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6869. 2017-08-01 11:10:26.738 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6870. 2017-08-01 11:10:26.739 |-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=?)
  6871. 2017-08-01 11:10:26.739 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6872. 2017-08-01 11:10:26.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6873. 2017-08-01 11:10:26.768 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6874. 2017-08-01 11:10:26.802 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6875. 2017-08-01 11:10:26.803 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6876. 2017-08-01 11:10:26.811 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6877. 2017-08-01 11:10:26.811 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6878. 2017-08-01 11:10:26.815 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6879. 2017-08-01 11:10:26.816 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6880. 2017-08-01 11:10:26.818 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6881. 2017-08-01 11:10:26.818 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6882. 2017-08-01 11:10:26.913 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6883. 2017-08-01 11:10:26.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6884. 2017-08-01 11:10:26.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6885. 2017-08-01 11:10:27.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6886. 2017-08-01 11:10:27.007 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6887. 2017-08-01 11:10:27.007 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6888. 2017-08-01 11:10:27.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6889. 2017-08-01 11:10:27.014 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6890. 2017-08-01 11:10:27.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6891. 2017-08-01 11:10:27.101 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6892. 2017-08-01 11:10:27.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6893. 2017-08-01 11:10:27.845 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6894. 2017-08-01 11:10:27.845 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6895. 2017-08-01 11:10:27.879 |-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= ?
  6896. 2017-08-01 11:10:27.879 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6897. 2017-08-01 11:10:27.880 |-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= ?
  6898. 2017-08-01 11:10:27.880 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6899. 2017-08-01 11:10:27.907 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6900. 2017-08-01 11:10:27.908 |-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
  6901. 2017-08-01 11:10:27.908 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6902. 2017-08-01 11:10:27.909 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6903. 2017-08-01 11:10:27.909 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6904. 2017-08-01 11:10:27.910 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6905. 2017-08-01 11:10:27.940 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6906. 2017-08-01 11:10:27.941 |-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=?)
  6907. 2017-08-01 11:10:27.941 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6908. 2017-08-01 11:10:27.956 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6909. 2017-08-01 11:10:27.956 |-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=?)
  6910. 2017-08-01 11:10:27.957 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6911. 2017-08-01 11:10:27.958 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6912. 2017-08-01 11:10:27.958 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6913. 2017-08-01 11:10:27.968 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6914. 2017-08-01 11:10:27.984 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6915. 2017-08-01 11:10:27.990 |-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= ?
  6916. 2017-08-01 11:10:27.990 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6917. 2017-08-01 11:10:27.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= ?
  6918. 2017-08-01 11:10:27.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6919. 2017-08-01 11:10:28.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6920. 2017-08-01 11:10:28.019 |-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
  6921. 2017-08-01 11:10:28.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6922. 2017-08-01 11:10:28.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6923. 2017-08-01 11:10:28.021 |-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
  6924. 2017-08-01 11:10:28.021 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6925. 2017-08-01 11:10:28.057 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6926. 2017-08-01 11:10:28.058 |-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=?)
  6927. 2017-08-01 11:10:28.058 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6928. 2017-08-01 11:10:28.068 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6929. 2017-08-01 11:10:28.069 |-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=?)
  6930. 2017-08-01 11:10:28.069 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6931. 2017-08-01 11:10:28.086 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6932. 2017-08-01 11:10:28.087 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6933. 2017-08-01 11:10:28.089 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6934. 2017-08-01 11:10:28.095 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6935. 2017-08-01 11:10:28.096 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6936. 2017-08-01 11:10:28.099 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6937. 2017-08-01 11:10:28.104 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6938. 2017-08-01 11:10:28.105 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6939. 2017-08-01 11:10:28.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6940. 2017-08-01 11:10:28.107 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6941. 2017-08-01 11:10:28.134 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6942. 2017-08-01 11:10:28.136 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6943. 2017-08-01 11:10:28.147 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6944. 2017-08-01 11:10:28.148 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6945. 2017-08-01 11:10:28.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6946. 2017-08-01 11:10:28.202 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  6947. 2017-08-01 11:10:28.202 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6948. 2017-08-01 11:10:28.288 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  6949. 2017-08-01 11:10:28.289 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  6950. 2017-08-01 11:10:28.289 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6951. 2017-08-01 11:10:28.302 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6952. 2017-08-01 11:10:28.305 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6953. 2017-08-01 11:10:28.305 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6954. 2017-08-01 11:10:28.408 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6955. 2017-08-01 11:10:28.410 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6956. 2017-08-01 11:10:28.492 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  6957. 2017-08-01 11:10:28.495 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  6958. 2017-08-01 11:10:28.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6959. 2017-08-01 11:10:28.495 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 50(Integer), 10(Integer)
  6960. 2017-08-01 11:10:28.496 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  6961. 2017-08-01 11:10:28.496 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6962. 2017-08-01 11:10:28.505 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6963. 2017-08-01 11:10:28.505 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6964. 2017-08-01 11:10:28.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6965. 2017-08-01 11:10:28.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  6966. 2017-08-01 11:10:28.600 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  6967. 2017-08-01 11:10:28.600 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  6968. 2017-08-01 11:10:28.602 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6969. 2017-08-01 11:10:28.685 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  6970. 2017-08-01 11:10:28.701 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  6971. 2017-08-01 11:11:05.884 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6972. 2017-08-01 11:11:05.884 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6973. 2017-08-01 11:11:05.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= ?
  6974. 2017-08-01 11:11:05.916 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6975. 2017-08-01 11:11:05.928 |-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= ?
  6976. 2017-08-01 11:11:05.928 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6977. 2017-08-01 11:11:05.977 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6978. 2017-08-01 11:11:05.978 |-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
  6979. 2017-08-01 11:11:05.979 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6980. 2017-08-01 11:11:05.990 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6981. 2017-08-01 11:11:05.991 |-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
  6982. 2017-08-01 11:11:05.991 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6983. 2017-08-01 11:11:06.024 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6984. 2017-08-01 11:11:06.025 |-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=?)
  6985. 2017-08-01 11:11:06.026 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6986. 2017-08-01 11:11:06.054 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6987. 2017-08-01 11:11:06.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  6988. 2017-08-01 11:11:06.061 |-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=?)
  6989. 2017-08-01 11:11:06.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6990. 2017-08-01 11:11:06.099 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6991. 2017-08-01 11:11:06.100 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6992. 2017-08-01 11:11:06.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  6993. 2017-08-01 11:11:06.182 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  6994. 2017-08-01 11:11:06.183 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  6995. 2017-08-01 11:11:06.218 |-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
  6996. 2017-08-01 11:11:06.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  6997. 2017-08-01 11:11:06.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  6998. 2017-08-01 11:11:06.291 |-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
  6999. 2017-08-01 11:11:06.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7000. 2017-08-01 11:11:06.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7001. 2017-08-01 11:11:06.410 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7002. 2017-08-01 11:11:06.410 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7003. 2017-08-01 11:11:06.439 |-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= ?
  7004. 2017-08-01 11:11:06.440 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7005. 2017-08-01 11:11:06.442 |-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= ?
  7006. 2017-08-01 11:11:06.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7007. 2017-08-01 11:11:06.517 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7008. 2017-08-01 11:11:06.518 |-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
  7009. 2017-08-01 11:11:06.518 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7010. 2017-08-01 11:11:06.530 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7011. 2017-08-01 11:11:06.531 |-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
  7012. 2017-08-01 11:11:06.532 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7013. 2017-08-01 11:11:06.579 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7014. 2017-08-01 11:11:06.580 |-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=?)
  7015. 2017-08-01 11:11:06.581 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7016. 2017-08-01 11:11:06.596 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7017. 2017-08-01 11:11:06.597 |-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=?)
  7018. 2017-08-01 11:11:06.597 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7019. 2017-08-01 11:11:06.609 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7020. 2017-08-01 11:11:06.661 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7021. 2017-08-01 11:11:06.663 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7022. 2017-08-01 11:11:06.664 |-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
  7023. 2017-08-01 11:11:06.665 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7024. 2017-08-01 11:11:06.734 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7025. 2017-08-01 11:11:06.907 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7026. 2017-08-01 11:11:06.954 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7027. 2017-08-01 11:11:06.956 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7028. 2017-08-01 11:11:06.957 |-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
  7029. 2017-08-01 11:11:06.958 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7030. 2017-08-01 11:11:07.000 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  7031. 2017-08-01 11:11:07.009 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7032. 2017-08-01 11:11:07.041 |-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= ?
  7033. 2017-08-01 11:11:07.042 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7034. 2017-08-01 11:11:07.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7035. 2017-08-01 11:11:07.074 |-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
  7036. 2017-08-01 11:11:07.074 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7037. 2017-08-01 11:11:07.121 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7038. 2017-08-01 11:11:07.122 |-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=?)
  7039. 2017-08-01 11:11:07.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7040. 2017-08-01 11:11:07.162 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7041. 2017-08-01 11:11:07.209 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7042. 2017-08-01 11:11:07.210 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7043. 2017-08-01 11:11:07.214 |-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
  7044. 2017-08-01 11:11:07.215 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7045. 2017-08-01 11:11:07.752 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  7046. 2017-08-01 11:11:07.777 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7047. 2017-08-01 11:11:07.811 |-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= ?
  7048. 2017-08-01 11:11:07.811 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7049. 2017-08-01 11:11:07.879 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7050. 2017-08-01 11:11:07.880 |-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
  7051. 2017-08-01 11:11:07.880 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7052. 2017-08-01 11:11:07.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7053. 2017-08-01 11:11:07.971 |-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=?)
  7054. 2017-08-01 11:11:07.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7055. 2017-08-01 11:11:08.037 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7056. 2017-08-01 11:11:08.086 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7057. 2017-08-01 11:11:08.087 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7058. 2017-08-01 11:11:08.091 |-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=?
  7059. 2017-08-01 11:11:08.091 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7060. 2017-08-01 11:11:08.173 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  7061. 2017-08-01 11:11:08.216 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7062. 2017-08-01 11:11:08.248 |-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= ?
  7063. 2017-08-01 11:11:08.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7064. 2017-08-01 11:11:08.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7065. 2017-08-01 11:11:08.320 |-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
  7066. 2017-08-01 11:11:08.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7067. 2017-08-01 11:11:08.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7068. 2017-08-01 11:11:08.390 |-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=?)
  7069. 2017-08-01 11:11:08.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7070. 2017-08-01 11:11:08.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7071. 2017-08-01 11:11:08.498 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7072. 2017-08-01 11:11:08.499 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7073. 2017-08-01 11:11:08.500 |-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
  7074. 2017-08-01 11:11:08.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  7075. 2017-08-01 11:11:08.567 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  7076. 2017-08-01 11:11:08.632 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7077. 2017-08-01 11:11:08.632 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7078. 2017-08-01 11:11:08.663 |-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= ?
  7079. 2017-08-01 11:11:08.663 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7080. 2017-08-01 11:11:08.664 |-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= ?
  7081. 2017-08-01 11:11:08.664 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7082. 2017-08-01 11:11:08.741 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7083. 2017-08-01 11:11:08.741 |-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
  7084. 2017-08-01 11:11:08.742 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7085. 2017-08-01 11:11:08.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7086. 2017-08-01 11:11:08.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7087. 2017-08-01 11:11:08.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7088. 2017-08-01 11:11:08.789 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7089. 2017-08-01 11:11:08.790 |-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=?)
  7090. 2017-08-01 11:11:08.791 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7091. 2017-08-01 11:11:08.816 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7092. 2017-08-01 11:11:08.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=?)
  7093. 2017-08-01 11:11:08.817 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7094. 2017-08-01 11:11:08.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7095. 2017-08-01 11:11:08.866 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7096. 2017-08-01 11:11:08.868 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7097. 2017-08-01 11:11:08.870 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  7098. 2017-08-01 11:11:08.870 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7099. 2017-08-01 11:11:08.889 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7100. 2017-08-01 11:11:08.934 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7101. 2017-08-01 11:11:08.935 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7102. 2017-08-01 11:11:08.942 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  7103. 2017-08-01 11:11:08.943 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7104. 2017-08-01 11:11:08.957 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  7105. 2017-08-01 11:11:08.958 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  7106. 2017-08-01 11:11:08.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7107. 2017-08-01 11:11:09.053 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  7108. 2017-08-01 11:11:09.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  7109. 2017-08-01 11:11:09.055 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7110. 2017-08-01 11:11:09.105 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7111. 2017-08-01 11:11:09.107 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  7112. 2017-08-01 11:11:09.108 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  7113. 2017-08-01 11:11:09.142 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  7114. 2017-08-01 11:11:09.251 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7115. 2017-08-01 11:11:11.648 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7116. 2017-08-01 11:11:11.649 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7117. 2017-08-01 11:11:11.681 |-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= ?
  7118. 2017-08-01 11:11:11.681 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7119. 2017-08-01 11:11:11.681 |-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= ?
  7120. 2017-08-01 11:11:11.681 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7121. 2017-08-01 11:11:11.714 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7122. 2017-08-01 11:11:11.715 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7123. 2017-08-01 11:11:11.715 |-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
  7124. 2017-08-01 11:11:11.716 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7125. 2017-08-01 11:11:11.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
  7126. 2017-08-01 11:11:11.717 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7127. 2017-08-01 11:11:11.753 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7128. 2017-08-01 11:11:11.755 |-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=?)
  7129. 2017-08-01 11:11:11.755 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7130. 2017-08-01 11:11:11.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7131. 2017-08-01 11:11:11.776 |-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=?)
  7132. 2017-08-01 11:11:11.776 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7133. 2017-08-01 11:11:11.793 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7134. 2017-08-01 11:11:11.804 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7135. 2017-08-01 11:11:11.839 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7136. 2017-08-01 11:11:11.840 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7137. 2017-08-01 11:11:11.848 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  7138. 2017-08-01 11:11:11.848 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7139. 2017-08-01 11:11:11.848 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7140. 2017-08-01 11:11:11.849 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7141. 2017-08-01 11:11:11.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  7142. 2017-08-01 11:11:11.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7143. 2017-08-01 11:11:11.952 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  7144. 2017-08-01 11:11:11.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  7145. 2017-08-01 11:11:11.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7146. 2017-08-01 11:11:12.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7147. 2017-08-01 11:11:12.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  7148. 2017-08-01 11:11:12.047 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  7149. 2017-08-01 11:11:12.048 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7150. 2017-08-01 11:11:12.048 |-DEBUG [http-nio-8089-exec-7] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  7151. 2017-08-01 11:11:12.049 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  7152. 2017-08-01 11:11:12.142 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  7153. 2017-08-01 11:11:12.239 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7154. 2017-08-01 11:11:15.016 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7155. 2017-08-01 11:11:15.047 |-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= ?
  7156. 2017-08-01 11:11:15.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7157. 2017-08-01 11:11:15.077 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7158. 2017-08-01 11:11:15.078 |-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
  7159. 2017-08-01 11:11:15.079 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7160. 2017-08-01 11:11:15.126 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7161. 2017-08-01 11:11:15.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=?)
  7162. 2017-08-01 11:11:15.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7163. 2017-08-01 11:11:15.166 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7164. 2017-08-01 11:11:15.211 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7165. 2017-08-01 11:11:15.213 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7166. 2017-08-01 11:11:15.220 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  7167. 2017-08-01 11:11:15.221 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7168. 2017-08-01 11:11:15.402 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7169. 2017-08-01 11:11:15.405 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  7170. 2017-08-01 11:11:15.405 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 60(Integer), 10(Integer)
  7171. 2017-08-01 11:11:15.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7172. 2017-08-01 11:11:17.953 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7173. 2017-08-01 11:11:17.985 |-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= ?
  7174. 2017-08-01 11:11:17.985 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7175. 2017-08-01 11:11:18.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7176. 2017-08-01 11:11:18.016 |-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
  7177. 2017-08-01 11:11:18.016 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7178. 2017-08-01 11:11:18.062 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7179. 2017-08-01 11:11:18.063 |-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=?)
  7180. 2017-08-01 11:11:18.063 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7181. 2017-08-01 11:11:18.091 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7182. 2017-08-01 11:11:18.137 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7183. 2017-08-01 11:11:18.138 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7184. 2017-08-01 11:11:18.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  7185. 2017-08-01 11:11:18.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14381(Long)
  7186. 2017-08-01 11:11:18.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  7187. 2017-08-01 11:11:18.214 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7188. 2017-08-01 11:11:18.214 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7189. 2017-08-01 11:11:18.247 |-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= ?
  7190. 2017-08-01 11:11:18.247 |-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= ?
  7191. 2017-08-01 11:11:18.247 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7192. 2017-08-01 11:11:18.248 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7193. 2017-08-01 11:11:18.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7194. 2017-08-01 11:11:18.283 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7195. 2017-08-01 11:11:18.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
  7196. 2017-08-01 11:11:18.284 |-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
  7197. 2017-08-01 11:11:18.284 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7198. 2017-08-01 11:11:18.284 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7199. 2017-08-01 11:11:18.317 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7200. 2017-08-01 11:11:18.318 |-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=?)
  7201. 2017-08-01 11:11:18.318 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7202. 2017-08-01 11:11:18.330 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7203. 2017-08-01 11:11:18.331 |-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=?)
  7204. 2017-08-01 11:11:18.331 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7205. 2017-08-01 11:11:18.347 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7206. 2017-08-01 11:11:18.360 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7207. 2017-08-01 11:11:18.399 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7208. 2017-08-01 11:11:18.400 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7209. 2017-08-01 11:11:18.404 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  7210. 2017-08-01 11:11:18.404 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14381(Long)
  7211. 2017-08-01 11:11:18.408 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7212. 2017-08-01 11:11:18.409 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7213. 2017-08-01 11:11:18.411 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  7214. 2017-08-01 11:11:18.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14381(Long)
  7215. 2017-08-01 11:11:18.434 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 0
  7216. 2017-08-01 11:11:18.472 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 6
  7217. 2017-08-01 11:11:20.859 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7218. 2017-08-01 11:11:20.889 |-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= ?
  7219. 2017-08-01 11:11:20.889 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7220. 2017-08-01 11:11:20.917 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7221. 2017-08-01 11:11:20.918 |-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
  7222. 2017-08-01 11:11:20.919 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7223. 2017-08-01 11:11:20.950 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7224. 2017-08-01 11:11:20.951 |-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=?)
  7225. 2017-08-01 11:11:20.951 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7226. 2017-08-01 11:11:20.978 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7227. 2017-08-01 11:11:21.022 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7228. 2017-08-01 11:11:21.024 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7229. 2017-08-01 11:11:21.025 |-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
  7230. 2017-08-01 11:11:21.026 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  7231. 2017-08-01 11:11:21.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  7232. 2017-08-01 11:11:21.129 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7233. 2017-08-01 11:11:21.129 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7234. 2017-08-01 11:11:21.159 |-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= ?
  7235. 2017-08-01 11:11:21.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7236. 2017-08-01 11:11:21.161 |-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= ?
  7237. 2017-08-01 11:11:21.162 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7238. 2017-08-01 11:11:21.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7239. 2017-08-01 11:11:21.189 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7240. 2017-08-01 11:11:21.189 |-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
  7241. 2017-08-01 11:11:21.190 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7242. 2017-08-01 11:11:21.190 |-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
  7243. 2017-08-01 11:11:21.190 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7244. 2017-08-01 11:11:21.223 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7245. 2017-08-01 11:11:21.224 |-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=?)
  7246. 2017-08-01 11:11:21.224 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7247. 2017-08-01 11:11:21.238 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7248. 2017-08-01 11:11:21.239 |-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=?)
  7249. 2017-08-01 11:11:21.239 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7250. 2017-08-01 11:11:21.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7251. 2017-08-01 11:11:21.268 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7252. 2017-08-01 11:11:21.295 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7253. 2017-08-01 11:11:21.297 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7254. 2017-08-01 11:11:21.304 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  7255. 2017-08-01 11:11:21.305 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7256. 2017-08-01 11:11:21.312 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7257. 2017-08-01 11:11:21.314 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7258. 2017-08-01 11:11:21.316 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  7259. 2017-08-01 11:11:21.316 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7260. 2017-08-01 11:11:21.404 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  7261. 2017-08-01 11:11:21.405 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  7262. 2017-08-01 11:11:21.406 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7263. 2017-08-01 11:11:21.487 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  7264. 2017-08-01 11:11:21.489 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  7265. 2017-08-01 11:11:21.489 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7266. 2017-08-01 11:11:21.494 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7267. 2017-08-01 11:11:21.497 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  7268. 2017-08-01 11:11:21.498 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 60(Integer), 10(Integer)
  7269. 2017-08-01 11:11:21.585 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  7270. 2017-08-01 11:11:21.688 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7271. 2017-08-01 11:11:25.779 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7272. 2017-08-01 11:11:25.782 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7273. 2017-08-01 11:11:25.811 |-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= ?
  7274. 2017-08-01 11:11:25.812 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7275. 2017-08-01 11:11:25.813 |-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= ?
  7276. 2017-08-01 11:11:25.813 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7277. 2017-08-01 11:11:25.840 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7278. 2017-08-01 11:11:25.840 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7279. 2017-08-01 11:11:25.841 |-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
  7280. 2017-08-01 11:11:25.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
  7281. 2017-08-01 11:11:25.841 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7282. 2017-08-01 11:11:25.841 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7283. 2017-08-01 11:11:25.876 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7284. 2017-08-01 11:11:25.877 |-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=?)
  7285. 2017-08-01 11:11:25.877 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7286. 2017-08-01 11:11:25.887 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7287. 2017-08-01 11:11:25.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=?)
  7288. 2017-08-01 11:11:25.888 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7289. 2017-08-01 11:11:25.902 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7290. 2017-08-01 11:11:25.916 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7291. 2017-08-01 11:11:25.949 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7292. 2017-08-01 11:11:25.951 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7293. 2017-08-01 11:11:25.953 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  7294. 2017-08-01 11:11:25.953 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7295. 2017-08-01 11:11:25.960 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7296. 2017-08-01 11:11:25.962 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7297. 2017-08-01 11:11:25.969 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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
  7298. 2017-08-01 11:11:25.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7299. 2017-08-01 11:11:26.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  7300. 2017-08-01 11:11:26.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  7301. 2017-08-01 11:11:26.047 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7302. 2017-08-01 11:11:26.084 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7303. 2017-08-01 11:11:26.087 |-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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 ?,?
  7304. 2017-08-01 11:11:26.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  7305. 2017-08-01 11:11:26.145 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  7306. 2017-08-01 11:11:26.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  7307. 2017-08-01 11:11:26.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7308. 2017-08-01 11:11:26.201 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7309. 2017-08-01 11:11:26.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  7310. 2017-08-01 11:11:27.951 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7311. 2017-08-01 11:11:27.982 |-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= ?
  7312. 2017-08-01 11:11:27.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7313. 2017-08-01 11:11:28.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7314. 2017-08-01 11:11:28.012 |-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
  7315. 2017-08-01 11:11:28.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7316. 2017-08-01 11:11:28.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7317. 2017-08-01 11:11:28.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=?)
  7318. 2017-08-01 11:11:28.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7319. 2017-08-01 11:11:28.088 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7320. 2017-08-01 11:11:28.138 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7321. 2017-08-01 11:11:28.139 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7322. 2017-08-01 11:11:28.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Preparing: SELECT * FROM check_task WHERE id = ?
  7323. 2017-08-01 11:11:28.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 14385(Long)
  7324. 2017-08-01 11:11:28.171 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <== Total: 1
  7325. 2017-08-01 11:11:28.204 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7326. 2017-08-01 11:11:28.204 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7327. 2017-08-01 11:11:28.234 |-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= ?
  7328. 2017-08-01 11:11:28.235 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7329. 2017-08-01 11:11:28.239 |-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= ?
  7330. 2017-08-01 11:11:28.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7331. 2017-08-01 11:11:28.263 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7332. 2017-08-01 11:11:28.264 |-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
  7333. 2017-08-01 11:11:28.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7334. 2017-08-01 11:11:28.266 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7335. 2017-08-01 11:11:28.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
  7336. 2017-08-01 11:11:28.267 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7337. 2017-08-01 11:11:28.298 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7338. 2017-08-01 11:11:28.299 |-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=?)
  7339. 2017-08-01 11:11:28.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7340. 2017-08-01 11:11:28.309 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7341. 2017-08-01 11:11:28.310 |-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=?)
  7342. 2017-08-01 11:11:28.310 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7343. 2017-08-01 11:11:28.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7344. 2017-08-01 11:11:28.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7345. 2017-08-01 11:11:28.380 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7346. 2017-08-01 11:11:28.381 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7347. 2017-08-01 11:11:28.384 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7348. 2017-08-01 11:11:28.385 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7349. 2017-08-01 11:11:28.385 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Preparing: SELECT * FROM check_task_status WHERE task_id = ? order by update_time
  7350. 2017-08-01 11:11:28.386 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| ==> Parameters: 14385(Long)
  7351. 2017-08-01 11:11:28.388 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ?
  7352. 2017-08-01 11:11:28.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 14385(Long)
  7353. 2017-08-01 11:11:28.419 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <== Total: 1
  7354. 2017-08-01 11:11:28.430 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getTaskStatusList [159] -| <== Total: 10
  7355. 2017-08-01 11:11:30.903 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7356. 2017-08-01 11:11:30.933 |-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= ?
  7357. 2017-08-01 11:11:30.933 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7358. 2017-08-01 11:11:30.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7359. 2017-08-01 11:11:30.962 |-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
  7360. 2017-08-01 11:11:30.962 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7361. 2017-08-01 11:11:31.008 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7362. 2017-08-01 11:11:31.009 |-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=?)
  7363. 2017-08-01 11:11:31.010 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7364. 2017-08-01 11:11:31.038 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7365. 2017-08-01 11:11:31.089 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7366. 2017-08-01 11:11:31.090 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7367. 2017-08-01 11:11:31.091 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  7368. 2017-08-01 11:11:31.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  7369. 2017-08-01 11:11:31.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  7370. 2017-08-01 11:11:31.184 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7371. 2017-08-01 11:11:31.184 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7372. 2017-08-01 11:11:31.213 |-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= ?
  7373. 2017-08-01 11:11:31.213 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7374. 2017-08-01 11:11:31.216 |-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= ?
  7375. 2017-08-01 11:11:31.216 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7376. 2017-08-01 11:11:31.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7377. 2017-08-01 11:11:31.242 |-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
  7378. 2017-08-01 11:11:31.242 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7379. 2017-08-01 11:11:31.244 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7380. 2017-08-01 11:11:31.245 |-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
  7381. 2017-08-01 11:11:31.245 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7382. 2017-08-01 11:11:31.276 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7383. 2017-08-01 11:11:31.277 |-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=?)
  7384. 2017-08-01 11:11:31.277 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7385. 2017-08-01 11:11:31.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 100
  7386. 2017-08-01 11:11:31.290 |-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=?)
  7387. 2017-08-01 11:11:31.290 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7388. 2017-08-01 11:11:31.302 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7389. 2017-08-01 11:11:31.319 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7390. 2017-08-01 11:11:31.349 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7391. 2017-08-01 11:11:31.350 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7392. 2017-08-01 11:11:31.352 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  7393. 2017-08-01 11:11:31.352 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7394. 2017-08-01 11:11:31.365 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
  7395. 2017-08-01 11:11:31.366 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
  7396. 2017-08-01 11:11:31.373 |-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 task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.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 < ?
  7397. 2017-08-01 11:11:31.374 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7398. 2017-08-01 11:11:31.444 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  7399. 2017-08-01 11:11:31.445 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  7400. 2017-08-01 11:11:31.446 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7401. 2017-08-01 11:11:31.529 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  7402. 2017-08-01 11:11:31.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  7403. 2017-08-01 11:11:31.531 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7404. 2017-08-01 11:11:31.555 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  7405. 2017-08-01 11:11:31.558 |-DEBUG [http-nio-8089-exec-5] 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 ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.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 < ? limit ?,?
  7406. 2017-08-01 11:11:31.559 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  7407. 2017-08-01 11:11:31.624 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  7408. 2017-08-01 11:11:31.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  7409. 2017-08-01 13:11:08.835 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 8832 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  7410. 2017-08-01 13:11:08.844 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  7411. 2017-08-01 13:11:09.163 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  7412. 2017-08-01 13:11:09.308 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@135a26f4: startup date [Tue Aug 01 13:11:09 CST 2017]; root of context hierarchy
  7413. 2017-08-01 13:11:11.256 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  7414. 2017-08-01 13:11:12.303 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$14c4ae67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7415. 2017-08-01 13:11:12.468 |-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$$ad7276a1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7416. 2017-08-01 13:11:12.481 |-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)
  7417. 2017-08-01 13:11:12.485 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@7f1248cc' 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)
  7418. 2017-08-01 13:11:12.494 |-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$$d2471953] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7419. 2017-08-01 13:11:12.516 |-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)
  7420. 2017-08-01 13:11:12.535 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$82263] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7421. 2017-08-01 13:11:12.562 |-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)
  7422. 2017-08-01 13:11:12.564 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$5dd6e485] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7423. 2017-08-01 13:11:13.465 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  7424. 2017-08-01 13:11:13.482 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  7425. 2017-08-01 13:11:13.484 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  7426. 2017-08-01 13:11:13.630 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  7427. 2017-08-01 13:11:13.631 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 4323 ms
  7428. 2017-08-01 13:11:14.068 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  7429. 2017-08-01 13:11:16.546 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  7430. 2017-08-01 13:11:16.546 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  7431. 2017-08-01 13:11:16.546 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  7432. 2017-08-01 13:11:16.546 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  7433. 2017-08-01 13:11:16.547 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  7434. 2017-08-01 13:11:16.548 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  7435. 2017-08-01 13:11:16.548 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  7436. 2017-08-01 13:11:16.548 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  7437. 2017-08-01 13:11:16.549 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  7438. 2017-08-01 13:11:16.549 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  7439. 2017-08-01 13:11:16.549 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  7440. 2017-08-01 13:11:16.549 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  7441. 2017-08-01 13:11:16.549 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  7442. 2017-08-01 13:11:16.551 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  7443. 2017-08-01 13:11:17.870 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  7444. 2017-08-01 13:11:17.870 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  7445. 2017-08-01 13:11:18.004 |-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@54228a72, org.springframework.security.web.context.SecurityContextPersistenceFilter@5845550d, org.springframework.security.web.header.HeaderWriterFilter@201081e8, org.springframework.web.filter.CorsFilter@1dae41b5, org.springframework.security.web.authentication.logout.LogoutFilter@76b14be2, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@7d2a8b65, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@32fccf0c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5cf1bc79, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2d50df66, org.springframework.security.web.session.SessionManagementFilter@5eaed89f, org.springframework.security.web.access.ExceptionTranslationFilter@658a0bc0, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@acad74d]
  7446. 2017-08-01 13:11:18.036 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@5eb88c27, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@45c4051c, org.springframework.security.web.context.SecurityContextPersistenceFilter@5509b82e, org.springframework.security.web.header.HeaderWriterFilter@78585ea0, org.springframework.security.web.authentication.logout.LogoutFilter@65707910, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@27e2496d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5f58c82d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@65cf3038, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3b5b0f0d, org.springframework.security.web.session.SessionManagementFilter@26d76ef2, org.springframework.security.web.access.ExceptionTranslationFilter@33973983, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@2be14d9a]
  7447. 2017-08-01 13:11:18.220 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@135a26f4: startup date [Tue Aug 01 13:11:09 CST 2017]; root of context hierarchy
  7448. 2017-08-01 13:11:18.391 |-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)
  7449. 2017-08-01 13:11:18.392 |-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)
  7450. 2017-08-01 13:11:18.395 |-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)
  7451. 2017-08-01 13:11:18.395 |-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)
  7452. 2017-08-01 13:11:18.396 |-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)
  7453. 2017-08-01 13:11:18.396 |-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)
  7454. 2017-08-01 13:11:18.396 |-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)
  7455. 2017-08-01 13:11:18.397 |-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)
  7456. 2017-08-01 13:11:18.397 |-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)
  7457. 2017-08-01 13:11:18.402 |-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)
  7458. 2017-08-01 13:11:18.402 |-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)
  7459. 2017-08-01 13:11:18.402 |-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)
  7460. 2017-08-01 13:11:18.403 |-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)
  7461. 2017-08-01 13:11:18.403 |-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)
  7462. 2017-08-01 13:11:18.404 |-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)
  7463. 2017-08-01 13:11:18.404 |-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)
  7464. 2017-08-01 13:11:18.405 |-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)
  7465. 2017-08-01 13:11:18.405 |-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)
  7466. 2017-08-01 13:11:18.405 |-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()
  7467. 2017-08-01 13:11:18.407 |-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)
  7468. 2017-08-01 13:11:18.408 |-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)
  7469. 2017-08-01 13:11:18.408 |-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)
  7470. 2017-08-01 13:11:18.408 |-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()
  7471. 2017-08-01 13:11:18.408 |-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)
  7472. 2017-08-01 13:11:18.409 |-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)
  7473. 2017-08-01 13:11:18.411 |-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)
  7474. 2017-08-01 13:11:18.411 |-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)
  7475. 2017-08-01 13:11:18.438 |-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)
  7476. 2017-08-01 13:11:18.443 |-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)
  7477. 2017-08-01 13:11:18.444 |-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)
  7478. 2017-08-01 13:11:18.444 |-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)
  7479. 2017-08-01 13:11:18.445 |-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)
  7480. 2017-08-01 13:11:18.445 |-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)
  7481. 2017-08-01 13:11:18.445 |-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)
  7482. 2017-08-01 13:11:18.446 |-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>)
  7483. 2017-08-01 13:11:18.447 |-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)
  7484. 2017-08-01 13:11:18.447 |-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)
  7485. 2017-08-01 13:11:18.448 |-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)
  7486. 2017-08-01 13:11:18.449 |-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)
  7487. 2017-08-01 13:11:18.451 |-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)
  7488. 2017-08-01 13:11:18.451 |-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)
  7489. 2017-08-01 13:11:18.451 |-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)
  7490. 2017-08-01 13:11:18.452 |-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)
  7491. 2017-08-01 13:11:18.452 |-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)
  7492. 2017-08-01 13:11:18.455 |-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)
  7493. 2017-08-01 13:11:18.455 |-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()
  7494. 2017-08-01 13:11:18.456 |-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)
  7495. 2017-08-01 13:11:18.456 |-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
  7496. 2017-08-01 13:11:18.456 |-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)
  7497. 2017-08-01 13:11:18.457 |-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)
  7498. 2017-08-01 13:11:18.457 |-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)
  7499. 2017-08-01 13:11:18.458 |-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)
  7500. 2017-08-01 13:11:18.458 |-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()
  7501. 2017-08-01 13:11:18.458 |-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()
  7502. 2017-08-01 13:11:18.459 |-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)
  7503. 2017-08-01 13:11:18.460 |-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)
  7504. 2017-08-01 13:11:18.460 |-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)
  7505. 2017-08-01 13:11:18.461 |-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)
  7506. 2017-08-01 13:11:18.462 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
  7507. 2017-08-01 13:11:18.462 |-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)
  7508. 2017-08-01 13:11:18.462 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  7509. 2017-08-01 13:11:18.463 |-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)
  7510. 2017-08-01 13:11:18.463 |-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)
  7511. 2017-08-01 13:11:18.464 |-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)
  7512. 2017-08-01 13:11:18.465 |-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)
  7513. 2017-08-01 13:11:18.466 |-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)
  7514. 2017-08-01 13:11:18.466 |-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)
  7515. 2017-08-01 13:11:18.466 |-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)
  7516. 2017-08-01 13:11:18.466 |-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
  7517. 2017-08-01 13:11:18.467 |-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)
  7518. 2017-08-01 13:11:18.469 |-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
  7519. 2017-08-01 13:11:18.469 |-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)
  7520. 2017-08-01 13:11:18.470 |-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
  7521. 2017-08-01 13:11:18.470 |-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
  7522. 2017-08-01 13:11:18.470 |-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
  7523. 2017-08-01 13:11:18.471 |-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)
  7524. 2017-08-01 13:11:18.471 |-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)
  7525. 2017-08-01 13:11:18.472 |-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()
  7526. 2017-08-01 13:11:18.474 |-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)
  7527. 2017-08-01 13:11:18.475 |-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)
  7528. 2017-08-01 13:11:18.475 |-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)
  7529. 2017-08-01 13:11:18.475 |-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)
  7530. 2017-08-01 13:11:18.476 |-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)
  7531. 2017-08-01 13:11:18.476 |-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)
  7532. 2017-08-01 13:11:18.476 |-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)
  7533. 2017-08-01 13:11:18.477 |-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)
  7534. 2017-08-01 13:11:18.477 |-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)
  7535. 2017-08-01 13:11:18.477 |-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)
  7536. 2017-08-01 13:11:18.478 |-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
  7537. 2017-08-01 13:11:18.479 |-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)
  7538. 2017-08-01 13:11:18.480 |-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)
  7539. 2017-08-01 13:11:18.480 |-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)
  7540. 2017-08-01 13:11:18.480 |-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)
  7541. 2017-08-01 13:11:18.481 |-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)
  7542. 2017-08-01 13:11:18.481 |-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()
  7543. 2017-08-01 13:11:18.481 |-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)
  7544. 2017-08-01 13:11:18.485 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
  7545. 2017-08-01 13:11:18.486 |-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)
  7546. 2017-08-01 13:11:18.486 |-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)
  7547. 2017-08-01 13:11:18.486 |-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)
  7548. 2017-08-01 13:11:18.486 |-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)
  7549. 2017-08-01 13:11:18.487 |-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)
  7550. 2017-08-01 13:11:18.487 |-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)
  7551. 2017-08-01 13:11:18.488 |-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)
  7552. 2017-08-01 13:11:18.488 |-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)
  7553. 2017-08-01 13:11:18.488 |-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)
  7554. 2017-08-01 13:11:18.488 |-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)
  7555. 2017-08-01 13:11:18.489 |-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)
  7556. 2017-08-01 13:11:18.489 |-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)
  7557. 2017-08-01 13:11:18.489 |-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)
  7558. 2017-08-01 13:11:18.489 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
  7559. 2017-08-01 13:11:18.490 |-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)
  7560. 2017-08-01 13:11:18.490 |-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)
  7561. 2017-08-01 13:11:18.490 |-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)
  7562. 2017-08-01 13:11:18.490 |-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)
  7563. 2017-08-01 13:11:18.491 |-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)
  7564. 2017-08-01 13:11:18.491 |-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)
  7565. 2017-08-01 13:11:18.491 |-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)
  7566. 2017-08-01 13:11:18.491 |-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)
  7567. 2017-08-01 13:11:18.494 |-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)
  7568. 2017-08-01 13:11:18.494 |-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)
  7569. 2017-08-01 13:11:18.495 |-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)
  7570. 2017-08-01 13:11:18.495 |-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)
  7571. 2017-08-01 13:11:18.495 |-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)
  7572. 2017-08-01 13:11:18.495 |-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)
  7573. 2017-08-01 13:11:18.496 |-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)
  7574. 2017-08-01 13:11:18.496 |-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)
  7575. 2017-08-01 13:11:18.496 |-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)
  7576. 2017-08-01 13:11:18.496 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  7577. 2017-08-01 13:11:18.497 |-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)
  7578. 2017-08-01 13:11:18.498 |-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)
  7579. 2017-08-01 13:11:18.498 |-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)
  7580. 2017-08-01 13:11:18.499 |-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)
  7581. 2017-08-01 13:11:18.499 |-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)
  7582. 2017-08-01 13:11:18.501 |-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)
  7583. 2017-08-01 13:11:18.501 |-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)
  7584. 2017-08-01 13:11:18.502 |-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)
  7585. 2017-08-01 13:11:18.502 |-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)
  7586. 2017-08-01 13:11:18.502 |-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)
  7587. 2017-08-01 13:11:18.503 |-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)
  7588. 2017-08-01 13:11:18.503 |-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)
  7589. 2017-08-01 13:11:18.503 |-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)
  7590. 2017-08-01 13:11:18.503 |-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)
  7591. 2017-08-01 13:11:18.504 |-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)
  7592. 2017-08-01 13:11:18.506 |-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)
  7593. 2017-08-01 13:11:18.506 |-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)
  7594. 2017-08-01 13:11:18.507 |-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)
  7595. 2017-08-01 13:11:18.507 |-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)
  7596. 2017-08-01 13:11:18.507 |-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)
  7597. 2017-08-01 13:11:18.507 |-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)
  7598. 2017-08-01 13:11:18.508 |-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)
  7599. 2017-08-01 13:11:18.508 |-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)
  7600. 2017-08-01 13:11:18.509 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  7601. 2017-08-01 13:11:18.509 |-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)
  7602. 2017-08-01 13:11:18.509 |-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()
  7603. 2017-08-01 13:11:18.509 |-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()
  7604. 2017-08-01 13:11:18.509 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  7605. 2017-08-01 13:11:18.510 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  7606. 2017-08-01 13:11:18.510 |-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()
  7607. 2017-08-01 13:11:18.510 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  7608. 2017-08-01 13:11:18.511 |-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)
  7609. 2017-08-01 13:11:18.512 |-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>)
  7610. 2017-08-01 13:11:18.512 |-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>)
  7611. 2017-08-01 13:11:18.512 |-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)
  7612. 2017-08-01 13:11:18.514 |-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()
  7613. 2017-08-01 13:11:18.515 |-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)
  7614. 2017-08-01 13:11:18.515 |-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)
  7615. 2017-08-01 13:11:18.515 |-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)
  7616. 2017-08-01 13:11:18.516 |-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)
  7617. 2017-08-01 13:11:18.516 |-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)
  7618. 2017-08-01 13:11:18.516 |-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)
  7619. 2017-08-01 13:11:18.517 |-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()
  7620. 2017-08-01 13:11:18.517 |-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)
  7621. 2017-08-01 13:11:18.517 |-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
  7622. 2017-08-01 13:11:18.518 |-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)
  7623. 2017-08-01 13:11:18.518 |-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)
  7624. 2017-08-01 13:11:18.519 |-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)
  7625. 2017-08-01 13:11:18.644 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  7626. 2017-08-01 13:11:18.736 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  7627. 2017-08-01 13:11:18.737 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  7628. 2017-08-01 13:11:18.792 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  7629. 2017-08-01 13:11:18.793 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  7630. 2017-08-01 13:11:18.793 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  7631. 2017-08-01 13:11:18.794 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  7632. 2017-08-01 13:11:18.795 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  7633. 2017-08-01 13:11:18.795 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  7634. 2017-08-01 13:11:18.795 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  7635. 2017-08-01 13:11:18.796 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  7636. 2017-08-01 13:11:18.796 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  7637. 2017-08-01 13:11:18.797 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  7638. 2017-08-01 13:11:18.798 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  7639. 2017-08-01 13:11:18.798 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  7640. 2017-08-01 13:11:18.798 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  7641. 2017-08-01 13:11:18.799 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  7642. 2017-08-01 13:11:18.801 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  7643. 2017-08-01 13:11:18.802 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  7644. 2017-08-01 13:11:18.803 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  7645. 2017-08-01 13:11:18.804 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  7646. 2017-08-01 13:11:18.805 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  7647. 2017-08-01 13:11:18.806 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  7648. 2017-08-01 13:11:18.806 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  7649. 2017-08-01 13:11:18.807 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  7650. 2017-08-01 13:11:18.808 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  7651. 2017-08-01 13:11:18.891 |-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]
  7652. 2017-08-01 13:11:19.818 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  7653. 2017-08-01 13:11:19.819 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  7654. 2017-08-01 13:11:19.821 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  7655. 2017-08-01 13:11:19.904 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  7656. 2017-08-01 13:11:19.909 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  7657. 2017-08-01 13:11:19.911 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  7658. 2017-08-01 13:11:19.912 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  7659. 2017-08-01 13:11:19.914 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  7660. 2017-08-01 13:11:19.914 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  7661. 2017-08-01 13:11:19.915 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  7662. 2017-08-01 13:11:19.916 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  7663. 2017-08-01 13:11:19.918 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  7664. 2017-08-01 13:11:19.919 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  7665. 2017-08-01 13:11:19.919 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  7666. 2017-08-01 13:11:19.919 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  7667. 2017-08-01 13:11:19.919 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  7668. 2017-08-01 13:11:19.920 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  7669. 2017-08-01 13:11:19.920 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  7670. 2017-08-01 13:11:19.929 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  7671. 2017-08-01 13:11:19.930 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  7672. 2017-08-01 13:11:19.930 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  7673. 2017-08-01 13:11:19.930 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  7674. 2017-08-01 13:11:19.944 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  7675. 2017-08-01 13:11:19.948 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  7676. 2017-08-01 13:11:19.948 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  7677. 2017-08-01 13:11:19.954 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  7678. 2017-08-01 13:11:20.026 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  7679. 2017-08-01 13:11:20.345 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  7680. 2017-08-01 13:11:20.414 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  7681. 2017-08-01 13:11:20.444 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  7682. 2017-08-01 13:11:20.444 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  7683. 2017-08-01 13:11:20.444 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  7684. 2017-08-01 13:11:20.445 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  7685. 2017-08-01 13:11:20.445 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  7686. 2017-08-01 13:11:21.142 |-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)
  7687. 2017-08-01 13:11:21.143 |-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>)
  7688. 2017-08-01 13:11:21.143 |-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()
  7689. 2017-08-01 13:11:21.144 |-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)
  7690. 2017-08-01 13:11:21.144 |-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()
  7691. 2017-08-01 13:11:21.145 |-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)
  7692. 2017-08-01 13:11:21.145 |-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()
  7693. 2017-08-01 13:11:21.146 |-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()
  7694. 2017-08-01 13:11:21.146 |-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()
  7695. 2017-08-01 13:11:21.147 |-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()
  7696. 2017-08-01 13:11:21.148 |-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()
  7697. 2017-08-01 13:11:21.150 |-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
  7698. 2017-08-01 13:11:21.151 |-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)
  7699. 2017-08-01 13:11:21.152 |-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()
  7700. 2017-08-01 13:11:21.152 |-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()
  7701. 2017-08-01 13:11:21.152 |-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)
  7702. 2017-08-01 13:11:21.153 |-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()
  7703. 2017-08-01 13:11:21.861 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  7704. 2017-08-01 13:11:21.877 |-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
  7705. 2017-08-01 13:11:22.223 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  7706. 2017-08-01 13:11:22.225 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  7707. 2017-08-01 13:11:22.225 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  7708. 2017-08-01 13:11:22.234 |-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]
  7709. 2017-08-01 13:11:22.237 |-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]
  7710. 2017-08-01 13:11:22.238 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  7711. 2017-08-01 13:11:22.243 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  7712. 2017-08-01 13:11:22.246 |-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]
  7713. 2017-08-01 13:11:22.263 |-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]
  7714. 2017-08-01 13:11:22.278 |-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]
  7715. 2017-08-01 13:11:22.283 |-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]
  7716. 2017-08-01 13:11:22.287 |-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]
  7717. 2017-08-01 13:11:22.290 |-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]
  7718. 2017-08-01 13:11:22.293 |-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]
  7719. 2017-08-01 13:11:22.301 |-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]
  7720. 2017-08-01 13:11:22.304 |-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]
  7721. 2017-08-01 13:11:22.307 |-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]
  7722. 2017-08-01 13:11:22.310 |-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]
  7723. 2017-08-01 13:11:22.313 |-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]
  7724. 2017-08-01 13:11:22.394 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  7725. 2017-08-01 13:11:22.919 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  7726. 2017-08-01 13:11:22.942 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  7727. 2017-08-01 13:11:22.993 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 39
  7728. 2017-08-01 13:11:22.995 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  7729. 2017-08-01 13:11:22.998 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  7730. 2017-08-01 13:11:23.232 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  7731. 2017-08-01 13:11:23.233 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  7732. 2017-08-01 13:11:23.420 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 659
  7733. 2017-08-01 13:11:23.422 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:659
  7734. 2017-08-01 13:11:23.424 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  7735. 2017-08-01 13:11:23.425 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  7736. 2017-08-01 13:11:23.452 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  7737. 2017-08-01 13:11:23.453 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:32
  7738. 2017-08-01 13:11:23.485 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7739. 2017-08-01 13:11:23.486 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7740. 2017-08-01 13:11:23.512 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  7741. 2017-08-01 13:11:23.512 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:659
  7742. 2017-08-01 13:11:23.535 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  7743. 2017-08-01 13:11:23.549 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  7744. 2017-08-01 13:11:23.860 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  7745. 2017-08-01 13:11:23.888 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  7746. 2017-08-01 13:11:23.900 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 15.389 seconds (JVM running for 16.309)
  7747. 2017-08-01 13:11:29.579 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  7748. 2017-08-01 13:11:29.579 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  7749. 2017-08-01 13:11:29.611 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 32 ms
  7750. 2017-08-01 13:11:29.804 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7751. 2017-08-01 13:11:29.810 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7752. 2017-08-01 13:11:29.886 |-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= ?
  7753. 2017-08-01 13:11:29.887 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7754. 2017-08-01 13:11:29.915 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7755. 2017-08-01 13:11:29.917 |-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
  7756. 2017-08-01 13:11:29.917 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7757. 2017-08-01 13:11:29.918 |-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= ?
  7758. 2017-08-01 13:11:29.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7759. 2017-08-01 13:11:29.944 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7760. 2017-08-01 13:11:29.948 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7761. 2017-08-01 13:11:29.949 |-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=?)
  7762. 2017-08-01 13:11:29.950 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7763. 2017-08-01 13:11:29.975 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7764. 2017-08-01 13:11:29.976 |-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
  7765. 2017-08-01 13:11:29.977 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7766. 2017-08-01 13:11:30.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7767. 2017-08-01 13:11:30.013 |-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=?)
  7768. 2017-08-01 13:11:30.013 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7769. 2017-08-01 13:11:30.030 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7770. 2017-08-01 13:11:30.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7771. 2017-08-01 13:11:30.043 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7772. 2017-08-01 13:11:30.046 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7773. 2017-08-01 13:11:30.049 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7774. 2017-08-01 13:11:30.194 |-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
  7775. 2017-08-01 13:11:30.195 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  7776. 2017-08-01 13:11:30.230 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  7777. 2017-08-01 13:11:30.231 |-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
  7778. 2017-08-01 13:11:30.232 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7779. 2017-08-01 13:11:30.262 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7780. 2017-08-01 13:11:30.339 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7781. 2017-08-01 13:11:30.344 |-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= ?
  7782. 2017-08-01 13:11:30.344 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7783. 2017-08-01 13:11:30.346 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7784. 2017-08-01 13:11:30.354 |-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= ?
  7785. 2017-08-01 13:11:30.355 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7786. 2017-08-01 13:11:30.372 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7787. 2017-08-01 13:11:30.373 |-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
  7788. 2017-08-01 13:11:30.374 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7789. 2017-08-01 13:11:30.380 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7790. 2017-08-01 13:11:30.382 |-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
  7791. 2017-08-01 13:11:30.383 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7792. 2017-08-01 13:11:30.403 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7793. 2017-08-01 13:11:30.404 |-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=?)
  7794. 2017-08-01 13:11:30.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7795. 2017-08-01 13:11:30.414 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7796. 2017-08-01 13:11:30.417 |-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=?)
  7797. 2017-08-01 13:11:30.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7798. 2017-08-01 13:11:30.429 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7799. 2017-08-01 13:11:30.434 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7800. 2017-08-01 13:11:30.436 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7801. 2017-08-01 13:11:30.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7802. 2017-08-01 13:11:30.451 |-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
  7803. 2017-08-01 13:11:30.452 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7804. 2017-08-01 13:11:30.452 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7805. 2017-08-01 13:11:30.454 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7806. 2017-08-01 13:11:30.459 |-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
  7807. 2017-08-01 13:11:30.460 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7808. 2017-08-01 13:11:30.477 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7809. 2017-08-01 13:11:30.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  7810. 2017-08-01 13:11:30.515 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7811. 2017-08-01 13:11:30.520 |-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= ?
  7812. 2017-08-01 13:11:30.521 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7813. 2017-08-01 13:11:30.547 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7814. 2017-08-01 13:11:30.548 |-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
  7815. 2017-08-01 13:11:30.548 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7816. 2017-08-01 13:11:30.578 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7817. 2017-08-01 13:11:30.579 |-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=?)
  7818. 2017-08-01 13:11:30.579 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7819. 2017-08-01 13:11:30.605 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7820. 2017-08-01 13:11:30.610 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7821. 2017-08-01 13:11:30.613 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7822. 2017-08-01 13:11:30.690 |-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
  7823. 2017-08-01 13:11:30.691 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7824. 2017-08-01 13:11:30.836 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  7825. 2017-08-01 13:11:30.913 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7826. 2017-08-01 13:11:30.916 |-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= ?
  7827. 2017-08-01 13:11:30.917 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7828. 2017-08-01 13:11:30.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7829. 2017-08-01 13:11:30.945 |-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
  7830. 2017-08-01 13:11:30.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7831. 2017-08-01 13:11:30.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7832. 2017-08-01 13:11:30.976 |-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=?)
  7833. 2017-08-01 13:11:30.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7834. 2017-08-01 13:11:31.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7835. 2017-08-01 13:11:31.008 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7836. 2017-08-01 13:11:31.010 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7837. 2017-08-01 13:11:31.041 |-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=?
  7838. 2017-08-01 13:11:31.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7839. 2017-08-01 13:11:31.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  7840. 2017-08-01 13:11:31.131 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7841. 2017-08-01 13:11:31.141 |-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= ?
  7842. 2017-08-01 13:11:31.142 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7843. 2017-08-01 13:11:31.169 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7844. 2017-08-01 13:11:31.170 |-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
  7845. 2017-08-01 13:11:31.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7846. 2017-08-01 13:11:31.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7847. 2017-08-01 13:11:31.201 |-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=?)
  7848. 2017-08-01 13:11:31.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7849. 2017-08-01 13:11:31.227 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7850. 2017-08-01 13:11:31.233 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7851. 2017-08-01 13:11:31.236 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7852. 2017-08-01 13:11:31.242 |-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
  7853. 2017-08-01 13:11:31.243 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  7854. 2017-08-01 13:11:31.269 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  7855. 2017-08-01 13:11:31.300 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7856. 2017-08-01 13:11:31.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= ?
  7857. 2017-08-01 13:11:31.306 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7858. 2017-08-01 13:11:31.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7859. 2017-08-01 13:11:31.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
  7860. 2017-08-01 13:11:31.335 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7861. 2017-08-01 13:11:31.367 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7862. 2017-08-01 13:11:31.368 |-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=?)
  7863. 2017-08-01 13:11:31.368 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7864. 2017-08-01 13:11:31.394 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7865. 2017-08-01 13:11:31.399 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7866. 2017-08-01 13:11:31.401 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7867. 2017-08-01 13:11:31.405 |-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
  7868. 2017-08-01 13:11:31.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7869. 2017-08-01 13:11:31.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  7870. 2017-08-01 13:11:31.570 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7871. 2017-08-01 13:11:31.574 |-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= ?
  7872. 2017-08-01 13:11:31.574 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7873. 2017-08-01 13:11:31.601 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7874. 2017-08-01 13:11:31.602 |-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
  7875. 2017-08-01 13:11:31.603 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7876. 2017-08-01 13:11:31.633 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7877. 2017-08-01 13:11:31.634 |-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=?)
  7878. 2017-08-01 13:11:31.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7879. 2017-08-01 13:11:31.660 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7880. 2017-08-01 13:11:31.665 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7881. 2017-08-01 13:11:31.667 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7882. 2017-08-01 13:11:31.690 |-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
  7883. 2017-08-01 13:11:31.691 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7884. 2017-08-01 13:11:31.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  7885. 2017-08-01 13:11:31.799 |-DEBUG [http-nio-8089-exec-7] 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
  7886. 2017-08-01 13:11:31.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7887. 2017-08-01 13:11:32.850 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| <== Total: 586
  7888. 2017-08-01 13:11:32.852 |-DEBUG [http-nio-8089-exec-7] 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
  7889. 2017-08-01 13:11:32.853 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  7890. 2017-08-01 13:11:32.924 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| <== Total: 325
  7891. 2017-08-01 13:11:35.443 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7892. 2017-08-01 13:11:35.447 |-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= ?
  7893. 2017-08-01 13:11:35.447 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7894. 2017-08-01 13:11:35.474 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7895. 2017-08-01 13:11:35.475 |-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
  7896. 2017-08-01 13:11:35.476 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7897. 2017-08-01 13:11:35.506 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7898. 2017-08-01 13:11:35.507 |-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=?)
  7899. 2017-08-01 13:11:35.507 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7900. 2017-08-01 13:11:35.533 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7901. 2017-08-01 13:11:35.537 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7902. 2017-08-01 13:11:35.538 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7903. 2017-08-01 13:11:35.547 |-DEBUG [http-nio-8089-exec-10] 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
  7904. 2017-08-01 13:11:35.548 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7905. 2017-08-01 13:11:35.576 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  7906. 2017-08-01 13:11:35.580 |-DEBUG [http-nio-8089-exec-10] 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
  7907. 2017-08-01 13:11:35.581 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7908. 2017-08-01 13:11:35.613 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  7909. 2017-08-01 13:11:35.616 |-DEBUG [http-nio-8089-exec-10] 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
  7910. 2017-08-01 13:11:35.617 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7911. 2017-08-01 13:11:35.648 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  7912. 2017-08-01 13:12:04.162 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7913. 2017-08-01 13:12:04.165 |-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= ?
  7914. 2017-08-01 13:12:04.166 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7915. 2017-08-01 13:12:04.193 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7916. 2017-08-01 13:12:04.194 |-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
  7917. 2017-08-01 13:12:04.195 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7918. 2017-08-01 13:12:04.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7919. 2017-08-01 13:12:04.225 |-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=?)
  7920. 2017-08-01 13:12:04.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7921. 2017-08-01 13:12:04.251 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7922. 2017-08-01 13:12:04.255 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7923. 2017-08-01 13:12:04.257 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7924. 2017-08-01 13:12:04.262 |-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
  7925. 2017-08-01 13:12:04.262 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7926. 2017-08-01 13:12:04.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  7927. 2017-08-01 13:12:04.292 |-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
  7928. 2017-08-01 13:12:04.293 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7929. 2017-08-01 13:12:04.324 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  7930. 2017-08-01 13:12:04.327 |-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
  7931. 2017-08-01 13:12:04.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7932. 2017-08-01 13:12:04.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  7933. 2017-08-01 13:13:20.447 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7934. 2017-08-01 13:13:20.448 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7935. 2017-08-01 13:13:20.478 |-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= ?
  7936. 2017-08-01 13:13:20.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7937. 2017-08-01 13:13:20.479 |-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= ?
  7938. 2017-08-01 13:13:20.480 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7939. 2017-08-01 13:13:20.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7940. 2017-08-01 13:13:20.505 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7941. 2017-08-01 13:13:20.529 |-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
  7942. 2017-08-01 13:13:20.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7943. 2017-08-01 13:13:20.530 |-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
  7944. 2017-08-01 13:13:20.530 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7945. 2017-08-01 13:13:20.558 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7946. 2017-08-01 13:13:20.558 |-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=?)
  7947. 2017-08-01 13:13:20.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7948. 2017-08-01 13:13:20.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7949. 2017-08-01 13:13:20.560 |-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=?)
  7950. 2017-08-01 13:13:20.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7951. 2017-08-01 13:13:20.585 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7952. 2017-08-01 13:13:20.586 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7953. 2017-08-01 13:13:20.591 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7954. 2017-08-01 13:13:20.591 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7955. 2017-08-01 13:13:20.593 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7956. 2017-08-01 13:13:20.593 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7957. 2017-08-01 13:13:20.614 |-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
  7958. 2017-08-01 13:13:20.615 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  7959. 2017-08-01 13:13:20.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  7960. 2017-08-01 13:13:20.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7961. 2017-08-01 13:13:20.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7962. 2017-08-01 13:13:20.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7963. 2017-08-01 13:13:20.731 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7964. 2017-08-01 13:13:20.735 |-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= ?
  7965. 2017-08-01 13:13:20.735 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7966. 2017-08-01 13:13:20.743 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7967. 2017-08-01 13:13:20.756 |-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= ?
  7968. 2017-08-01 13:13:20.756 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7969. 2017-08-01 13:13:20.761 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7970. 2017-08-01 13:13:20.762 |-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
  7971. 2017-08-01 13:13:20.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7972. 2017-08-01 13:13:20.783 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7973. 2017-08-01 13:13:20.784 |-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
  7974. 2017-08-01 13:13:20.784 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7975. 2017-08-01 13:13:20.792 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7976. 2017-08-01 13:13:20.792 |-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=?)
  7977. 2017-08-01 13:13:20.793 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7978. 2017-08-01 13:13:20.812 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  7979. 2017-08-01 13:13:20.813 |-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=?)
  7980. 2017-08-01 13:13:20.813 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  7981. 2017-08-01 13:13:20.819 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7982. 2017-08-01 13:13:20.824 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7983. 2017-08-01 13:13:20.825 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7984. 2017-08-01 13:13:20.827 |-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
  7985. 2017-08-01 13:13:20.828 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7986. 2017-08-01 13:13:20.838 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  7987. 2017-08-01 13:13:20.842 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  7988. 2017-08-01 13:13:20.844 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7989. 2017-08-01 13:13:20.847 |-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
  7990. 2017-08-01 13:13:20.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7991. 2017-08-01 13:13:20.855 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  7992. 2017-08-01 13:13:20.867 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  7993. 2017-08-01 13:13:20.870 |-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= ?
  7994. 2017-08-01 13:13:20.870 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  7995. 2017-08-01 13:13:20.872 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7996. 2017-08-01 13:13:20.898 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7997. 2017-08-01 13:13:20.899 |-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
  7998. 2017-08-01 13:13:20.899 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  7999. 2017-08-01 13:13:20.926 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8000. 2017-08-01 13:13:20.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8001. 2017-08-01 13:13:20.928 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8002. 2017-08-01 13:13:20.954 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8003. 2017-08-01 13:13:20.961 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8004. 2017-08-01 13:13:20.965 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8005. 2017-08-01 13:13:20.983 |-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
  8006. 2017-08-01 13:13:20.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8007. 2017-08-01 13:13:21.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  8008. 2017-08-01 13:13:21.129 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8009. 2017-08-01 13:13:21.132 |-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= ?
  8010. 2017-08-01 13:13:21.133 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8011. 2017-08-01 13:13:21.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8012. 2017-08-01 13:13:21.160 |-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
  8013. 2017-08-01 13:13:21.160 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8014. 2017-08-01 13:13:21.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8015. 2017-08-01 13:13:21.189 |-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=?)
  8016. 2017-08-01 13:13:21.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8017. 2017-08-01 13:13:21.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8018. 2017-08-01 13:13:21.218 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8019. 2017-08-01 13:13:21.220 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8020. 2017-08-01 13:13:21.225 |-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=?
  8021. 2017-08-01 13:13:21.226 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8022. 2017-08-01 13:13:21.251 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8023. 2017-08-01 13:13:21.359 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8024. 2017-08-01 13:13:21.361 |-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= ?
  8025. 2017-08-01 13:13:21.362 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8026. 2017-08-01 13:13:21.389 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8027. 2017-08-01 13:13:21.390 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8028. 2017-08-01 13:13:21.391 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8029. 2017-08-01 13:13:21.418 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8030. 2017-08-01 13:13:21.419 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8031. 2017-08-01 13:13:21.420 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8032. 2017-08-01 13:13:21.444 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8033. 2017-08-01 13:13:21.449 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8034. 2017-08-01 13:13:21.451 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8035. 2017-08-01 13:13:21.455 |-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
  8036. 2017-08-01 13:13:21.456 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8037. 2017-08-01 13:13:21.483 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8038. 2017-08-01 13:13:21.486 |-DEBUG [http-nio-8089-exec-3] 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
  8039. 2017-08-01 13:13:21.486 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8040. 2017-08-01 13:13:21.516 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8041. 2017-08-01 13:13:21.520 |-DEBUG [http-nio-8089-exec-3] 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
  8042. 2017-08-01 13:13:21.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8043. 2017-08-01 13:13:21.551 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8044. 2017-08-01 13:13:27.809 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8045. 2017-08-01 13:13:27.814 |-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= ?
  8046. 2017-08-01 13:13:27.815 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8047. 2017-08-01 13:13:27.842 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8048. 2017-08-01 13:13:27.843 |-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
  8049. 2017-08-01 13:13:27.844 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8050. 2017-08-01 13:13:27.872 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8051. 2017-08-01 13:13:27.873 |-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=?)
  8052. 2017-08-01 13:13:27.873 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8053. 2017-08-01 13:13:27.897 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8054. 2017-08-01 13:13:27.902 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8055. 2017-08-01 13:13:27.904 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8056. 2017-08-01 13:13:27.908 |-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
  8057. 2017-08-01 13:13:27.909 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8058. 2017-08-01 13:13:27.936 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8059. 2017-08-01 13:13:27.938 |-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
  8060. 2017-08-01 13:13:27.939 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8061. 2017-08-01 13:13:27.970 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8062. 2017-08-01 13:13:27.972 |-DEBUG [http-nio-8089-exec-5] 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
  8063. 2017-08-01 13:13:27.974 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8064. 2017-08-01 13:13:28.004 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8065. 2017-08-01 13:13:44.572 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8066. 2017-08-01 13:13:44.575 |-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= ?
  8067. 2017-08-01 13:13:44.576 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8068. 2017-08-01 13:13:44.576 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8069. 2017-08-01 13:13:44.579 |-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= ?
  8070. 2017-08-01 13:13:44.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8071. 2017-08-01 13:13:44.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8072. 2017-08-01 13:13:44.603 |-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
  8073. 2017-08-01 13:13:44.604 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8074. 2017-08-01 13:13:44.605 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8075. 2017-08-01 13:13:44.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8076. 2017-08-01 13:13:44.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8077. 2017-08-01 13:13:44.631 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8078. 2017-08-01 13:13:44.632 |-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=?)
  8079. 2017-08-01 13:13:44.633 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8080. 2017-08-01 13:13:44.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8081. 2017-08-01 13:13:44.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=?)
  8082. 2017-08-01 13:13:44.635 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8083. 2017-08-01 13:13:44.657 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8084. 2017-08-01 13:13:44.662 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8085. 2017-08-01 13:13:44.664 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8086. 2017-08-01 13:13:44.665 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8087. 2017-08-01 13:13:44.667 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8088. 2017-08-01 13:13:44.670 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8089. 2017-08-01 13:13:44.677 |-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
  8090. 2017-08-01 13:13:44.677 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8091. 2017-08-01 13:13:44.706 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  8092. 2017-08-01 13:13:44.708 |-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
  8093. 2017-08-01 13:13:44.709 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8094. 2017-08-01 13:13:44.738 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8095. 2017-08-01 13:13:44.787 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8096. 2017-08-01 13:13:44.787 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8097. 2017-08-01 13:13:44.792 |-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= ?
  8098. 2017-08-01 13:13:44.792 |-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= ?
  8099. 2017-08-01 13:13:44.792 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8100. 2017-08-01 13:13:44.792 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8101. 2017-08-01 13:13:44.818 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8102. 2017-08-01 13:13:44.818 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8103. 2017-08-01 13:13:44.819 |-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
  8104. 2017-08-01 13:13:44.819 |-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
  8105. 2017-08-01 13:13:44.819 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8106. 2017-08-01 13:13:44.819 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8107. 2017-08-01 13:13:44.848 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8108. 2017-08-01 13:13:44.848 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8109. 2017-08-01 13:13:44.848 |-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=?)
  8110. 2017-08-01 13:13:44.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=?)
  8111. 2017-08-01 13:13:44.849 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8112. 2017-08-01 13:13:44.849 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8113. 2017-08-01 13:13:44.873 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8114. 2017-08-01 13:13:44.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8115. 2017-08-01 13:13:44.879 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8116. 2017-08-01 13:13:44.879 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8117. 2017-08-01 13:13:44.881 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8118. 2017-08-01 13:13:44.881 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8119. 2017-08-01 13:13:44.882 |-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
  8120. 2017-08-01 13:13:44.883 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8121. 2017-08-01 13:13:44.883 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8122. 2017-08-01 13:13:44.883 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8123. 2017-08-01 13:13:44.909 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8124. 2017-08-01 13:13:44.909 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8125. 2017-08-01 13:13:44.925 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8126. 2017-08-01 13:13:44.929 |-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= ?
  8127. 2017-08-01 13:13:44.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8128. 2017-08-01 13:13:44.955 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8129. 2017-08-01 13:13:44.956 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8130. 2017-08-01 13:13:44.956 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8131. 2017-08-01 13:13:44.985 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8132. 2017-08-01 13:13:44.986 |-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=?)
  8133. 2017-08-01 13:13:44.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8134. 2017-08-01 13:13:45.013 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8135. 2017-08-01 13:13:45.020 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8136. 2017-08-01 13:13:45.022 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8137. 2017-08-01 13:13:45.032 |-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
  8138. 2017-08-01 13:13:45.033 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8139. 2017-08-01 13:13:45.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  8140. 2017-08-01 13:13:45.169 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8141. 2017-08-01 13:13:45.172 |-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= ?
  8142. 2017-08-01 13:13:45.173 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8143. 2017-08-01 13:13:45.199 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8144. 2017-08-01 13:13:45.200 |-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
  8145. 2017-08-01 13:13:45.200 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8146. 2017-08-01 13:13:45.229 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8147. 2017-08-01 13:13:45.230 |-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=?)
  8148. 2017-08-01 13:13:45.230 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8149. 2017-08-01 13:13:45.256 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8150. 2017-08-01 13:13:45.261 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8151. 2017-08-01 13:13:45.262 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8152. 2017-08-01 13:13:45.267 |-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=?
  8153. 2017-08-01 13:13:45.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8154. 2017-08-01 13:13:45.294 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8155. 2017-08-01 13:13:45.432 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8156. 2017-08-01 13:13:45.436 |-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= ?
  8157. 2017-08-01 13:13:45.436 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8158. 2017-08-01 13:13:45.462 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8159. 2017-08-01 13:13:45.463 |-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
  8160. 2017-08-01 13:13:45.463 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8161. 2017-08-01 13:13:45.492 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8162. 2017-08-01 13:13:45.493 |-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=?)
  8163. 2017-08-01 13:13:45.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8164. 2017-08-01 13:13:45.519 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8165. 2017-08-01 13:13:45.524 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8166. 2017-08-01 13:13:45.526 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8167. 2017-08-01 13:13:45.530 |-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
  8168. 2017-08-01 13:13:45.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8169. 2017-08-01 13:13:45.557 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8170. 2017-08-01 13:13:45.560 |-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
  8171. 2017-08-01 13:13:45.560 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8172. 2017-08-01 13:13:45.592 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8173. 2017-08-01 13:13:45.594 |-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
  8174. 2017-08-01 13:13:45.595 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8175. 2017-08-01 13:13:45.626 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8176. 2017-08-01 13:13:51.838 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8177. 2017-08-01 13:13:51.841 |-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= ?
  8178. 2017-08-01 13:13:51.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8179. 2017-08-01 13:13:51.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8180. 2017-08-01 13:13:51.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8181. 2017-08-01 13:13:51.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8182. 2017-08-01 13:13:51.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8183. 2017-08-01 13:13:51.899 |-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=?)
  8184. 2017-08-01 13:13:51.900 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8185. 2017-08-01 13:13:51.954 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8186. 2017-08-01 13:13:51.958 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8187. 2017-08-01 13:13:51.960 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8188. 2017-08-01 13:13:51.963 |-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
  8189. 2017-08-01 13:13:51.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8190. 2017-08-01 13:13:51.990 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8191. 2017-08-01 13:13:51.992 |-DEBUG [http-nio-8089-exec-2] 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
  8192. 2017-08-01 13:13:51.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8193. 2017-08-01 13:13:52.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8194. 2017-08-01 13:13:52.027 |-DEBUG [http-nio-8089-exec-2] 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
  8195. 2017-08-01 13:13:52.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8196. 2017-08-01 13:13:52.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8197. 2017-08-01 13:14:03.290 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8198. 2017-08-01 13:14:03.294 |-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= ?
  8199. 2017-08-01 13:14:03.294 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8200. 2017-08-01 13:14:03.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8201. 2017-08-01 13:14:03.322 |-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
  8202. 2017-08-01 13:14:03.322 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8203. 2017-08-01 13:14:03.352 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8204. 2017-08-01 13:14:03.353 |-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=?)
  8205. 2017-08-01 13:14:03.354 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8206. 2017-08-01 13:14:03.380 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8207. 2017-08-01 13:14:03.386 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8208. 2017-08-01 13:14:03.389 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8209. 2017-08-01 13:14:03.395 |-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
  8210. 2017-08-01 13:14:03.396 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8211. 2017-08-01 13:14:03.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8212. 2017-08-01 13:14:03.426 |-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
  8213. 2017-08-01 13:14:03.427 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8214. 2017-08-01 13:14:03.459 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8215. 2017-08-01 13:14:03.464 |-DEBUG [http-nio-8089-exec-4] 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
  8216. 2017-08-01 13:14:03.465 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8217. 2017-08-01 13:14:03.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8218. 2017-08-01 13:14:36.092 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8219. 2017-08-01 13:14:36.096 |-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= ?
  8220. 2017-08-01 13:14:36.097 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8221. 2017-08-01 13:14:36.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8222. 2017-08-01 13:14:36.124 |-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
  8223. 2017-08-01 13:14:36.124 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8224. 2017-08-01 13:14:36.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8225. 2017-08-01 13:14:36.154 |-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=?)
  8226. 2017-08-01 13:14:36.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8227. 2017-08-01 13:14:36.180 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8228. 2017-08-01 13:14:36.184 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8229. 2017-08-01 13:14:36.186 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8230. 2017-08-01 13:14:36.190 |-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
  8231. 2017-08-01 13:14:36.190 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8232. 2017-08-01 13:14:36.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8233. 2017-08-01 13:14:36.219 |-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
  8234. 2017-08-01 13:14:36.219 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8235. 2017-08-01 13:14:36.255 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8236. 2017-08-01 13:14:36.257 |-DEBUG [http-nio-8089-exec-5] 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
  8237. 2017-08-01 13:14:36.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-06-24 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8238. 2017-08-01 13:14:36.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 98
  8239. 2017-08-01 13:14:54.980 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8240. 2017-08-01 13:14:54.983 |-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= ?
  8241. 2017-08-01 13:14:54.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8242. 2017-08-01 13:14:55.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8243. 2017-08-01 13:14:55.011 |-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
  8244. 2017-08-01 13:14:55.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8245. 2017-08-01 13:14:55.040 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8246. 2017-08-01 13:14:55.041 |-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=?)
  8247. 2017-08-01 13:14:55.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8248. 2017-08-01 13:14:55.067 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8249. 2017-08-01 13:14:55.071 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8250. 2017-08-01 13:14:55.072 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8251. 2017-08-01 13:14:55.075 |-DEBUG [http-nio-8089-exec-10] 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
  8252. 2017-08-01 13:14:55.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8253. 2017-08-01 13:14:55.101 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8254. 2017-08-01 13:14:55.104 |-DEBUG [http-nio-8089-exec-10] 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
  8255. 2017-08-01 13:14:55.104 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8256. 2017-08-01 13:14:55.136 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8257. 2017-08-01 13:14:55.138 |-DEBUG [http-nio-8089-exec-10] 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
  8258. 2017-08-01 13:14:55.139 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8259. 2017-08-01 13:14:55.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 29
  8260. 2017-08-01 13:15:11.582 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8261. 2017-08-01 13:15:11.587 |-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= ?
  8262. 2017-08-01 13:15:11.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8263. 2017-08-01 13:15:11.614 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8264. 2017-08-01 13:15:11.615 |-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
  8265. 2017-08-01 13:15:11.615 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8266. 2017-08-01 13:15:11.644 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8267. 2017-08-01 13:15:11.645 |-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=?)
  8268. 2017-08-01 13:15:11.645 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8269. 2017-08-01 13:15:11.671 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8270. 2017-08-01 13:15:11.678 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8271. 2017-08-01 13:15:11.681 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8272. 2017-08-01 13:15:11.686 |-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
  8273. 2017-08-01 13:15:11.687 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8274. 2017-08-01 13:15:11.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8275. 2017-08-01 13:15:11.718 |-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
  8276. 2017-08-01 13:15:11.719 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8277. 2017-08-01 13:15:11.750 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8278. 2017-08-01 13:15:11.753 |-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
  8279. 2017-08-01 13:15:11.754 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8280. 2017-08-01 13:15:11.786 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 29
  8281. 2017-08-01 13:15:12.092 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8282. 2017-08-01 13:15:12.096 |-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= ?
  8283. 2017-08-01 13:15:12.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8284. 2017-08-01 13:15:12.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8285. 2017-08-01 13:15:12.124 |-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
  8286. 2017-08-01 13:15:12.124 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8287. 2017-08-01 13:15:12.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8288. 2017-08-01 13:15:12.155 |-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=?)
  8289. 2017-08-01 13:15:12.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8290. 2017-08-01 13:15:12.182 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8291. 2017-08-01 13:15:12.188 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8292. 2017-08-01 13:15:12.190 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8293. 2017-08-01 13:15:12.195 |-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
  8294. 2017-08-01 13:15:12.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8295. 2017-08-01 13:15:12.223 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8296. 2017-08-01 13:15:12.226 |-DEBUG [http-nio-8089-exec-2] 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
  8297. 2017-08-01 13:15:12.227 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8298. 2017-08-01 13:15:12.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8299. 2017-08-01 13:15:12.263 |-DEBUG [http-nio-8089-exec-2] 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
  8300. 2017-08-01 13:15:12.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8301. 2017-08-01 13:15:12.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 29
  8302. 2017-08-01 13:15:12.408 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8303. 2017-08-01 13:15:12.412 |-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= ?
  8304. 2017-08-01 13:15:12.412 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8305. 2017-08-01 13:15:12.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8306. 2017-08-01 13:15:12.438 |-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
  8307. 2017-08-01 13:15:12.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8308. 2017-08-01 13:15:12.467 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8309. 2017-08-01 13:15:12.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=?)
  8310. 2017-08-01 13:15:12.469 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8311. 2017-08-01 13:15:12.495 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8312. 2017-08-01 13:15:12.499 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8313. 2017-08-01 13:15:12.500 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8314. 2017-08-01 13:15:12.504 |-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
  8315. 2017-08-01 13:15:12.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8316. 2017-08-01 13:15:12.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8317. 2017-08-01 13:15:12.534 |-DEBUG [http-nio-8089-exec-3] 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
  8318. 2017-08-01 13:15:12.534 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8319. 2017-08-01 13:15:12.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8320. 2017-08-01 13:15:12.568 |-DEBUG [http-nio-8089-exec-3] 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
  8321. 2017-08-01 13:15:12.569 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8322. 2017-08-01 13:15:12.599 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 29
  8323. 2017-08-01 13:15:12.727 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8324. 2017-08-01 13:15:12.731 |-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= ?
  8325. 2017-08-01 13:15:12.732 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8326. 2017-08-01 13:15:12.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8327. 2017-08-01 13:15:12.759 |-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
  8328. 2017-08-01 13:15:12.760 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8329. 2017-08-01 13:15:12.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8330. 2017-08-01 13:15:12.789 |-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=?)
  8331. 2017-08-01 13:15:12.790 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8332. 2017-08-01 13:15:12.816 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8333. 2017-08-01 13:15:12.820 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8334. 2017-08-01 13:15:12.822 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8335. 2017-08-01 13:15:12.825 |-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
  8336. 2017-08-01 13:15:12.826 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8337. 2017-08-01 13:15:12.852 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8338. 2017-08-01 13:15:12.854 |-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
  8339. 2017-08-01 13:15:12.855 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8340. 2017-08-01 13:15:12.886 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8341. 2017-08-01 13:15:12.889 |-DEBUG [http-nio-8089-exec-4] 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
  8342. 2017-08-01 13:15:12.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-24 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8343. 2017-08-01 13:15:12.920 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 29
  8344. 2017-08-01 13:15:27.935 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8345. 2017-08-01 13:15:27.936 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8346. 2017-08-01 13:15:27.939 |-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= ?
  8347. 2017-08-01 13:15:27.940 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8348. 2017-08-01 13:15:27.966 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8349. 2017-08-01 13:15:27.967 |-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
  8350. 2017-08-01 13:15:27.967 |-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= ?
  8351. 2017-08-01 13:15:27.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8352. 2017-08-01 13:15:27.968 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8353. 2017-08-01 13:15:27.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8354. 2017-08-01 13:15:27.996 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8355. 2017-08-01 13:15:27.996 |-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=?)
  8356. 2017-08-01 13:15:27.997 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8357. 2017-08-01 13:15:28.017 |-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
  8358. 2017-08-01 13:15:28.018 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8359. 2017-08-01 13:15:28.022 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8360. 2017-08-01 13:15:28.026 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8361. 2017-08-01 13:15:28.027 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8362. 2017-08-01 13:15:28.032 |-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
  8363. 2017-08-01 13:15:28.033 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8364. 2017-08-01 13:15:28.045 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8365. 2017-08-01 13:15:28.046 |-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=?)
  8366. 2017-08-01 13:15:28.046 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8367. 2017-08-01 13:15:28.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  8368. 2017-08-01 13:15:28.062 |-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
  8369. 2017-08-01 13:15:28.063 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8370. 2017-08-01 13:15:28.071 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8371. 2017-08-01 13:15:28.074 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8372. 2017-08-01 13:15:28.075 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8373. 2017-08-01 13:15:28.092 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8374. 2017-08-01 13:15:28.134 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8375. 2017-08-01 13:15:28.134 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8376. 2017-08-01 13:15:28.136 |-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= ?
  8377. 2017-08-01 13:15:28.136 |-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= ?
  8378. 2017-08-01 13:15:28.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8379. 2017-08-01 13:15:28.137 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8380. 2017-08-01 13:15:28.163 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8381. 2017-08-01 13:15:28.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8382. 2017-08-01 13:15:28.164 |-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
  8383. 2017-08-01 13:15:28.164 |-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
  8384. 2017-08-01 13:15:28.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8385. 2017-08-01 13:15:28.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8386. 2017-08-01 13:15:28.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8387. 2017-08-01 13:15:28.194 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8388. 2017-08-01 13:15:28.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8389. 2017-08-01 13:15:28.195 |-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=?)
  8390. 2017-08-01 13:15:28.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8391. 2017-08-01 13:15:28.196 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8392. 2017-08-01 13:15:28.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8393. 2017-08-01 13:15:28.222 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8394. 2017-08-01 13:15:28.228 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8395. 2017-08-01 13:15:28.228 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8396. 2017-08-01 13:15:28.230 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8397. 2017-08-01 13:15:28.230 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8398. 2017-08-01 13:15:28.233 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8399. 2017-08-01 13:15:28.234 |-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
  8400. 2017-08-01 13:15:28.234 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8401. 2017-08-01 13:15:28.235 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8402. 2017-08-01 13:15:28.261 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8403. 2017-08-01 13:15:28.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8404. 2017-08-01 13:15:28.274 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8405. 2017-08-01 13:15:28.276 |-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= ?
  8406. 2017-08-01 13:15:28.276 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8407. 2017-08-01 13:15:28.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8408. 2017-08-01 13:15:28.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8409. 2017-08-01 13:15:28.304 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8410. 2017-08-01 13:15:28.333 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8411. 2017-08-01 13:15:28.334 |-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=?)
  8412. 2017-08-01 13:15:28.334 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8413. 2017-08-01 13:15:28.360 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8414. 2017-08-01 13:15:28.363 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8415. 2017-08-01 13:15:28.365 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8416. 2017-08-01 13:15:28.372 |-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
  8417. 2017-08-01 13:15:28.373 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8418. 2017-08-01 13:15:28.460 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  8419. 2017-08-01 13:15:28.492 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8420. 2017-08-01 13:15:28.494 |-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= ?
  8421. 2017-08-01 13:15:28.494 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8422. 2017-08-01 13:15:28.520 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8423. 2017-08-01 13:15:28.521 |-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
  8424. 2017-08-01 13:15:28.522 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8425. 2017-08-01 13:15:28.551 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8426. 2017-08-01 13:15:28.552 |-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=?)
  8427. 2017-08-01 13:15:28.553 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8428. 2017-08-01 13:15:28.579 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8429. 2017-08-01 13:15:28.583 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8430. 2017-08-01 13:15:28.586 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8431. 2017-08-01 13:15:28.593 |-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=?
  8432. 2017-08-01 13:15:28.595 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8433. 2017-08-01 13:15:28.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8434. 2017-08-01 13:15:28.729 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8435. 2017-08-01 13:15:28.731 |-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= ?
  8436. 2017-08-01 13:15:28.731 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8437. 2017-08-01 13:15:28.757 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8438. 2017-08-01 13:15:28.758 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8439. 2017-08-01 13:15:28.758 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8440. 2017-08-01 13:15:28.787 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8441. 2017-08-01 13:15:28.788 |-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=?)
  8442. 2017-08-01 13:15:28.788 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8443. 2017-08-01 13:15:28.814 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8444. 2017-08-01 13:15:28.819 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8445. 2017-08-01 13:15:28.822 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8446. 2017-08-01 13:15:28.828 |-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
  8447. 2017-08-01 13:15:28.829 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8448. 2017-08-01 13:15:28.856 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8449. 2017-08-01 13:15:28.858 |-DEBUG [http-nio-8089-exec-9] 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
  8450. 2017-08-01 13:15:28.859 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8451. 2017-08-01 13:15:28.890 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8452. 2017-08-01 13:15:28.892 |-DEBUG [http-nio-8089-exec-9] 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
  8453. 2017-08-01 13:15:28.893 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8454. 2017-08-01 13:15:28.923 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8455. 2017-08-01 13:15:49.062 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8456. 2017-08-01 13:15:49.065 |-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= ?
  8457. 2017-08-01 13:15:49.065 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8458. 2017-08-01 13:15:49.092 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8459. 2017-08-01 13:15:49.093 |-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
  8460. 2017-08-01 13:15:49.093 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8461. 2017-08-01 13:15:49.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8462. 2017-08-01 13:15:49.124 |-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=?)
  8463. 2017-08-01 13:15:49.124 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8464. 2017-08-01 13:15:49.151 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8465. 2017-08-01 13:15:49.156 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8466. 2017-08-01 13:15:49.158 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8467. 2017-08-01 13:15:49.163 |-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
  8468. 2017-08-01 13:15:49.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8469. 2017-08-01 13:15:49.192 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8470. 2017-08-01 13:15:49.194 |-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
  8471. 2017-08-01 13:15:49.194 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8472. 2017-08-01 13:15:49.225 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8473. 2017-08-01 13:15:49.228 |-DEBUG [http-nio-8089-exec-5] 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
  8474. 2017-08-01 13:15:49.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8475. 2017-08-01 13:15:49.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8476. 2017-08-01 13:17:31.588 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8477. 2017-08-01 13:17:31.614 |-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= ?
  8478. 2017-08-01 13:17:31.614 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8479. 2017-08-01 13:17:31.640 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8480. 2017-08-01 13:17:31.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
  8481. 2017-08-01 13:17:31.666 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8482. 2017-08-01 13:17:31.695 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8483. 2017-08-01 13:17:31.696 |-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=?)
  8484. 2017-08-01 13:17:31.696 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8485. 2017-08-01 13:17:31.789 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8486. 2017-08-01 13:17:31.793 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8487. 2017-08-01 13:17:31.796 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8488. 2017-08-01 13:17:31.805 |-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
  8489. 2017-08-01 13:17:31.806 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8490. 2017-08-01 13:17:31.892 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8491. 2017-08-01 13:17:31.897 |-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
  8492. 2017-08-01 13:17:31.898 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8493. 2017-08-01 13:17:31.948 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8494. 2017-08-01 13:17:31.951 |-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
  8495. 2017-08-01 13:17:31.952 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8496. 2017-08-01 13:17:31.997 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8497. 2017-08-01 13:17:32.544 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8498. 2017-08-01 13:17:32.546 |-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= ?
  8499. 2017-08-01 13:17:32.547 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8500. 2017-08-01 13:17:32.578 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8501. 2017-08-01 13:17:32.579 |-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
  8502. 2017-08-01 13:17:32.579 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8503. 2017-08-01 13:17:32.630 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8504. 2017-08-01 13:17:32.631 |-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=?)
  8505. 2017-08-01 13:17:32.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8506. 2017-08-01 13:17:32.683 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8507. 2017-08-01 13:17:32.685 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8508. 2017-08-01 13:17:32.686 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8509. 2017-08-01 13:17:32.690 |-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
  8510. 2017-08-01 13:17:32.690 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8511. 2017-08-01 13:17:32.717 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8512. 2017-08-01 13:17:32.720 |-DEBUG [http-nio-8089-exec-3] 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
  8513. 2017-08-01 13:17:32.720 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8514. 2017-08-01 13:17:32.751 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8515. 2017-08-01 13:17:32.754 |-DEBUG [http-nio-8089-exec-3] 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
  8516. 2017-08-01 13:17:32.754 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8517. 2017-08-01 13:17:32.785 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8518. 2017-08-01 13:17:34.062 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8519. 2017-08-01 13:17:34.064 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8520. 2017-08-01 13:17:34.064 |-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= ?
  8521. 2017-08-01 13:17:34.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8522. 2017-08-01 13:17:34.089 |-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= ?
  8523. 2017-08-01 13:17:34.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8524. 2017-08-01 13:17:34.092 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8525. 2017-08-01 13:17:34.093 |-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
  8526. 2017-08-01 13:17:34.094 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8527. 2017-08-01 13:17:34.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8528. 2017-08-01 13:17:34.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8529. 2017-08-01 13:17:34.123 |-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=?)
  8530. 2017-08-01 13:17:34.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8531. 2017-08-01 13:17:34.139 |-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
  8532. 2017-08-01 13:17:34.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8533. 2017-08-01 13:17:34.149 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8534. 2017-08-01 13:17:34.151 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8535. 2017-08-01 13:17:34.152 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8536. 2017-08-01 13:17:34.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8537. 2017-08-01 13:17:34.168 |-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=?)
  8538. 2017-08-01 13:17:34.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8539. 2017-08-01 13:17:34.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8540. 2017-08-01 13:17:34.196 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8541. 2017-08-01 13:17:34.197 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8542. 2017-08-01 13:17:34.200 |-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
  8543. 2017-08-01 13:17:34.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  8544. 2017-08-01 13:17:34.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  8545. 2017-08-01 13:17:34.229 |-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
  8546. 2017-08-01 13:17:34.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8547. 2017-08-01 13:17:34.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8548. 2017-08-01 13:17:34.315 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8549. 2017-08-01 13:17:34.316 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8550. 2017-08-01 13:17:34.318 |-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= ?
  8551. 2017-08-01 13:17:34.318 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8552. 2017-08-01 13:17:34.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= ?
  8553. 2017-08-01 13:17:34.320 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8554. 2017-08-01 13:17:34.343 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8555. 2017-08-01 13:17:34.344 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8556. 2017-08-01 13:17:34.345 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8557. 2017-08-01 13:17:34.347 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8558. 2017-08-01 13:17:34.348 |-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
  8559. 2017-08-01 13:17:34.348 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8560. 2017-08-01 13:17:34.372 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8561. 2017-08-01 13:17:34.374 |-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=?)
  8562. 2017-08-01 13:17:34.374 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8563. 2017-08-01 13:17:34.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8564. 2017-08-01 13:17:34.378 |-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=?)
  8565. 2017-08-01 13:17:34.379 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8566. 2017-08-01 13:17:34.399 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8567. 2017-08-01 13:17:34.403 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8568. 2017-08-01 13:17:34.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8569. 2017-08-01 13:17:34.404 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8570. 2017-08-01 13:17:34.406 |-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
  8571. 2017-08-01 13:17:34.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8572. 2017-08-01 13:17:34.408 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8573. 2017-08-01 13:17:34.409 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8574. 2017-08-01 13:17:34.411 |-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
  8575. 2017-08-01 13:17:34.412 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8576. 2017-08-01 13:17:34.434 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  8577. 2017-08-01 13:17:34.437 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8578. 2017-08-01 13:17:34.450 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8579. 2017-08-01 13:17:34.451 |-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= ?
  8580. 2017-08-01 13:17:34.452 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8581. 2017-08-01 13:17:34.477 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8582. 2017-08-01 13:17:34.478 |-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
  8583. 2017-08-01 13:17:34.479 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8584. 2017-08-01 13:17:34.511 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8585. 2017-08-01 13:17:34.512 |-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=?)
  8586. 2017-08-01 13:17:34.512 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8587. 2017-08-01 13:17:34.538 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8588. 2017-08-01 13:17:34.541 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8589. 2017-08-01 13:17:34.542 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8590. 2017-08-01 13:17:34.549 |-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
  8591. 2017-08-01 13:17:34.549 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8592. 2017-08-01 13:17:34.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  8593. 2017-08-01 13:17:34.661 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8594. 2017-08-01 13:17:34.663 |-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= ?
  8595. 2017-08-01 13:17:34.664 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8596. 2017-08-01 13:17:34.701 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8597. 2017-08-01 13:17:34.702 |-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
  8598. 2017-08-01 13:17:34.703 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8599. 2017-08-01 13:17:34.749 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8600. 2017-08-01 13:17:34.750 |-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=?)
  8601. 2017-08-01 13:17:34.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8602. 2017-08-01 13:17:34.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8603. 2017-08-01 13:17:34.784 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8604. 2017-08-01 13:17:34.786 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8605. 2017-08-01 13:17:34.792 |-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=?
  8606. 2017-08-01 13:17:34.793 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8607. 2017-08-01 13:17:34.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8608. 2017-08-01 13:17:34.928 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8609. 2017-08-01 13:17:34.931 |-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= ?
  8610. 2017-08-01 13:17:34.931 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8611. 2017-08-01 13:17:34.958 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8612. 2017-08-01 13:17:34.958 |-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
  8613. 2017-08-01 13:17:34.959 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8614. 2017-08-01 13:17:35.006 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8615. 2017-08-01 13:17:35.008 |-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=?)
  8616. 2017-08-01 13:17:35.008 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8617. 2017-08-01 13:17:35.063 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8618. 2017-08-01 13:17:35.067 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8619. 2017-08-01 13:17:35.070 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8620. 2017-08-01 13:17:35.075 |-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
  8621. 2017-08-01 13:17:35.076 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8622. 2017-08-01 13:17:35.107 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8623. 2017-08-01 13:17:35.111 |-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
  8624. 2017-08-01 13:17:35.112 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8625. 2017-08-01 13:17:35.165 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8626. 2017-08-01 13:17:35.169 |-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
  8627. 2017-08-01 13:17:35.170 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8628. 2017-08-01 13:17:35.224 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8629. 2017-08-01 13:17:44.892 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8630. 2017-08-01 13:17:44.894 |-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= ?
  8631. 2017-08-01 13:17:44.895 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8632. 2017-08-01 13:17:44.972 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8633. 2017-08-01 13:17:44.973 |-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
  8634. 2017-08-01 13:17:44.974 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  8635. 2017-08-01 13:17:45.019 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  8636. 2017-08-01 13:17:45.021 |-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=?)
  8637. 2017-08-01 13:17:45.021 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  8638. 2017-08-01 13:17:45.048 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  8639. 2017-08-01 13:17:45.052 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  8640. 2017-08-01 13:17:45.054 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8641. 2017-08-01 13:17:45.059 |-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
  8642. 2017-08-01 13:17:45.060 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8643. 2017-08-01 13:17:45.088 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  8644. 2017-08-01 13:17:45.090 |-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
  8645. 2017-08-01 13:17:45.091 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8646. 2017-08-01 13:17:45.122 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  8647. 2017-08-01 13:17:45.125 |-DEBUG [http-nio-8089-exec-4] 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
  8648. 2017-08-01 13:17:45.125 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8649. 2017-08-01 13:17:45.156 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  8650. 2017-08-01 13:19:06.561 |-INFO [Thread-10] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@135a26f4: startup date [Tue Aug 01 13:11:09 CST 2017]; root of context hierarchy
  8651. 2017-08-01 13:19:06.564 |-INFO [Thread-10] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  8652. 2017-08-01 13:19:06.565 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  8653. 2017-08-01 13:19:06.566 |-INFO [Thread-10] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  8654. 2017-08-01 13:19:06.567 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  8655. 2017-08-01 13:19:06.568 |-INFO [Thread-10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  8656. 2017-08-01 13:19:06.587 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  8657. 2017-08-01 13:19:06.589 |-INFO [Thread-10] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  8658. 2017-08-01 13:19:07.076 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 8832 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  8659. 2017-08-01 13:19:07.077 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  8660. 2017-08-01 13:19:07.080 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@44903899: startup date [Tue Aug 01 13:19:07 CST 2017]; root of context hierarchy
  8661. 2017-08-01 13:19:08.314 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  8662. 2017-08-01 13:19:08.608 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$14c4ae67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8663. 2017-08-01 13:19:08.623 |-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$$ad7276a1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8664. 2017-08-01 13:19:08.628 |-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)
  8665. 2017-08-01 13:19:08.630 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@56fc5f23' 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)
  8666. 2017-08-01 13:19:08.634 |-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$$d2471953] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8667. 2017-08-01 13:19:08.638 |-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)
  8668. 2017-08-01 13:19:08.646 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$82263] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8669. 2017-08-01 13:19:08.671 |-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)
  8670. 2017-08-01 13:19:08.672 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$5dd6e485] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8671. 2017-08-01 13:19:08.911 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  8672. 2017-08-01 13:19:08.912 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  8673. 2017-08-01 13:19:08.912 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  8674. 2017-08-01 13:19:08.923 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  8675. 2017-08-01 13:19:08.926 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 1846 ms
  8676. 2017-08-01 13:19:09.281 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  8677. 2017-08-01 13:19:10.894 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  8678. 2017-08-01 13:19:10.894 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  8679. 2017-08-01 13:19:10.894 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  8680. 2017-08-01 13:19:10.894 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  8681. 2017-08-01 13:19:10.894 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  8682. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  8683. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  8684. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  8685. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  8686. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  8687. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  8688. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  8689. 2017-08-01 13:19:10.895 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  8690. 2017-08-01 13:19:10.896 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  8691. 2017-08-01 13:19:11.833 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  8692. 2017-08-01 13:19:11.834 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  8693. 2017-08-01 13:19:11.869 |-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@1bdcd40e, org.springframework.security.web.context.SecurityContextPersistenceFilter@35c25df0, org.springframework.security.web.header.HeaderWriterFilter@149f1b77, org.springframework.web.filter.CorsFilter@10a4b1f7, org.springframework.security.web.authentication.logout.LogoutFilter@1fe51d12, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@1d528309, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@57129abe, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3bba6788, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@20e00692, org.springframework.security.web.session.SessionManagementFilter@6208de6b, org.springframework.security.web.access.ExceptionTranslationFilter@34eadb05, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7409afec]
  8694. 2017-08-01 13:19:11.883 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@698def52, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1bc79a7d, org.springframework.security.web.context.SecurityContextPersistenceFilter@5413fb62, org.springframework.security.web.header.HeaderWriterFilter@6dc4b029, org.springframework.security.web.authentication.logout.LogoutFilter@2c706814, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@77f133f2, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@35c5a6e1, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7d481d88, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@208461f0, org.springframework.security.web.session.SessionManagementFilter@707433b6, org.springframework.security.web.access.ExceptionTranslationFilter@66f0e8e1, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@623b2875]
  8695. 2017-08-01 13:19:11.945 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@44903899: startup date [Tue Aug 01 13:19:07 CST 2017]; root of context hierarchy
  8696. 2017-08-01 13:19:12.029 |-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)
  8697. 2017-08-01 13:19:12.030 |-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)
  8698. 2017-08-01 13:19:12.031 |-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)
  8699. 2017-08-01 13:19:12.031 |-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)
  8700. 2017-08-01 13:19:12.031 |-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)
  8701. 2017-08-01 13:19:12.032 |-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)
  8702. 2017-08-01 13:19:12.032 |-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)
  8703. 2017-08-01 13:19:12.032 |-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)
  8704. 2017-08-01 13:19:12.032 |-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)
  8705. 2017-08-01 13:19:12.034 |-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)
  8706. 2017-08-01 13:19:12.035 |-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)
  8707. 2017-08-01 13:19:12.035 |-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)
  8708. 2017-08-01 13:19:12.035 |-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)
  8709. 2017-08-01 13:19:12.036 |-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)
  8710. 2017-08-01 13:19:12.036 |-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)
  8711. 2017-08-01 13:19:12.036 |-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)
  8712. 2017-08-01 13:19:12.036 |-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)
  8713. 2017-08-01 13:19:12.037 |-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)
  8714. 2017-08-01 13:19:12.037 |-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()
  8715. 2017-08-01 13:19:12.039 |-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)
  8716. 2017-08-01 13:19:12.039 |-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)
  8717. 2017-08-01 13:19:12.040 |-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)
  8718. 2017-08-01 13:19:12.040 |-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()
  8719. 2017-08-01 13:19:12.040 |-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)
  8720. 2017-08-01 13:19:12.040 |-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)
  8721. 2017-08-01 13:19:12.040 |-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)
  8722. 2017-08-01 13:19:12.041 |-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)
  8723. 2017-08-01 13:19:12.042 |-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)
  8724. 2017-08-01 13:19:12.043 |-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)
  8725. 2017-08-01 13:19:12.043 |-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)
  8726. 2017-08-01 13:19:12.043 |-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)
  8727. 2017-08-01 13:19:12.043 |-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)
  8728. 2017-08-01 13:19:12.044 |-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)
  8729. 2017-08-01 13:19:12.044 |-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)
  8730. 2017-08-01 13:19:12.044 |-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>)
  8731. 2017-08-01 13:19:12.045 |-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)
  8732. 2017-08-01 13:19:12.049 |-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)
  8733. 2017-08-01 13:19:12.050 |-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)
  8734. 2017-08-01 13:19:12.051 |-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)
  8735. 2017-08-01 13:19:12.051 |-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)
  8736. 2017-08-01 13:19:12.051 |-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)
  8737. 2017-08-01 13:19:12.051 |-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)
  8738. 2017-08-01 13:19:12.052 |-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)
  8739. 2017-08-01 13:19:12.052 |-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)
  8740. 2017-08-01 13:19:12.053 |-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)
  8741. 2017-08-01 13:19:12.054 |-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()
  8742. 2017-08-01 13:19:12.054 |-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)
  8743. 2017-08-01 13:19:12.054 |-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
  8744. 2017-08-01 13:19:12.054 |-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)
  8745. 2017-08-01 13:19:12.055 |-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)
  8746. 2017-08-01 13:19:12.055 |-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)
  8747. 2017-08-01 13:19:12.055 |-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)
  8748. 2017-08-01 13:19:12.056 |-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()
  8749. 2017-08-01 13:19:12.056 |-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()
  8750. 2017-08-01 13:19:12.056 |-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)
  8751. 2017-08-01 13:19:12.057 |-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)
  8752. 2017-08-01 13:19:12.057 |-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)
  8753. 2017-08-01 13:19:12.058 |-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)
  8754. 2017-08-01 13:19:12.058 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
  8755. 2017-08-01 13:19:12.059 |-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)
  8756. 2017-08-01 13:19:12.059 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  8757. 2017-08-01 13:19:12.059 |-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)
  8758. 2017-08-01 13:19:12.059 |-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)
  8759. 2017-08-01 13:19:12.060 |-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)
  8760. 2017-08-01 13:19:12.061 |-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)
  8761. 2017-08-01 13:19:12.061 |-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)
  8762. 2017-08-01 13:19:12.061 |-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)
  8763. 2017-08-01 13:19:12.061 |-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)
  8764. 2017-08-01 13:19:12.062 |-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
  8765. 2017-08-01 13:19:12.062 |-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)
  8766. 2017-08-01 13:19:12.063 |-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
  8767. 2017-08-01 13:19:12.064 |-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)
  8768. 2017-08-01 13:19:12.064 |-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
  8769. 2017-08-01 13:19:12.064 |-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
  8770. 2017-08-01 13:19:12.064 |-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
  8771. 2017-08-01 13:19:12.064 |-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)
  8772. 2017-08-01 13:19:12.065 |-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)
  8773. 2017-08-01 13:19:12.065 |-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()
  8774. 2017-08-01 13:19:12.066 |-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)
  8775. 2017-08-01 13:19:12.067 |-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)
  8776. 2017-08-01 13:19:12.067 |-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)
  8777. 2017-08-01 13:19:12.067 |-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)
  8778. 2017-08-01 13:19:12.067 |-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)
  8779. 2017-08-01 13:19:12.068 |-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)
  8780. 2017-08-01 13:19:12.068 |-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)
  8781. 2017-08-01 13:19:12.068 |-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)
  8782. 2017-08-01 13:19:12.068 |-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)
  8783. 2017-08-01 13:19:12.068 |-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)
  8784. 2017-08-01 13:19:12.069 |-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
  8785. 2017-08-01 13:19:12.070 |-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)
  8786. 2017-08-01 13:19:12.070 |-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)
  8787. 2017-08-01 13:19:12.070 |-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)
  8788. 2017-08-01 13:19:12.070 |-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)
  8789. 2017-08-01 13:19:12.070 |-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)
  8790. 2017-08-01 13:19:12.071 |-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()
  8791. 2017-08-01 13:19:12.071 |-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)
  8792. 2017-08-01 13:19:12.073 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
  8793. 2017-08-01 13:19:12.073 |-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)
  8794. 2017-08-01 13:19:12.074 |-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)
  8795. 2017-08-01 13:19:12.074 |-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)
  8796. 2017-08-01 13:19:12.074 |-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)
  8797. 2017-08-01 13:19:12.074 |-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)
  8798. 2017-08-01 13:19:12.074 |-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)
  8799. 2017-08-01 13:19:12.075 |-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)
  8800. 2017-08-01 13:19:12.075 |-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)
  8801. 2017-08-01 13:19:12.075 |-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)
  8802. 2017-08-01 13:19:12.075 |-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)
  8803. 2017-08-01 13:19:12.075 |-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)
  8804. 2017-08-01 13:19:12.076 |-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)
  8805. 2017-08-01 13:19:12.076 |-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)
  8806. 2017-08-01 13:19:12.076 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
  8807. 2017-08-01 13:19:12.077 |-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)
  8808. 2017-08-01 13:19:12.077 |-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)
  8809. 2017-08-01 13:19:12.077 |-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)
  8810. 2017-08-01 13:19:12.078 |-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)
  8811. 2017-08-01 13:19:12.078 |-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)
  8812. 2017-08-01 13:19:12.078 |-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)
  8813. 2017-08-01 13:19:12.078 |-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)
  8814. 2017-08-01 13:19:12.078 |-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)
  8815. 2017-08-01 13:19:12.080 |-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)
  8816. 2017-08-01 13:19:12.081 |-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)
  8817. 2017-08-01 13:19:12.081 |-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)
  8818. 2017-08-01 13:19:12.081 |-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)
  8819. 2017-08-01 13:19:12.081 |-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)
  8820. 2017-08-01 13:19:12.082 |-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)
  8821. 2017-08-01 13:19:12.082 |-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)
  8822. 2017-08-01 13:19:12.082 |-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)
  8823. 2017-08-01 13:19:12.082 |-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)
  8824. 2017-08-01 13:19:12.083 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  8825. 2017-08-01 13:19:12.083 |-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)
  8826. 2017-08-01 13:19:12.083 |-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)
  8827. 2017-08-01 13:19:12.083 |-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)
  8828. 2017-08-01 13:19:12.083 |-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)
  8829. 2017-08-01 13:19:12.084 |-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)
  8830. 2017-08-01 13:19:12.085 |-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)
  8831. 2017-08-01 13:19:12.085 |-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)
  8832. 2017-08-01 13:19:12.086 |-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)
  8833. 2017-08-01 13:19:12.086 |-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)
  8834. 2017-08-01 13:19:12.086 |-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)
  8835. 2017-08-01 13:19:12.086 |-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)
  8836. 2017-08-01 13:19:12.087 |-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)
  8837. 2017-08-01 13:19:12.087 |-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)
  8838. 2017-08-01 13:19:12.087 |-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)
  8839. 2017-08-01 13:19:12.087 |-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)
  8840. 2017-08-01 13:19:12.088 |-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)
  8841. 2017-08-01 13:19:12.089 |-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)
  8842. 2017-08-01 13:19:12.089 |-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)
  8843. 2017-08-01 13:19:12.089 |-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)
  8844. 2017-08-01 13:19:12.089 |-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)
  8845. 2017-08-01 13:19:12.089 |-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)
  8846. 2017-08-01 13:19:12.090 |-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)
  8847. 2017-08-01 13:19:12.090 |-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)
  8848. 2017-08-01 13:19:12.090 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  8849. 2017-08-01 13:19:12.091 |-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)
  8850. 2017-08-01 13:19:12.091 |-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()
  8851. 2017-08-01 13:19:12.091 |-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()
  8852. 2017-08-01 13:19:12.091 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  8853. 2017-08-01 13:19:12.092 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  8854. 2017-08-01 13:19:12.092 |-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()
  8855. 2017-08-01 13:19:12.092 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  8856. 2017-08-01 13:19:12.093 |-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)
  8857. 2017-08-01 13:19:12.093 |-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>)
  8858. 2017-08-01 13:19:12.093 |-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>)
  8859. 2017-08-01 13:19:12.093 |-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)
  8860. 2017-08-01 13:19:12.095 |-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()
  8861. 2017-08-01 13:19:12.095 |-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)
  8862. 2017-08-01 13:19:12.095 |-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)
  8863. 2017-08-01 13:19:12.095 |-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)
  8864. 2017-08-01 13:19:12.096 |-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)
  8865. 2017-08-01 13:19:12.096 |-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)
  8866. 2017-08-01 13:19:12.096 |-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)
  8867. 2017-08-01 13:19:12.096 |-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()
  8868. 2017-08-01 13:19:12.096 |-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)
  8869. 2017-08-01 13:19:12.097 |-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
  8870. 2017-08-01 13:19:12.097 |-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)
  8871. 2017-08-01 13:19:12.097 |-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)
  8872. 2017-08-01 13:19:12.098 |-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)
  8873. 2017-08-01 13:19:12.191 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  8874. 2017-08-01 13:19:12.269 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8875. 2017-08-01 13:19:12.269 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  8876. 2017-08-01 13:19:12.301 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  8877. 2017-08-01 13:19:12.302 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  8878. 2017-08-01 13:19:12.302 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  8879. 2017-08-01 13:19:12.303 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  8880. 2017-08-01 13:19:12.303 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  8881. 2017-08-01 13:19:12.303 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  8882. 2017-08-01 13:19:12.304 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  8883. 2017-08-01 13:19:12.304 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  8884. 2017-08-01 13:19:12.305 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  8885. 2017-08-01 13:19:12.305 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  8886. 2017-08-01 13:19:12.305 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  8887. 2017-08-01 13:19:12.305 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  8888. 2017-08-01 13:19:12.306 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  8889. 2017-08-01 13:19:12.306 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  8890. 2017-08-01 13:19:12.307 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  8891. 2017-08-01 13:19:12.307 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  8892. 2017-08-01 13:19:12.308 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  8893. 2017-08-01 13:19:12.309 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  8894. 2017-08-01 13:19:12.310 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  8895. 2017-08-01 13:19:12.310 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  8896. 2017-08-01 13:19:12.311 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  8897. 2017-08-01 13:19:12.311 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  8898. 2017-08-01 13:19:12.312 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  8899. 2017-08-01 13:19:12.356 |-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]
  8900. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  8901. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  8902. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  8903. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  8904. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  8905. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  8906. 2017-08-01 13:19:12.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  8907. 2017-08-01 13:19:12.671 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  8908. 2017-08-01 13:19:12.671 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  8909. 2017-08-01 13:19:12.672 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  8910. 2017-08-01 13:19:12.672 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  8911. 2017-08-01 13:19:12.673 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  8912. 2017-08-01 13:19:12.673 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  8913. 2017-08-01 13:19:12.673 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  8914. 2017-08-01 13:19:12.673 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  8915. 2017-08-01 13:19:12.674 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  8916. 2017-08-01 13:19:12.674 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  8917. 2017-08-01 13:19:12.674 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  8918. 2017-08-01 13:19:12.678 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  8919. 2017-08-01 13:19:12.678 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  8920. 2017-08-01 13:19:12.678 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  8921. 2017-08-01 13:19:12.679 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  8922. 2017-08-01 13:19:12.679 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  8923. 2017-08-01 13:19:12.679 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  8924. 2017-08-01 13:19:12.679 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  8925. 2017-08-01 13:19:12.679 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  8926. 2017-08-01 13:19:12.684 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  8927. 2017-08-01 13:19:12.691 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  8928. 2017-08-01 13:19:12.691 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  8929. 2017-08-01 13:19:12.691 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  8930. 2017-08-01 13:19:12.692 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  8931. 2017-08-01 13:19:12.692 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  8932. 2017-08-01 13:19:13.001 |-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)
  8933. 2017-08-01 13:19:13.002 |-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()
  8934. 2017-08-01 13:19:13.003 |-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()
  8935. 2017-08-01 13:19:13.004 |-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()
  8936. 2017-08-01 13:19:13.006 |-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)
  8937. 2017-08-01 13:19:13.006 |-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()
  8938. 2017-08-01 13:19:13.006 |-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)
  8939. 2017-08-01 13:19:13.006 |-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()
  8940. 2017-08-01 13:19:13.007 |-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()
  8941. 2017-08-01 13:19:13.008 |-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
  8942. 2017-08-01 13:19:13.009 |-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()
  8943. 2017-08-01 13:19:13.009 |-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()
  8944. 2017-08-01 13:19:13.010 |-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)
  8945. 2017-08-01 13:19:13.011 |-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()
  8946. 2017-08-01 13:19:13.011 |-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)
  8947. 2017-08-01 13:19:13.011 |-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>)
  8948. 2017-08-01 13:19:13.012 |-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()
  8949. 2017-08-01 13:19:13.443 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  8950. 2017-08-01 13:19:13.447 |-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
  8951. 2017-08-01 13:19:13.761 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  8952. 2017-08-01 13:19:13.762 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  8953. 2017-08-01 13:19:13.762 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  8954. 2017-08-01 13:19:13.765 |-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]
  8955. 2017-08-01 13:19:13.767 |-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]
  8956. 2017-08-01 13:19:13.767 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  8957. 2017-08-01 13:19:13.769 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  8958. 2017-08-01 13:19:13.770 |-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]
  8959. 2017-08-01 13:19:13.774 |-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]
  8960. 2017-08-01 13:19:13.776 |-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]
  8961. 2017-08-01 13:19:13.780 |-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]
  8962. 2017-08-01 13:19:13.782 |-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]
  8963. 2017-08-01 13:19:13.784 |-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]
  8964. 2017-08-01 13:19:13.786 |-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]
  8965. 2017-08-01 13:19:13.788 |-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]
  8966. 2017-08-01 13:19:13.791 |-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]
  8967. 2017-08-01 13:19:13.793 |-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]
  8968. 2017-08-01 13:19:13.795 |-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]
  8969. 2017-08-01 13:19:13.797 |-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]
  8970. 2017-08-01 13:19:13.802 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-3} inited
  8971. 2017-08-01 13:19:14.053 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  8972. 2017-08-01 13:19:14.054 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  8973. 2017-08-01 13:19:14.084 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 39
  8974. 2017-08-01 13:19:14.085 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  8975. 2017-08-01 13:19:14.087 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-4} inited
  8976. 2017-08-01 13:19:14.340 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  8977. 2017-08-01 13:19:14.340 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  8978. 2017-08-01 13:19:14.476 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 659
  8979. 2017-08-01 13:19:14.477 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:659
  8980. 2017-08-01 13:19:14.478 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  8981. 2017-08-01 13:19:14.479 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  8982. 2017-08-01 13:19:14.506 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  8983. 2017-08-01 13:19:14.507 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:32
  8984. 2017-08-01 13:19:14.508 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8985. 2017-08-01 13:19:14.508 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8986. 2017-08-01 13:19:14.533 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  8987. 2017-08-01 13:19:14.534 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:659
  8988. 2017-08-01 13:19:14.539 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  8989. 2017-08-01 13:19:14.539 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  8990. 2017-08-01 13:19:14.542 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  8991. 2017-08-01 13:19:14.553 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  8992. 2017-08-01 13:19:14.556 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 7.575 seconds (JVM running for 486.95)
  8993. 2017-08-01 13:19:21.464 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  8994. 2017-08-01 13:19:21.464 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  8995. 2017-08-01 13:19:21.473 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 9 ms
  8996. 2017-08-01 13:19:21.484 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  8997. 2017-08-01 13:19:21.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= ?
  8998. 2017-08-01 13:19:21.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  8999. 2017-08-01 13:19:21.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9000. 2017-08-01 13:19:21.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
  9001. 2017-08-01 13:19:21.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9002. 2017-08-01 13:19:21.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9003. 2017-08-01 13:19:21.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9004. 2017-08-01 13:19:21.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9005. 2017-08-01 13:19:21.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9006. 2017-08-01 13:19:21.659 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9007. 2017-08-01 13:19:21.660 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9008. 2017-08-01 13:19:21.682 |-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
  9009. 2017-08-01 13:19:21.683 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9010. 2017-08-01 13:19:21.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9011. 2017-08-01 13:19:21.716 |-DEBUG [http-nio-8089-exec-2] 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
  9012. 2017-08-01 13:19:21.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9013. 2017-08-01 13:19:21.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9014. 2017-08-01 13:19:21.750 |-DEBUG [http-nio-8089-exec-2] 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
  9015. 2017-08-01 13:19:21.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9016. 2017-08-01 13:19:21.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9017. 2017-08-01 13:19:42.885 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9018. 2017-08-01 13:19:42.888 |-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= ?
  9019. 2017-08-01 13:19:42.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9020. 2017-08-01 13:19:42.924 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9021. 2017-08-01 13:19:42.925 |-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
  9022. 2017-08-01 13:19:42.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9023. 2017-08-01 13:19:42.968 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9024. 2017-08-01 13:19:42.969 |-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=?)
  9025. 2017-08-01 13:19:42.969 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9026. 2017-08-01 13:19:43.033 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9027. 2017-08-01 13:19:43.038 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9028. 2017-08-01 13:19:43.040 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9029. 2017-08-01 13:19:44.773 |-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
  9030. 2017-08-01 13:19:44.775 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9031. 2017-08-01 13:19:44.870 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9032. 2017-08-01 13:19:44.902 |-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
  9033. 2017-08-01 13:19:44.905 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9034. 2017-08-01 13:19:44.943 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9035. 2017-08-01 13:19:44.969 |-DEBUG [http-nio-8089-exec-4] 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
  9036. 2017-08-01 13:19:44.973 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9037. 2017-08-01 13:19:45.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9038. 2017-08-01 13:20:10.221 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9039. 2017-08-01 13:20:10.224 |-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= ?
  9040. 2017-08-01 13:20:10.225 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9041. 2017-08-01 13:20:10.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9042. 2017-08-01 13:20:10.293 |-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
  9043. 2017-08-01 13:20:10.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9044. 2017-08-01 13:20:10.322 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9045. 2017-08-01 13:20:10.324 |-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=?)
  9046. 2017-08-01 13:20:10.324 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9047. 2017-08-01 13:20:10.351 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9048. 2017-08-01 13:20:10.355 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9049. 2017-08-01 13:20:10.356 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9050. 2017-08-01 13:20:11.028 |-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
  9051. 2017-08-01 13:20:11.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9052. 2017-08-01 13:20:11.099 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9053. 2017-08-01 13:20:11.130 |-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
  9054. 2017-08-01 13:20:11.133 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9055. 2017-08-01 13:20:11.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9056. 2017-08-01 13:20:11.262 |-DEBUG [http-nio-8089-exec-6] 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
  9057. 2017-08-01 13:20:11.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9058. 2017-08-01 13:20:11.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9059. 2017-08-01 13:21:27.033 |-INFO [Thread-22] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@44903899: startup date [Tue Aug 01 13:19:07 CST 2017]; root of context hierarchy
  9060. 2017-08-01 13:21:27.038 |-INFO [Thread-22] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  9061. 2017-08-01 13:21:27.039 |-INFO [Thread-22] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  9062. 2017-08-01 13:21:27.042 |-INFO [Thread-22] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  9063. 2017-08-01 13:21:27.043 |-INFO [Thread-22] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  9064. 2017-08-01 13:21:27.045 |-INFO [Thread-22] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  9065. 2017-08-01 13:21:27.058 |-INFO [Thread-22] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-4} closed
  9066. 2017-08-01 13:21:27.060 |-INFO [Thread-22] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-3} closed
  9067. 2017-08-01 13:21:34.717 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on chenrj-PC with PID 8832 (D:\gitpro\VisualInspection\VisualInspection_server\target\classes started by chenrj in D:\gitpro\VisualInspection\VisualInspection_server)
  9068. 2017-08-01 13:21:34.718 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  9069. 2017-08-01 13:21:34.721 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@11e9f67a: startup date [Tue Aug 01 13:21:34 CST 2017]; root of context hierarchy
  9070. 2017-08-01 13:21:35.794 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  9071. 2017-08-01 13:21:36.042 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$14c4ae67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9072. 2017-08-01 13:21:36.053 |-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$$ad7276a1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9073. 2017-08-01 13:21:36.056 |-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)
  9074. 2017-08-01 13:21:36.057 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@3a63be4e' 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)
  9075. 2017-08-01 13:21:36.061 |-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$$d2471953] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9076. 2017-08-01 13:21:36.064 |-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)
  9077. 2017-08-01 13:21:36.072 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$82263] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9078. 2017-08-01 13:21:36.087 |-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)
  9079. 2017-08-01 13:21:36.088 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$5dd6e485] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9080. 2017-08-01 13:21:36.256 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  9081. 2017-08-01 13:21:36.256 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  9082. 2017-08-01 13:21:36.256 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  9083. 2017-08-01 13:21:36.267 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  9084. 2017-08-01 13:21:36.268 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 1547 ms
  9085. 2017-08-01 13:21:36.506 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  9086. 2017-08-01 13:21:37.800 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  9087. 2017-08-01 13:21:37.800 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  9088. 2017-08-01 13:21:37.800 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  9089. 2017-08-01 13:21:37.800 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  9090. 2017-08-01 13:21:37.800 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  9091. 2017-08-01 13:21:37.800 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  9092. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  9093. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  9094. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  9095. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  9096. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  9097. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  9098. 2017-08-01 13:21:37.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  9099. 2017-08-01 13:21:37.802 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  9100. 2017-08-01 13:21:38.598 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  9101. 2017-08-01 13:21:38.598 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  9102. 2017-08-01 13:21:38.628 |-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@3f7ec105, org.springframework.security.web.context.SecurityContextPersistenceFilter@612ef50e, org.springframework.security.web.header.HeaderWriterFilter@434dd9fc, org.springframework.web.filter.CorsFilter@287d6788, org.springframework.security.web.authentication.logout.LogoutFilter@47803478, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@10685461, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5af9d8f6, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@77d6686c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@56187185, org.springframework.security.web.session.SessionManagementFilter@1744f44a, org.springframework.security.web.access.ExceptionTranslationFilter@19844d10, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3052ad4a]
  9103. 2017-08-01 13:21:38.641 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@14eedeb8, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4cfa1517, org.springframework.security.web.context.SecurityContextPersistenceFilter@13122807, org.springframework.security.web.header.HeaderWriterFilter@7e3407fd, org.springframework.security.web.authentication.logout.LogoutFilter@23c95369, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@62320350, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4a5d8e4e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@14086317, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6e289a0c, org.springframework.security.web.session.SessionManagementFilter@2b939cbb, org.springframework.security.web.access.ExceptionTranslationFilter@6ac66a09, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@39436672]
  9104. 2017-08-01 13:21:38.694 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@11e9f67a: startup date [Tue Aug 01 13:21:34 CST 2017]; root of context hierarchy
  9105. 2017-08-01 13:21:38.778 |-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)
  9106. 2017-08-01 13:21:38.778 |-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)
  9107. 2017-08-01 13:21:38.780 |-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)
  9108. 2017-08-01 13:21:38.780 |-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)
  9109. 2017-08-01 13:21:38.780 |-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)
  9110. 2017-08-01 13:21:38.780 |-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)
  9111. 2017-08-01 13:21:38.781 |-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)
  9112. 2017-08-01 13:21:38.781 |-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)
  9113. 2017-08-01 13:21:38.781 |-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)
  9114. 2017-08-01 13:21:38.782 |-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)
  9115. 2017-08-01 13:21:38.782 |-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)
  9116. 2017-08-01 13:21:38.783 |-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)
  9117. 2017-08-01 13:21:38.783 |-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)
  9118. 2017-08-01 13:21:38.783 |-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)
  9119. 2017-08-01 13:21:38.783 |-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)
  9120. 2017-08-01 13:21:38.784 |-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)
  9121. 2017-08-01 13:21:38.784 |-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)
  9122. 2017-08-01 13:21:38.784 |-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)
  9123. 2017-08-01 13:21:38.784 |-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()
  9124. 2017-08-01 13:21:38.785 |-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)
  9125. 2017-08-01 13:21:38.786 |-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)
  9126. 2017-08-01 13:21:38.786 |-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)
  9127. 2017-08-01 13:21:38.786 |-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()
  9128. 2017-08-01 13:21:38.786 |-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)
  9129. 2017-08-01 13:21:38.786 |-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)
  9130. 2017-08-01 13:21:38.787 |-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)
  9131. 2017-08-01 13:21:38.787 |-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)
  9132. 2017-08-01 13:21:38.788 |-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)
  9133. 2017-08-01 13:21:38.788 |-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)
  9134. 2017-08-01 13:21:38.788 |-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)
  9135. 2017-08-01 13:21:38.788 |-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)
  9136. 2017-08-01 13:21:38.789 |-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)
  9137. 2017-08-01 13:21:38.789 |-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)
  9138. 2017-08-01 13:21:38.789 |-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)
  9139. 2017-08-01 13:21:38.790 |-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>)
  9140. 2017-08-01 13:21:38.790 |-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)
  9141. 2017-08-01 13:21:38.790 |-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)
  9142. 2017-08-01 13:21:38.790 |-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)
  9143. 2017-08-01 13:21:38.791 |-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)
  9144. 2017-08-01 13:21:38.791 |-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)
  9145. 2017-08-01 13:21:38.792 |-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)
  9146. 2017-08-01 13:21:38.792 |-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)
  9147. 2017-08-01 13:21:38.792 |-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)
  9148. 2017-08-01 13:21:38.792 |-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)
  9149. 2017-08-01 13:21:38.794 |-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)
  9150. 2017-08-01 13:21:38.794 |-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()
  9151. 2017-08-01 13:21:38.794 |-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)
  9152. 2017-08-01 13:21:38.794 |-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
  9153. 2017-08-01 13:21:38.795 |-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)
  9154. 2017-08-01 13:21:38.795 |-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)
  9155. 2017-08-01 13:21:38.795 |-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)
  9156. 2017-08-01 13:21:38.795 |-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)
  9157. 2017-08-01 13:21:38.796 |-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()
  9158. 2017-08-01 13:21:38.796 |-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()
  9159. 2017-08-01 13:21:38.796 |-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)
  9160. 2017-08-01 13:21:38.797 |-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)
  9161. 2017-08-01 13:21:38.797 |-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)
  9162. 2017-08-01 13:21:38.797 |-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)
  9163. 2017-08-01 13:21:38.798 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
  9164. 2017-08-01 13:21:38.798 |-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)
  9165. 2017-08-01 13:21:38.799 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  9166. 2017-08-01 13:21:38.799 |-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)
  9167. 2017-08-01 13:21:38.799 |-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)
  9168. 2017-08-01 13:21:38.800 |-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)
  9169. 2017-08-01 13:21:38.801 |-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)
  9170. 2017-08-01 13:21:38.801 |-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)
  9171. 2017-08-01 13:21:38.801 |-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)
  9172. 2017-08-01 13:21:38.801 |-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)
  9173. 2017-08-01 13:21:38.801 |-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
  9174. 2017-08-01 13:21:38.802 |-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)
  9175. 2017-08-01 13:21:38.802 |-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
  9176. 2017-08-01 13:21:38.803 |-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)
  9177. 2017-08-01 13:21:38.803 |-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
  9178. 2017-08-01 13:21:38.803 |-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
  9179. 2017-08-01 13:21:38.803 |-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
  9180. 2017-08-01 13:21:38.803 |-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)
  9181. 2017-08-01 13:21:38.804 |-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)
  9182. 2017-08-01 13:21:38.804 |-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()
  9183. 2017-08-01 13:21:38.805 |-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)
  9184. 2017-08-01 13:21:38.805 |-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)
  9185. 2017-08-01 13:21:38.805 |-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)
  9186. 2017-08-01 13:21:38.806 |-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)
  9187. 2017-08-01 13:21:38.806 |-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)
  9188. 2017-08-01 13:21:38.806 |-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)
  9189. 2017-08-01 13:21:38.806 |-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)
  9190. 2017-08-01 13:21:38.806 |-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)
  9191. 2017-08-01 13:21:38.807 |-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)
  9192. 2017-08-01 13:21:38.807 |-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)
  9193. 2017-08-01 13:21:38.807 |-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
  9194. 2017-08-01 13:21:38.808 |-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)
  9195. 2017-08-01 13:21:38.808 |-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)
  9196. 2017-08-01 13:21:38.808 |-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)
  9197. 2017-08-01 13:21:38.808 |-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)
  9198. 2017-08-01 13:21:38.809 |-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)
  9199. 2017-08-01 13:21:38.809 |-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()
  9200. 2017-08-01 13:21:38.809 |-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)
  9201. 2017-08-01 13:21:38.811 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
  9202. 2017-08-01 13:21:38.811 |-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)
  9203. 2017-08-01 13:21:38.812 |-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)
  9204. 2017-08-01 13:21:38.812 |-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)
  9205. 2017-08-01 13:21:38.812 |-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)
  9206. 2017-08-01 13:21:38.812 |-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)
  9207. 2017-08-01 13:21:38.812 |-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)
  9208. 2017-08-01 13:21:38.812 |-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)
  9209. 2017-08-01 13:21:38.813 |-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)
  9210. 2017-08-01 13:21:38.813 |-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)
  9211. 2017-08-01 13:21:38.813 |-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)
  9212. 2017-08-01 13:21:38.813 |-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)
  9213. 2017-08-01 13:21:38.813 |-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)
  9214. 2017-08-01 13:21:38.814 |-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)
  9215. 2017-08-01 13:21:38.814 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
  9216. 2017-08-01 13:21:38.814 |-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)
  9217. 2017-08-01 13:21:38.814 |-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)
  9218. 2017-08-01 13:21:38.814 |-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)
  9219. 2017-08-01 13:21:38.815 |-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)
  9220. 2017-08-01 13:21:38.815 |-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)
  9221. 2017-08-01 13:21:38.815 |-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)
  9222. 2017-08-01 13:21:38.815 |-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)
  9223. 2017-08-01 13:21:38.815 |-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)
  9224. 2017-08-01 13:21:38.817 |-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)
  9225. 2017-08-01 13:21:38.817 |-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)
  9226. 2017-08-01 13:21:38.817 |-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)
  9227. 2017-08-01 13:21:38.818 |-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)
  9228. 2017-08-01 13:21:38.818 |-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)
  9229. 2017-08-01 13:21:38.818 |-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)
  9230. 2017-08-01 13:21:38.818 |-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)
  9231. 2017-08-01 13:21:38.819 |-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)
  9232. 2017-08-01 13:21:38.819 |-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)
  9233. 2017-08-01 13:21:38.819 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  9234. 2017-08-01 13:21:38.819 |-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)
  9235. 2017-08-01 13:21:38.819 |-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)
  9236. 2017-08-01 13:21:38.820 |-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)
  9237. 2017-08-01 13:21:38.820 |-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)
  9238. 2017-08-01 13:21:38.820 |-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)
  9239. 2017-08-01 13:21:38.821 |-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)
  9240. 2017-08-01 13:21:38.821 |-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)
  9241. 2017-08-01 13:21:38.822 |-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)
  9242. 2017-08-01 13:21:38.822 |-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)
  9243. 2017-08-01 13:21:38.822 |-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)
  9244. 2017-08-01 13:21:38.822 |-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)
  9245. 2017-08-01 13:21:38.822 |-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)
  9246. 2017-08-01 13:21:38.823 |-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)
  9247. 2017-08-01 13:21:38.823 |-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)
  9248. 2017-08-01 13:21:38.823 |-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)
  9249. 2017-08-01 13:21:38.824 |-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)
  9250. 2017-08-01 13:21:38.824 |-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)
  9251. 2017-08-01 13:21:38.824 |-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)
  9252. 2017-08-01 13:21:38.824 |-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)
  9253. 2017-08-01 13:21:38.825 |-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)
  9254. 2017-08-01 13:21:38.825 |-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)
  9255. 2017-08-01 13:21:38.825 |-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)
  9256. 2017-08-01 13:21:38.825 |-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)
  9257. 2017-08-01 13:21:38.826 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  9258. 2017-08-01 13:21:38.826 |-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)
  9259. 2017-08-01 13:21:38.826 |-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()
  9260. 2017-08-01 13:21:38.826 |-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()
  9261. 2017-08-01 13:21:38.827 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  9262. 2017-08-01 13:21:38.827 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  9263. 2017-08-01 13:21:38.827 |-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()
  9264. 2017-08-01 13:21:38.827 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  9265. 2017-08-01 13:21:38.828 |-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)
  9266. 2017-08-01 13:21:38.828 |-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>)
  9267. 2017-08-01 13:21:38.828 |-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>)
  9268. 2017-08-01 13:21:38.829 |-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)
  9269. 2017-08-01 13:21:38.830 |-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()
  9270. 2017-08-01 13:21:38.830 |-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)
  9271. 2017-08-01 13:21:38.830 |-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)
  9272. 2017-08-01 13:21:38.831 |-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)
  9273. 2017-08-01 13:21:38.831 |-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)
  9274. 2017-08-01 13:21:38.831 |-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)
  9275. 2017-08-01 13:21:38.831 |-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)
  9276. 2017-08-01 13:21:38.831 |-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()
  9277. 2017-08-01 13:21:38.832 |-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)
  9278. 2017-08-01 13:21:38.832 |-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
  9279. 2017-08-01 13:21:38.832 |-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)
  9280. 2017-08-01 13:21:38.833 |-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)
  9281. 2017-08-01 13:21:38.833 |-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)
  9282. 2017-08-01 13:21:38.926 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  9283. 2017-08-01 13:21:39.005 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9284. 2017-08-01 13:21:39.005 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  9285. 2017-08-01 13:21:39.036 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  9286. 2017-08-01 13:21:39.037 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  9287. 2017-08-01 13:21:39.038 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  9288. 2017-08-01 13:21:39.038 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  9289. 2017-08-01 13:21:39.039 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  9290. 2017-08-01 13:21:39.039 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  9291. 2017-08-01 13:21:39.039 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  9292. 2017-08-01 13:21:39.040 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  9293. 2017-08-01 13:21:39.040 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  9294. 2017-08-01 13:21:39.041 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  9295. 2017-08-01 13:21:39.041 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  9296. 2017-08-01 13:21:39.041 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  9297. 2017-08-01 13:21:39.042 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  9298. 2017-08-01 13:21:39.042 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  9299. 2017-08-01 13:21:39.043 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  9300. 2017-08-01 13:21:39.043 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  9301. 2017-08-01 13:21:39.045 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  9302. 2017-08-01 13:21:39.046 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  9303. 2017-08-01 13:21:39.046 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  9304. 2017-08-01 13:21:39.047 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  9305. 2017-08-01 13:21:39.047 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  9306. 2017-08-01 13:21:39.048 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  9307. 2017-08-01 13:21:39.048 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  9308. 2017-08-01 13:21:39.095 |-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]
  9309. 2017-08-01 13:21:39.397 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  9310. 2017-08-01 13:21:39.397 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  9311. 2017-08-01 13:21:39.397 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  9312. 2017-08-01 13:21:39.397 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  9313. 2017-08-01 13:21:39.397 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  9314. 2017-08-01 13:21:39.398 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  9315. 2017-08-01 13:21:39.398 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  9316. 2017-08-01 13:21:39.398 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  9317. 2017-08-01 13:21:39.399 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  9318. 2017-08-01 13:21:39.399 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  9319. 2017-08-01 13:21:39.399 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  9320. 2017-08-01 13:21:39.400 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  9321. 2017-08-01 13:21:39.400 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  9322. 2017-08-01 13:21:39.400 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  9323. 2017-08-01 13:21:39.401 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  9324. 2017-08-01 13:21:39.401 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  9325. 2017-08-01 13:21:39.401 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  9326. 2017-08-01 13:21:39.402 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  9327. 2017-08-01 13:21:39.405 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  9328. 2017-08-01 13:21:39.406 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  9329. 2017-08-01 13:21:39.406 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  9330. 2017-08-01 13:21:39.406 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  9331. 2017-08-01 13:21:39.406 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  9332. 2017-08-01 13:21:39.406 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  9333. 2017-08-01 13:21:39.406 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  9334. 2017-08-01 13:21:39.407 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  9335. 2017-08-01 13:21:39.410 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  9336. 2017-08-01 13:21:39.414 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  9337. 2017-08-01 13:21:39.414 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  9338. 2017-08-01 13:21:39.415 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  9339. 2017-08-01 13:21:39.415 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  9340. 2017-08-01 13:21:39.415 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  9341. 2017-08-01 13:21:39.677 |-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)
  9342. 2017-08-01 13:21:39.678 |-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()
  9343. 2017-08-01 13:21:39.679 |-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)
  9344. 2017-08-01 13:21:39.679 |-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()
  9345. 2017-08-01 13:21:39.679 |-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)
  9346. 2017-08-01 13:21:39.680 |-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>)
  9347. 2017-08-01 13:21:39.680 |-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()
  9348. 2017-08-01 13:21:39.680 |-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()
  9349. 2017-08-01 13:21:39.680 |-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()
  9350. 2017-08-01 13:21:39.680 |-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()
  9351. 2017-08-01 13:21:39.681 |-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)
  9352. 2017-08-01 13:21:39.681 |-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()
  9353. 2017-08-01 13:21:39.681 |-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)
  9354. 2017-08-01 13:21:39.682 |-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()
  9355. 2017-08-01 13:21:39.682 |-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()
  9356. 2017-08-01 13:21:39.683 |-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
  9357. 2017-08-01 13:21:39.683 |-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()
  9358. 2017-08-01 13:21:40.035 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  9359. 2017-08-01 13:21:40.038 |-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
  9360. 2017-08-01 13:21:40.367 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  9361. 2017-08-01 13:21:40.367 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  9362. 2017-08-01 13:21:40.368 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  9363. 2017-08-01 13:21:40.371 |-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]
  9364. 2017-08-01 13:21:40.372 |-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]
  9365. 2017-08-01 13:21:40.372 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  9366. 2017-08-01 13:21:40.374 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  9367. 2017-08-01 13:21:40.375 |-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]
  9368. 2017-08-01 13:21:40.378 |-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]
  9369. 2017-08-01 13:21:40.379 |-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]
  9370. 2017-08-01 13:21:40.381 |-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]
  9371. 2017-08-01 13:21:40.382 |-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]
  9372. 2017-08-01 13:21:40.384 |-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]
  9373. 2017-08-01 13:21:40.385 |-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]
  9374. 2017-08-01 13:21:40.387 |-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]
  9375. 2017-08-01 13:21:40.389 |-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]
  9376. 2017-08-01 13:21:40.390 |-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]
  9377. 2017-08-01 13:21:40.391 |-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]
  9378. 2017-08-01 13:21:40.393 |-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]
  9379. 2017-08-01 13:21:40.398 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-5} inited
  9380. 2017-08-01 13:21:40.663 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  9381. 2017-08-01 13:21:40.664 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  9382. 2017-08-01 13:21:40.700 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 39
  9383. 2017-08-01 13:21:40.701 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  9384. 2017-08-01 13:21:40.703 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-6} inited
  9385. 2017-08-01 13:21:40.971 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_users
  9386. 2017-08-01 13:21:40.972 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  9387. 2017-08-01 13:21:41.129 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 659
  9388. 2017-08-01 13:21:41.130 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:659
  9389. 2017-08-01 13:21:41.132 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  9390. 2017-08-01 13:21:41.133 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  9391. 2017-08-01 13:21:41.162 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 32
  9392. 2017-08-01 13:21:41.163 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:32
  9393. 2017-08-01 13:21:41.164 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  9394. 2017-08-01 13:21:41.165 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9395. 2017-08-01 13:21:41.191 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  9396. 2017-08-01 13:21:41.191 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:659
  9397. 2017-08-01 13:21:41.201 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  9398. 2017-08-01 13:21:41.202 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  9399. 2017-08-01 13:21:41.206 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  9400. 2017-08-01 13:21:41.224 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  9401. 2017-08-01 13:21:41.228 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 6.577 seconds (JVM running for 633.618)
  9402. 2017-08-01 13:21:45.850 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  9403. 2017-08-01 13:21:45.850 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  9404. 2017-08-01 13:21:45.859 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 9 ms
  9405. 2017-08-01 13:21:45.893 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9406. 2017-08-01 13:21:45.894 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9407. 2017-08-01 13:21:45.901 |-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= ?
  9408. 2017-08-01 13:21:45.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9409. 2017-08-01 13:21:45.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9410. 2017-08-01 13:21:45.931 |-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= ?
  9411. 2017-08-01 13:21:45.932 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9412. 2017-08-01 13:21:45.932 |-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
  9413. 2017-08-01 13:21:45.932 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9414. 2017-08-01 13:21:45.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9415. 2017-08-01 13:21:45.962 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9416. 2017-08-01 13:21:45.963 |-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
  9417. 2017-08-01 13:21:45.963 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9418. 2017-08-01 13:21:45.992 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9419. 2017-08-01 13:21:45.992 |-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=?)
  9420. 2017-08-01 13:21:45.993 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9421. 2017-08-01 13:21:46.019 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9422. 2017-08-01 13:21:46.020 |-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=?)
  9423. 2017-08-01 13:21:46.020 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9424. 2017-08-01 13:21:46.030 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9425. 2017-08-01 13:21:46.032 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9426. 2017-08-01 13:21:46.046 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9427. 2017-08-01 13:21:46.046 |-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
  9428. 2017-08-01 13:21:46.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9429. 2017-08-01 13:21:46.050 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9430. 2017-08-01 13:21:46.051 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9431. 2017-08-01 13:21:46.077 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  9432. 2017-08-01 13:21:46.078 |-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
  9433. 2017-08-01 13:21:46.078 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9434. 2017-08-01 13:21:46.106 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9435. 2017-08-01 13:21:46.158 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9436. 2017-08-01 13:21:46.160 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9437. 2017-08-01 13:21:46.160 |-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= ?
  9438. 2017-08-01 13:21:46.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9439. 2017-08-01 13:21:46.162 |-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= ?
  9440. 2017-08-01 13:21:46.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9441. 2017-08-01 13:21:46.190 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9442. 2017-08-01 13:21:46.191 |-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
  9443. 2017-08-01 13:21:46.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9444. 2017-08-01 13:21:46.191 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9445. 2017-08-01 13:21:46.197 |-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
  9446. 2017-08-01 13:21:46.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9447. 2017-08-01 13:21:46.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9448. 2017-08-01 13:21:46.221 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9449. 2017-08-01 13:21:46.221 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9450. 2017-08-01 13:21:46.224 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9451. 2017-08-01 13:21:46.225 |-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=?)
  9452. 2017-08-01 13:21:46.226 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9453. 2017-08-01 13:21:46.247 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9454. 2017-08-01 13:21:46.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9455. 2017-08-01 13:21:46.254 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9456. 2017-08-01 13:21:46.254 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9457. 2017-08-01 13:21:46.256 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9458. 2017-08-01 13:21:46.256 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9459. 2017-08-01 13:21:46.273 |-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
  9460. 2017-08-01 13:21:46.273 |-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
  9461. 2017-08-01 13:21:46.274 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9462. 2017-08-01 13:21:46.274 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9463. 2017-08-01 13:21:46.303 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9464. 2017-08-01 13:21:46.307 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9465. 2017-08-01 13:21:46.330 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9466. 2017-08-01 13:21:46.333 |-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= ?
  9467. 2017-08-01 13:21:46.334 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9468. 2017-08-01 13:21:46.362 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9469. 2017-08-01 13:21:46.363 |-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
  9470. 2017-08-01 13:21:46.363 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9471. 2017-08-01 13:21:46.390 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9472. 2017-08-01 13:21:46.391 |-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=?)
  9473. 2017-08-01 13:21:46.391 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9474. 2017-08-01 13:21:46.415 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9475. 2017-08-01 13:21:46.421 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9476. 2017-08-01 13:21:46.423 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9477. 2017-08-01 13:21:46.450 |-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
  9478. 2017-08-01 13:21:46.451 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9479. 2017-08-01 13:21:46.549 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9480. 2017-08-01 13:21:46.595 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9481. 2017-08-01 13:21:46.597 |-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= ?
  9482. 2017-08-01 13:21:46.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9483. 2017-08-01 13:21:46.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9484. 2017-08-01 13:21:46.627 |-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
  9485. 2017-08-01 13:21:46.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9486. 2017-08-01 13:21:46.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9487. 2017-08-01 13:21:46.656 |-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=?)
  9488. 2017-08-01 13:21:46.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9489. 2017-08-01 13:21:46.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9490. 2017-08-01 13:21:46.686 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9491. 2017-08-01 13:21:46.688 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9492. 2017-08-01 13:21:46.703 |-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=?
  9493. 2017-08-01 13:21:46.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9494. 2017-08-01 13:21:46.729 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  9495. 2017-08-01 13:21:46.830 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9496. 2017-08-01 13:21:46.832 |-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= ?
  9497. 2017-08-01 13:21:46.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9498. 2017-08-01 13:21:46.861 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9499. 2017-08-01 13:21:46.862 |-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
  9500. 2017-08-01 13:21:46.863 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9501. 2017-08-01 13:21:46.890 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9502. 2017-08-01 13:21:46.892 |-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=?)
  9503. 2017-08-01 13:21:46.892 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9504. 2017-08-01 13:21:46.917 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9505. 2017-08-01 13:21:46.922 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9506. 2017-08-01 13:21:46.924 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9507. 2017-08-01 13:21:46.951 |-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
  9508. 2017-08-01 13:21:46.952 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9509. 2017-08-01 13:21:46.983 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9510. 2017-08-01 13:21:46.986 |-DEBUG [http-nio-8089-exec-3] 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
  9511. 2017-08-01 13:21:46.987 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9512. 2017-08-01 13:21:47.017 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9513. 2017-08-01 13:21:47.019 |-DEBUG [http-nio-8089-exec-3] 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
  9514. 2017-08-01 13:21:47.020 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9515. 2017-08-01 13:21:47.049 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9516. 2017-08-01 13:22:20.264 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9517. 2017-08-01 13:22:20.264 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9518. 2017-08-01 13:22:20.267 |-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= ?
  9519. 2017-08-01 13:22:20.267 |-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= ?
  9520. 2017-08-01 13:22:20.267 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9521. 2017-08-01 13:22:20.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9522. 2017-08-01 13:22:20.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9523. 2017-08-01 13:22:20.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9524. 2017-08-01 13:22:20.297 |-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
  9525. 2017-08-01 13:22:20.297 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9526. 2017-08-01 13:22:20.297 |-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
  9527. 2017-08-01 13:22:20.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9528. 2017-08-01 13:22:20.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9529. 2017-08-01 13:22:20.326 |-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-08-01 13:22:20.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9531. 2017-08-01 13:22:20.326 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9532. 2017-08-01 13:22:20.327 |-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=?)
  9533. 2017-08-01 13:22:20.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9534. 2017-08-01 13:22:20.351 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9535. 2017-08-01 13:22:20.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9536. 2017-08-01 13:22:20.356 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9537. 2017-08-01 13:22:20.356 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9538. 2017-08-01 13:22:20.357 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9539. 2017-08-01 13:22:20.358 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9540. 2017-08-01 13:22:20.362 |-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
  9541. 2017-08-01 13:22:20.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9542. 2017-08-01 13:22:20.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  9543. 2017-08-01 13:22:20.393 |-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
  9544. 2017-08-01 13:22:20.393 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9545. 2017-08-01 13:22:20.423 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9546. 2017-08-01 13:22:20.496 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9547. 2017-08-01 13:22:20.496 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9548. 2017-08-01 13:22:20.499 |-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= ?
  9549. 2017-08-01 13:22:20.499 |-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= ?
  9550. 2017-08-01 13:22:20.499 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9551. 2017-08-01 13:22:20.500 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9552. 2017-08-01 13:22:20.527 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9553. 2017-08-01 13:22:20.528 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9554. 2017-08-01 13:22:20.528 |-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
  9555. 2017-08-01 13:22:20.528 |-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
  9556. 2017-08-01 13:22:20.529 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9557. 2017-08-01 13:22:20.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9558. 2017-08-01 13:22:20.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9559. 2017-08-01 13:22:20.557 |-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=?)
  9560. 2017-08-01 13:22:20.557 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9561. 2017-08-01 13:22:20.557 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9562. 2017-08-01 13:22:20.558 |-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=?)
  9563. 2017-08-01 13:22:20.558 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9564. 2017-08-01 13:22:20.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9565. 2017-08-01 13:22:20.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9566. 2017-08-01 13:22:20.584 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9567. 2017-08-01 13:22:20.586 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9568. 2017-08-01 13:22:20.586 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9569. 2017-08-01 13:22:20.587 |-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
  9570. 2017-08-01 13:22:20.588 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9571. 2017-08-01 13:22:20.588 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9572. 2017-08-01 13:22:20.589 |-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
  9573. 2017-08-01 13:22:20.590 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9574. 2017-08-01 13:22:20.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9575. 2017-08-01 13:22:20.617 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9576. 2017-08-01 13:22:20.630 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9577. 2017-08-01 13:22:20.632 |-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= ?
  9578. 2017-08-01 13:22:20.632 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9579. 2017-08-01 13:22:20.660 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9580. 2017-08-01 13:22:20.661 |-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
  9581. 2017-08-01 13:22:20.661 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9582. 2017-08-01 13:22:20.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9583. 2017-08-01 13:22:20.691 |-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=?)
  9584. 2017-08-01 13:22:20.691 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9585. 2017-08-01 13:22:20.717 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9586. 2017-08-01 13:22:20.720 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9587. 2017-08-01 13:22:20.721 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9588. 2017-08-01 13:22:20.726 |-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
  9589. 2017-08-01 13:22:20.727 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9590. 2017-08-01 13:22:20.854 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9591. 2017-08-01 13:22:20.899 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9592. 2017-08-01 13:22:20.901 |-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= ?
  9593. 2017-08-01 13:22:20.902 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9594. 2017-08-01 13:22:20.928 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9595. 2017-08-01 13:22:20.929 |-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
  9596. 2017-08-01 13:22:20.929 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9597. 2017-08-01 13:22:20.959 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9598. 2017-08-01 13:22:20.960 |-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=?)
  9599. 2017-08-01 13:22:20.961 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9600. 2017-08-01 13:22:20.987 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9601. 2017-08-01 13:22:20.991 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9602. 2017-08-01 13:22:20.992 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9603. 2017-08-01 13:22:20.996 |-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=?
  9604. 2017-08-01 13:22:20.997 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9605. 2017-08-01 13:22:21.023 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  9606. 2017-08-01 13:22:21.129 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9607. 2017-08-01 13:22:21.131 |-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= ?
  9608. 2017-08-01 13:22:21.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9609. 2017-08-01 13:22:21.158 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9610. 2017-08-01 13:22:21.159 |-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
  9611. 2017-08-01 13:22:21.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9612. 2017-08-01 13:22:21.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9613. 2017-08-01 13:22:21.189 |-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=?)
  9614. 2017-08-01 13:22:21.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9615. 2017-08-01 13:22:21.215 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9616. 2017-08-01 13:22:21.221 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9617. 2017-08-01 13:22:21.223 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9618. 2017-08-01 13:22:27.742 |-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
  9619. 2017-08-01 13:22:27.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9620. 2017-08-01 13:22:27.773 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9621. 2017-08-01 13:22:27.775 |-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
  9622. 2017-08-01 13:22:27.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9623. 2017-08-01 13:22:27.807 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9624. 2017-08-01 13:22:27.810 |-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
  9625. 2017-08-01 13:22:27.811 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9626. 2017-08-01 13:22:27.841 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9627. 2017-08-01 13:22:28.694 |-ERROR [http-nio-8089-exec-4] org.apache.coyote.http11.Http11Processor [181] -| Error processing request
  9628. java.lang.NullPointerException: null
  9629. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:389)
  9630. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  9631. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9632. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9633. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9634. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9635. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9636. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9637. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9638. at java.lang.Thread.run(Thread.java:745)
  9639. 2017-08-01 13:22:28.695 |-WARN [http-nio-8089-exec-4] org.apache.catalina.connector.CoyoteAdapter [181] -| Exception while attempting to add an entry to the access log
  9640. java.lang.NullPointerException: null
  9641. at org.apache.catalina.connector.CoyoteAdapter.log(CoyoteAdapter.java:459)
  9642. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:813)
  9643. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9644. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9645. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9646. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9647. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9648. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9649. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9650. at java.lang.Thread.run(Thread.java:745)
  9651. 2017-08-01 13:22:28.696 |-ERROR [http-nio-8089-exec-4] org.apache.coyote.http11.Http11Processor [181] -| Error finishing response
  9652. java.lang.NullPointerException: null
  9653. at org.apache.coyote.http11.Http11OutputBuffer.commit(Http11OutputBuffer.java:351)
  9654. at org.apache.coyote.http11.Http11Processor.prepareResponse(Http11Processor.java:1288)
  9655. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:254)
  9656. at org.apache.coyote.http11.Http11Processor.endRequest(Http11Processor.java:1457)
  9657. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:823)
  9658. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9659. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9660. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9661. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9662. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9663. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9664. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9665. at java.lang.Thread.run(Thread.java:745)
  9666. 2017-08-01 13:22:29.416 |-ERROR [http-nio-8089-exec-6] org.apache.coyote.http11.Http11Processor [181] -| Error processing request
  9667. java.lang.NullPointerException: null
  9668. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:389)
  9669. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  9670. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9671. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9672. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9673. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9674. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9675. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9676. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9677. at java.lang.Thread.run(Thread.java:745)
  9678. 2017-08-01 13:22:29.417 |-WARN [http-nio-8089-exec-6] org.apache.catalina.connector.CoyoteAdapter [181] -| Exception while attempting to add an entry to the access log
  9679. java.lang.NullPointerException: null
  9680. at org.apache.catalina.connector.CoyoteAdapter.log(CoyoteAdapter.java:459)
  9681. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:813)
  9682. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9683. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9684. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9685. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9686. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9687. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9688. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9689. at java.lang.Thread.run(Thread.java:745)
  9690. 2017-08-01 13:22:29.417 |-ERROR [http-nio-8089-exec-6] org.apache.coyote.http11.Http11Processor [181] -| Error finishing response
  9691. java.lang.NullPointerException: null
  9692. at org.apache.coyote.http11.Http11OutputBuffer.commit(Http11OutputBuffer.java:351)
  9693. at org.apache.coyote.http11.Http11Processor.prepareResponse(Http11Processor.java:1288)
  9694. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:254)
  9695. at org.apache.coyote.http11.Http11Processor.endRequest(Http11Processor.java:1457)
  9696. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:823)
  9697. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9698. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9699. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9700. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9701. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9702. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9703. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9704. at java.lang.Thread.run(Thread.java:745)
  9705. 2017-08-01 13:23:06.351 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9706. 2017-08-01 13:23:06.355 |-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= ?
  9707. 2017-08-01 13:23:06.356 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9708. 2017-08-01 13:23:06.385 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9709. 2017-08-01 13:23:06.386 |-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
  9710. 2017-08-01 13:23:06.387 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9711. 2017-08-01 13:23:06.420 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9712. 2017-08-01 13:23:06.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=?)
  9713. 2017-08-01 13:23:06.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9714. 2017-08-01 13:23:06.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9715. 2017-08-01 13:23:06.453 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9716. 2017-08-01 13:23:06.456 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9717. 2017-08-01 13:23:08.607 |-DEBUG [http-nio-8089-exec-8] 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
  9718. 2017-08-01 13:23:08.608 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9719. 2017-08-01 13:23:08.638 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9720. 2017-08-01 13:23:08.643 |-DEBUG [http-nio-8089-exec-8] 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
  9721. 2017-08-01 13:23:08.644 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9722. 2017-08-01 13:23:08.676 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9723. 2017-08-01 13:23:08.679 |-DEBUG [http-nio-8089-exec-8] 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
  9724. 2017-08-01 13:23:08.679 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9725. 2017-08-01 13:23:08.710 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9726. 2017-08-01 13:24:59.380 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9727. 2017-08-01 13:24:59.380 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9728. 2017-08-01 13:24:59.411 |-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= ?
  9729. 2017-08-01 13:24:59.411 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9730. 2017-08-01 13:24:59.411 |-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= ?
  9731. 2017-08-01 13:24:59.412 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9732. 2017-08-01 13:24:59.440 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9733. 2017-08-01 13:24:59.441 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9734. 2017-08-01 13:24:59.465 |-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
  9735. 2017-08-01 13:24:59.465 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9736. 2017-08-01 13:24:59.467 |-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
  9737. 2017-08-01 13:24:59.467 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9738. 2017-08-01 13:24:59.492 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9739. 2017-08-01 13:24:59.494 |-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=?)
  9740. 2017-08-01 13:24:59.494 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9741. 2017-08-01 13:24:59.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9742. 2017-08-01 13:24:59.497 |-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=?)
  9743. 2017-08-01 13:24:59.498 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9744. 2017-08-01 13:24:59.520 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9745. 2017-08-01 13:24:59.526 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9746. 2017-08-01 13:24:59.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9747. 2017-08-01 13:24:59.528 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9748. 2017-08-01 13:24:59.531 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9749. 2017-08-01 13:24:59.533 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9750. 2017-08-01 13:24:59.535 |-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
  9751. 2017-08-01 13:24:59.536 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  9752. 2017-08-01 13:24:59.564 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  9753. 2017-08-01 13:24:59.565 |-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
  9754. 2017-08-01 13:24:59.566 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9755. 2017-08-01 13:24:59.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9756. 2017-08-01 13:24:59.658 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9757. 2017-08-01 13:24:59.658 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9758. 2017-08-01 13:24:59.661 |-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= ?
  9759. 2017-08-01 13:24:59.661 |-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= ?
  9760. 2017-08-01 13:24:59.661 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9761. 2017-08-01 13:24:59.661 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9762. 2017-08-01 13:24:59.696 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9763. 2017-08-01 13:24:59.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9764. 2017-08-01 13:24:59.697 |-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
  9765. 2017-08-01 13:24:59.697 |-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
  9766. 2017-08-01 13:24:59.697 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9767. 2017-08-01 13:24:59.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9768. 2017-08-01 13:24:59.727 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9769. 2017-08-01 13:24:59.727 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9770. 2017-08-01 13:24:59.728 |-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=?)
  9771. 2017-08-01 13:24:59.728 |-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=?)
  9772. 2017-08-01 13:24:59.729 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9773. 2017-08-01 13:24:59.729 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9774. 2017-08-01 13:24:59.753 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9775. 2017-08-01 13:24:59.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9776. 2017-08-01 13:24:59.759 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9777. 2017-08-01 13:24:59.761 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9778. 2017-08-01 13:24:59.764 |-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
  9779. 2017-08-01 13:24:59.765 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9780. 2017-08-01 13:24:59.765 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9781. 2017-08-01 13:24:59.768 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9782. 2017-08-01 13:24:59.771 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  9783. 2017-08-01 13:24:59.771 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9784. 2017-08-01 13:24:59.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9785. 2017-08-01 13:24:59.801 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9786. 2017-08-01 13:24:59.808 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9787. 2017-08-01 13:24:59.810 |-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= ?
  9788. 2017-08-01 13:24:59.811 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9789. 2017-08-01 13:24:59.847 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9790. 2017-08-01 13:24:59.848 |-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
  9791. 2017-08-01 13:24:59.848 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9792. 2017-08-01 13:24:59.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9793. 2017-08-01 13:24:59.877 |-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=?)
  9794. 2017-08-01 13:24:59.877 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9795. 2017-08-01 13:24:59.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9796. 2017-08-01 13:24:59.908 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9797. 2017-08-01 13:24:59.910 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9798. 2017-08-01 13:24:59.919 |-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
  9799. 2017-08-01 13:24:59.920 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9800. 2017-08-01 13:25:00.012 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9801. 2017-08-01 13:25:00.057 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9802. 2017-08-01 13:25:00.059 |-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= ?
  9803. 2017-08-01 13:25:00.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9804. 2017-08-01 13:25:00.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9805. 2017-08-01 13:25:00.090 |-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
  9806. 2017-08-01 13:25:00.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9807. 2017-08-01 13:25:00.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9808. 2017-08-01 13:25:00.121 |-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=?)
  9809. 2017-08-01 13:25:00.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9810. 2017-08-01 13:25:00.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9811. 2017-08-01 13:25:00.153 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9812. 2017-08-01 13:25:00.155 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9813. 2017-08-01 13:25:00.160 |-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=?
  9814. 2017-08-01 13:25:00.161 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  9815. 2017-08-01 13:25:00.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  9816. 2017-08-01 13:25:00.300 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9817. 2017-08-01 13:25:00.302 |-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= ?
  9818. 2017-08-01 13:25:00.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9819. 2017-08-01 13:25:00.330 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9820. 2017-08-01 13:25:00.331 |-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
  9821. 2017-08-01 13:25:00.331 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9822. 2017-08-01 13:25:00.360 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9823. 2017-08-01 13:25:00.361 |-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=?)
  9824. 2017-08-01 13:25:00.362 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9825. 2017-08-01 13:25:00.388 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9826. 2017-08-01 13:25:00.393 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9827. 2017-08-01 13:25:00.396 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9828. 2017-08-01 13:25:02.682 |-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
  9829. 2017-08-01 13:25:02.683 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9830. 2017-08-01 13:25:02.712 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9831. 2017-08-01 13:25:02.714 |-DEBUG [http-nio-8089-exec-3] 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
  9832. 2017-08-01 13:25:02.715 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9833. 2017-08-01 13:25:02.746 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9834. 2017-08-01 13:25:02.749 |-DEBUG [http-nio-8089-exec-3] 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
  9835. 2017-08-01 13:25:02.749 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9836. 2017-08-01 13:25:02.780 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  9837. 2017-08-01 13:25:36.803 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9838. 2017-08-01 13:25:36.807 |-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= ?
  9839. 2017-08-01 13:25:36.808 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9840. 2017-08-01 13:25:36.836 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9841. 2017-08-01 13:25:36.837 |-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
  9842. 2017-08-01 13:25:36.837 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9843. 2017-08-01 13:25:36.877 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9844. 2017-08-01 13:25:36.878 |-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=?)
  9845. 2017-08-01 13:25:36.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9846. 2017-08-01 13:25:36.906 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9847. 2017-08-01 13:25:36.909 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9848. 2017-08-01 13:25:36.911 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9849. 2017-08-01 13:25:36.913 |-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
  9850. 2017-08-01 13:25:36.914 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9851. 2017-08-01 13:25:36.945 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9852. 2017-08-01 13:25:36.948 |-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
  9853. 2017-08-01 13:25:36.949 |-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)
  9854. 2017-08-01 13:25:36.984 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9855. 2017-08-01 13:25:36.986 |-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
  9856. 2017-08-01 13:25:36.987 |-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)
  9857. 2017-08-01 13:25:37.021 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 97
  9858. 2017-08-01 13:25:53.261 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9859. 2017-08-01 13:25:53.264 |-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= ?
  9860. 2017-08-01 13:25:53.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9861. 2017-08-01 13:25:53.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9862. 2017-08-01 13:25:53.294 |-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
  9863. 2017-08-01 13:25:53.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9864. 2017-08-01 13:25:53.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9865. 2017-08-01 13:25:53.324 |-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=?)
  9866. 2017-08-01 13:25:53.324 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9867. 2017-08-01 13:25:53.350 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9868. 2017-08-01 13:25:53.353 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9869. 2017-08-01 13:25:53.355 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9870. 2017-08-01 13:25:53.358 |-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
  9871. 2017-08-01 13:25:53.358 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9872. 2017-08-01 13:25:53.387 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  9873. 2017-08-01 13:25:53.390 |-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
  9874. 2017-08-01 13:25:53.390 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9875. 2017-08-01 13:25:53.422 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  9876. 2017-08-01 13:25:53.425 |-DEBUG [http-nio-8089-exec-6] 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
  9877. 2017-08-01 13:25:53.426 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-24 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9878. 2017-08-01 13:25:53.462 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 29
  9879. 2017-08-01 13:26:02.613 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9880. 2017-08-01 13:26:02.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= ?
  9881. 2017-08-01 13:26:02.616 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9882. 2017-08-01 13:26:02.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9883. 2017-08-01 13:26:02.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
  9884. 2017-08-01 13:26:02.645 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9885. 2017-08-01 13:26:02.674 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9886. 2017-08-01 13:26:02.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=?)
  9887. 2017-08-01 13:26:02.676 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9888. 2017-08-01 13:26:02.702 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9889. 2017-08-01 13:26:02.705 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9890. 2017-08-01 13:26:02.706 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9891. 2017-08-01 13:26:02.711 |-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
  9892. 2017-08-01 13:26:02.712 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9893. 2017-08-01 13:26:02.741 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  9894. 2017-08-01 13:26:02.744 |-DEBUG [http-nio-8089-exec-10] 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
  9895. 2017-08-01 13:26:02.745 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  9896. 2017-08-01 13:26:02.771 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| <== Total: 6
  9897. 2017-08-01 13:26:04.571 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9898. 2017-08-01 13:26:04.573 |-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= ?
  9899. 2017-08-01 13:26:04.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9900. 2017-08-01 13:26:04.601 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9901. 2017-08-01 13:26:04.602 |-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
  9902. 2017-08-01 13:26:04.602 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9903. 2017-08-01 13:26:04.631 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9904. 2017-08-01 13:26:04.632 |-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=?)
  9905. 2017-08-01 13:26:04.632 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9906. 2017-08-01 13:26:04.657 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9907. 2017-08-01 13:26:04.661 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9908. 2017-08-01 13:26:04.663 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9909. 2017-08-01 13:26:04.666 |-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
  9910. 2017-08-01 13:26:04.667 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  9911. 2017-08-01 13:26:04.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  9912. 2017-08-01 13:26:04.724 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9913. 2017-08-01 13:26:04.726 |-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= ?
  9914. 2017-08-01 13:26:04.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9915. 2017-08-01 13:26:04.753 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9916. 2017-08-01 13:26:04.754 |-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
  9917. 2017-08-01 13:26:04.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9918. 2017-08-01 13:26:04.783 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9919. 2017-08-01 13:26:04.784 |-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=?)
  9920. 2017-08-01 13:26:04.784 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9921. 2017-08-01 13:26:04.810 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9922. 2017-08-01 13:26:04.813 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9923. 2017-08-01 13:26:04.814 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9924. 2017-08-01 13:26:04.817 |-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
  9925. 2017-08-01 13:26:04.817 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9926. 2017-08-01 13:26:04.906 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9927. 2017-08-01 13:26:04.944 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9928. 2017-08-01 13:26:04.946 |-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= ?
  9929. 2017-08-01 13:26:04.947 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9930. 2017-08-01 13:26:04.974 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9931. 2017-08-01 13:26:04.975 |-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
  9932. 2017-08-01 13:26:04.975 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9933. 2017-08-01 13:26:05.006 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9934. 2017-08-01 13:26:05.007 |-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=?)
  9935. 2017-08-01 13:26:05.008 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9936. 2017-08-01 13:26:05.034 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9937. 2017-08-01 13:26:05.039 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9938. 2017-08-01 13:26:05.041 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9939. 2017-08-01 13:26:05.050 |-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
  9940. 2017-08-01 13:26:05.051 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9941. 2017-08-01 13:26:05.132 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9942. 2017-08-01 13:26:05.135 |-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
  9943. 2017-08-01 13:26:05.136 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  9944. 2017-08-01 13:26:05.264 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 574
  9945. 2017-08-01 13:26:06.817 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9946. 2017-08-01 13:26:06.819 |-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= ?
  9947. 2017-08-01 13:26:06.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9948. 2017-08-01 13:26:06.847 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9949. 2017-08-01 13:26:06.848 |-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
  9950. 2017-08-01 13:26:06.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9951. 2017-08-01 13:26:06.877 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9952. 2017-08-01 13:26:06.878 |-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=?)
  9953. 2017-08-01 13:26:06.879 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9954. 2017-08-01 13:26:06.904 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9955. 2017-08-01 13:26:06.909 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9956. 2017-08-01 13:26:06.910 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9957. 2017-08-01 13:26:06.913 |-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
  9958. 2017-08-01 13:26:06.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  9959. 2017-08-01 13:26:06.941 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  9960. 2017-08-01 13:26:06.953 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9961. 2017-08-01 13:26:06.958 |-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= ?
  9962. 2017-08-01 13:26:06.958 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9963. 2017-08-01 13:26:06.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9964. 2017-08-01 13:26:06.988 |-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
  9965. 2017-08-01 13:26:06.988 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9966. 2017-08-01 13:26:07.017 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9967. 2017-08-01 13:26:07.018 |-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=?)
  9968. 2017-08-01 13:26:07.018 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9969. 2017-08-01 13:26:07.044 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9970. 2017-08-01 13:26:07.047 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9971. 2017-08-01 13:26:07.049 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9972. 2017-08-01 13:26:07.052 |-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
  9973. 2017-08-01 13:26:07.053 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9974. 2017-08-01 13:26:07.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9975. 2017-08-01 13:26:07.178 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9976. 2017-08-01 13:26:07.180 |-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= ?
  9977. 2017-08-01 13:26:07.180 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9978. 2017-08-01 13:26:07.208 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9979. 2017-08-01 13:26:07.209 |-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
  9980. 2017-08-01 13:26:07.209 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9981. 2017-08-01 13:26:07.238 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  9982. 2017-08-01 13:26:07.239 |-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=?)
  9983. 2017-08-01 13:26:07.239 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  9984. 2017-08-01 13:26:07.280 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  9985. 2017-08-01 13:26:07.284 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  9986. 2017-08-01 13:26:07.286 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9987. 2017-08-01 13:26:07.293 |-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
  9988. 2017-08-01 13:26:07.294 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9989. 2017-08-01 13:26:07.388 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  9990. 2017-08-01 13:26:07.391 |-DEBUG [http-nio-8089-exec-10] 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
  9991. 2017-08-01 13:26:07.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  9992. 2017-08-01 13:26:07.485 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 395
  9993. 2017-08-01 13:26:08.656 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  9994. 2017-08-01 13:26:08.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= ?
  9995. 2017-08-01 13:26:08.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  9996. 2017-08-01 13:26:08.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9997. 2017-08-01 13:26:08.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
  9998. 2017-08-01 13:26:08.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  9999. 2017-08-01 13:26:08.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10000. 2017-08-01 13:26:08.718 |-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=?)
  10001. 2017-08-01 13:26:08.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10002. 2017-08-01 13:26:08.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10003. 2017-08-01 13:26:08.748 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10004. 2017-08-01 13:26:08.750 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10005. 2017-08-01 13:26:08.752 |-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
  10006. 2017-08-01 13:26:08.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  10007. 2017-08-01 13:26:08.781 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  10008. 2017-08-01 13:26:08.790 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10009. 2017-08-01 13:26:08.792 |-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= ?
  10010. 2017-08-01 13:26:08.793 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10011. 2017-08-01 13:26:08.821 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10012. 2017-08-01 13:26:08.822 |-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
  10013. 2017-08-01 13:26:08.822 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10014. 2017-08-01 13:26:08.851 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10015. 2017-08-01 13:26:08.852 |-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=?)
  10016. 2017-08-01 13:26:08.852 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10017. 2017-08-01 13:26:08.878 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10018. 2017-08-01 13:26:08.881 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10019. 2017-08-01 13:26:08.882 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10020. 2017-08-01 13:26:08.886 |-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
  10021. 2017-08-01 13:26:08.886 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10022. 2017-08-01 13:26:08.971 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10023. 2017-08-01 13:26:09.007 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10024. 2017-08-01 13:26:09.009 |-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= ?
  10025. 2017-08-01 13:26:09.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10026. 2017-08-01 13:26:09.037 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10027. 2017-08-01 13:26:09.038 |-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
  10028. 2017-08-01 13:26:09.038 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10029. 2017-08-01 13:26:09.067 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10030. 2017-08-01 13:26:09.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10031. 2017-08-01 13:26:09.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10032. 2017-08-01 13:26:09.094 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10033. 2017-08-01 13:26:09.097 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10034. 2017-08-01 13:26:09.098 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10035. 2017-08-01 13:26:09.102 |-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
  10036. 2017-08-01 13:26:09.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10037. 2017-08-01 13:26:09.182 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10038. 2017-08-01 13:26:09.185 |-DEBUG [http-nio-8089-exec-3] 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
  10039. 2017-08-01 13:26:09.186 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10040. 2017-08-01 13:26:09.277 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 574
  10041. 2017-08-01 13:26:10.117 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10042. 2017-08-01 13:26:10.119 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10043. 2017-08-01 13:26: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= ?
  10044. 2017-08-01 13:26:10.119 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10045. 2017-08-01 13:26:10.120 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10046. 2017-08-01 13:26:10.129 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10047. 2017-08-01 13:26:10.130 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10048. 2017-08-01 13:26:10.134 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10049. 2017-08-01 13:26:10.147 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10050. 2017-08-01 13:26:10.148 |-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= ?
  10051. 2017-08-01 13:26:10.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10052. 2017-08-01 13:26:10.148 |-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
  10053. 2017-08-01 13:26:10.148 |-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= ?
  10054. 2017-08-01 13:26:10.148 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10055. 2017-08-01 13:26:10.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10056. 2017-08-01 13:26:10.176 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10057. 2017-08-01 13:26:10.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10058. 2017-08-01 13:26:10.177 |-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= ?
  10059. 2017-08-01 13:26:10.177 |-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= ?
  10060. 2017-08-01 13:26:10.177 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10061. 2017-08-01 13:26:10.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10062. 2017-08-01 13:26:10.178 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10063. 2017-08-01 13:26:10.178 |-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
  10064. 2017-08-01 13:26:10.178 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10065. 2017-08-01 13:26:10.199 |-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
  10066. 2017-08-01 13:26:10.200 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10067. 2017-08-01 13:26:10.205 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10068. 2017-08-01 13:26:10.205 |-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= ?
  10069. 2017-08-01 13:26:10.206 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10070. 2017-08-01 13:26:10.206 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10071. 2017-08-01 13:26:10.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10072. 2017-08-01 13:26:10.207 |-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=?)
  10073. 2017-08-01 13:26:10.207 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10074. 2017-08-01 13:26:10.226 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10075. 2017-08-01 13:26:10.227 |-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
  10076. 2017-08-01 13:26:10.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10077. 2017-08-01 13:26:10.233 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10078. 2017-08-01 13:26:10.233 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10079. 2017-08-01 13:26:10.234 |-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
  10080. 2017-08-01 13:26:10.234 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10081. 2017-08-01 13:26:10.236 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10082. 2017-08-01 13:26:10.238 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10083. 2017-08-01 13:26:10.240 |-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
  10084. 2017-08-01 13:26:10.241 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10085. 2017-08-01 13:26:10.254 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10086. 2017-08-01 13:26:10.254 |-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=?)
  10087. 2017-08-01 13:26:10.255 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10088. 2017-08-01 13:26:10.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10089. 2017-08-01 13:26:10.263 |-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=?)
  10090. 2017-08-01 13:26:10.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10091. 2017-08-01 13:26:10.268 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10092. 2017-08-01 13:26:10.278 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10093. 2017-08-01 13:26:10.279 |-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
  10094. 2017-08-01 13:26:10.279 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10095. 2017-08-01 13:26:10.281 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10096. 2017-08-01 13:26:10.282 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10097. 2017-08-01 13:26:10.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10098. 2017-08-01 13:26:10.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=?)
  10099. 2017-08-01 13:26:10.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10100. 2017-08-01 13:26:10.292 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10101. 2017-08-01 13:26:10.293 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10102. 2017-08-01 13:26:10.306 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10103. 2017-08-01 13:26:10.306 |-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=?)
  10104. 2017-08-01 13:26:10.307 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10105. 2017-08-01 13:26:10.316 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10106. 2017-08-01 13:26:10.317 |-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, m.* FROM check_score m INNER JOIN ( select * From check_task t where t.check_status != 22 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1=1 GROUP BY mth , m.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
  10107. 2017-08-01 13:26:10.318 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 2016-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10108. 2017-08-01 13:26:10.319 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10109. 2017-08-01 13:26:10.320 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10110. 2017-08-01 13:26:10.322 |-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
  10111. 2017-08-01 13:26:10.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10112. 2017-08-01 13:26:10.331 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10113. 2017-08-01 13:26:10.331 |-DEBUG [http-nio-8089-exec-1] 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, m.* FROM check_score m INNER JOIN ( select * From check_task t where t.check_status != 22 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1=1 GROUP BY mth , m.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
  10114. 2017-08-01 13:26:10.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/08(String), 2017/08(String)
  10115. 2017-08-01 13:26:10.333 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10116. 2017-08-01 13:26:10.335 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10117. 2017-08-01 13:26:10.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10118. 2017-08-01 13:26:10.456 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 17
  10119. 2017-08-01 13:26:10.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedNum [159] -| ==> Preparing: select sum(num) AS num from ( SELECT COUNT(DISTINCT ct.checked_person) as num FROM check_task ct WHERE ct.check_status != 22 AND monthfunc (ct.start_time) = ? AND monthfunc (ct.end_time) = ? GROUP BY ct.checked_dept ) u
  10120. 2017-08-01 13:26:10.457 |-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
  10121. 2017-08-01 13:26:10.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedNum [159] -| ==> Parameters: 2017/08(String), 2017/08(String)
  10122. 2017-08-01 13:26:10.457 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10123. 2017-08-01 13:26:10.470 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <== Total: 3
  10124. 2017-08-01 13:26:10.471 |-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=?)
  10125. 2017-08-01 13:26:10.471 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10126. 2017-08-01 13:26:10.485 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10127. 2017-08-01 13:26:10.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10128. 2017-08-01 13:26:10.498 |-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, m.* FROM check_score m INNER JOIN ( select * From check_task t where t.check_status != 22 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1=1 GROUP BY mth , m.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
  10129. 2017-08-01 13:26:10.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/08(String), 2017/08(String)
  10130. 2017-08-01 13:26:10.500 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10131. 2017-08-01 13:26:10.501 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10132. 2017-08-01 13:26:10.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedNum [159] -| <== Total: 1
  10133. 2017-08-01 13:26:10.516 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(DISTINCT m.task_id) 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
  10134. 2017-08-01 13:26:10.516 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/08(String)
  10135. 2017-08-01 13:26:10.558 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 5
  10136. 2017-08-01 13:26:10.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(DISTINCT m.task_id) 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
  10137. 2017-08-01 13:26:10.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/08(String)
  10138. 2017-08-01 13:26:10.601 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 5
  10139. 2017-08-01 13:26:10.603 |-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, m.* FROM check_score m INNER JOIN ( select * From check_task t where t.check_status != 22 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1=1 GROUP BY mth , m.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
  10140. 2017-08-01 13:26:10.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/08(String), 2017/08(String)
  10141. 2017-08-01 13:26:10.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <== Total: 17
  10142. 2017-08-01 13:26:10.607 |-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
  10143. 2017-08-01 13:26:10.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters:
  10144. 2017-08-01 13:26:10.608 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Preparing: SELECT count(DISTINCT m.task_id) 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
  10145. 2017-08-01 13:26:10.609 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
  10146. 2017-08-01 13:26:10.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <== Total: 21
  10147. 2017-08-01 13:26:10.638 |-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
  10148. 2017-08-01 13:26:10.639 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10149. 2017-08-01 13:26:10.653 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <== Total: 7
  10150. 2017-08-01 13:26:10.666 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  10151. 2017-08-01 13:26:10.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <== Total: 24
  10152. 2017-08-01 13:26:14.859 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10153. 2017-08-01 13:26:14.861 |-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= ?
  10154. 2017-08-01 13:26:14.862 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10155. 2017-08-01 13:26:14.891 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10156. 2017-08-01 13:26:14.893 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10157. 2017-08-01 13:26:14.893 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10158. 2017-08-01 13:26:14.922 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10159. 2017-08-01 13:26:14.923 |-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=?)
  10160. 2017-08-01 13:26:14.923 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10161. 2017-08-01 13:26:14.948 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10162. 2017-08-01 13:26:14.950 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10163. 2017-08-01 13:26:14.951 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10164. 2017-08-01 13:26:14.953 |-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
  10165. 2017-08-01 13:26:14.954 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  10166. 2017-08-01 13:26:14.981 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  10167. 2017-08-01 13:26:15.003 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10168. 2017-08-01 13:26:15.005 |-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= ?
  10169. 2017-08-01 13:26:15.005 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10170. 2017-08-01 13:26:15.032 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10171. 2017-08-01 13:26:15.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
  10172. 2017-08-01 13:26:15.034 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10173. 2017-08-01 13:26:15.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10174. 2017-08-01 13:26:15.061 |-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=?)
  10175. 2017-08-01 13:26:15.062 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10176. 2017-08-01 13:26:15.086 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10177. 2017-08-01 13:26:15.089 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10178. 2017-08-01 13:26:15.090 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10179. 2017-08-01 13:26:15.091 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10180. 2017-08-01 13:26:15.093 |-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= ?
  10181. 2017-08-01 13:26:15.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10182. 2017-08-01 13:26:15.093 |-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
  10183. 2017-08-01 13:26:15.094 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10184. 2017-08-01 13:26:15.120 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10185. 2017-08-01 13:26:15.121 |-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
  10186. 2017-08-01 13:26:15.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10187. 2017-08-01 13:26:15.149 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10188. 2017-08-01 13:26:15.150 |-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=?)
  10189. 2017-08-01 13:26:15.150 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10190. 2017-08-01 13:26:15.174 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10191. 2017-08-01 13:26:15.179 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10192. 2017-08-01 13:26:15.181 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10193. 2017-08-01 13:26:15.182 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10194. 2017-08-01 13:26:15.185 |-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
  10195. 2017-08-01 13:26:15.185 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  10196. 2017-08-01 13:26:15.213 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  10197. 2017-08-01 13:26:15.230 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10198. 2017-08-01 13:26:15.230 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10199. 2017-08-01 13:26:15.232 |-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= ?
  10200. 2017-08-01 13:26:15.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= ?
  10201. 2017-08-01 13:26:15.233 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10202. 2017-08-01 13:26:15.233 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10203. 2017-08-01 13:26:15.260 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10204. 2017-08-01 13:26:15.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10205. 2017-08-01 13:26:15.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
  10206. 2017-08-01 13:26:15.261 |-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
  10207. 2017-08-01 13:26:15.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10208. 2017-08-01 13:26:15.262 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10209. 2017-08-01 13:26:15.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10210. 2017-08-01 13:26:15.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=?)
  10211. 2017-08-01 13:26:15.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10212. 2017-08-01 13:26:15.290 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10213. 2017-08-01 13:26:15.291 |-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=?)
  10214. 2017-08-01 13:26:15.291 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10215. 2017-08-01 13:26:15.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10216. 2017-08-01 13:26:15.320 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10217. 2017-08-01 13:26:15.322 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10218. 2017-08-01 13:26:15.323 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10219. 2017-08-01 13:26:15.326 |-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
  10220. 2017-08-01 13:26:15.327 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10221. 2017-08-01 13:26:15.327 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10222. 2017-08-01 13:26:15.328 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10223. 2017-08-01 13:26:15.331 |-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
  10224. 2017-08-01 13:26:15.331 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10225. 2017-08-01 13:26:15.407 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10226. 2017-08-01 13:26:15.409 |-DEBUG [http-nio-8089-exec-7] 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
  10227. 2017-08-01 13:26:15.410 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10228. 2017-08-01 13:26:15.472 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10229. 2017-08-01 13:26:15.500 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 574
  10230. 2017-08-01 13:26:15.527 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10231. 2017-08-01 13:26:15.528 |-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= ?
  10232. 2017-08-01 13:26:15.529 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10233. 2017-08-01 13:26:15.531 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10234. 2017-08-01 13:26:15.533 |-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= ?
  10235. 2017-08-01 13:26:15.533 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10236. 2017-08-01 13:26:15.556 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10237. 2017-08-01 13:26:15.557 |-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
  10238. 2017-08-01 13:26:15.558 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10239. 2017-08-01 13:26:15.559 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10240. 2017-08-01 13:26:15.561 |-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= ?
  10241. 2017-08-01 13:26:15.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10242. 2017-08-01 13:26:15.563 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10243. 2017-08-01 13:26:15.564 |-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
  10244. 2017-08-01 13:26:15.564 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10245. 2017-08-01 13:26:15.584 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10246. 2017-08-01 13:26:15.585 |-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=?)
  10247. 2017-08-01 13:26:15.585 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10248. 2017-08-01 13:26:15.588 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10249. 2017-08-01 13:26:15.589 |-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
  10250. 2017-08-01 13:26:15.589 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10251. 2017-08-01 13:26:15.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10252. 2017-08-01 13:26:15.592 |-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=?)
  10253. 2017-08-01 13:26:15.592 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10254. 2017-08-01 13:26:15.609 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10255. 2017-08-01 13:26:15.612 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10256. 2017-08-01 13:26:15.613 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10257. 2017-08-01 13:26:15.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10258. 2017-08-01 13:26:15.618 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10259. 2017-08-01 13:26:15.619 |-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=?)
  10260. 2017-08-01 13:26:15.619 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10261. 2017-08-01 13:26:15.620 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10262. 2017-08-01 13:26:15.621 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10263. 2017-08-01 13:26:15.625 |-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 < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  10264. 2017-08-01 13:26:15.625 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10265. 2017-08-01 13:26:15.644 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10266. 2017-08-01 13:26:15.647 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10267. 2017-08-01 13:26:15.648 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10268. 2017-08-01 13:26:15.651 |-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
  10269. 2017-08-01 13:26:15.651 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10270. 2017-08-01 13:26:15.653 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10271. 2017-08-01 13:26:15.654 |-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 < ? GROUP BY t.checked_person
  10272. 2017-08-01 13:26:15.655 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10273. 2017-08-01 13:26:15.688 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10274. 2017-08-01 13:26:15.690 |-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
  10275. 2017-08-01 13:26:15.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10276. 2017-08-01 13:26:15.772 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10277. 2017-08-01 13:26:15.775 |-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
  10278. 2017-08-01 13:26:15.775 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10279. 2017-08-01 13:26:15.783 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10280. 2017-08-01 13:26:15.784 |-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
  10281. 2017-08-01 13:26:15.785 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10282. 2017-08-01 13:26:15.834 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10283. 2017-08-01 13:26:15.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= ?
  10284. 2017-08-01 13:26:15.838 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10285. 2017-08-01 13:26:15.843 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10286. 2017-08-01 13:26:15.881 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10287. 2017-08-01 13:26:15.887 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 574
  10288. 2017-08-01 13:26:15.890 |-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
  10289. 2017-08-01 13:26:15.891 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10290. 2017-08-01 13:26:15.891 |-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
  10291. 2017-08-01 13:26:15.892 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10292. 2017-08-01 13:26:15.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10293. 2017-08-01 13:26:15.924 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10294. 2017-08-01 13:26:15.925 |-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=?)
  10295. 2017-08-01 13:26:15.925 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10296. 2017-08-01 13:26:15.952 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10297. 2017-08-01 13:26:15.957 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10298. 2017-08-01 13:26:15.958 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10299. 2017-08-01 13:26:15.961 |-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
  10300. 2017-08-01 13:26:15.961 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  10301. 2017-08-01 13:26:15.989 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  10302. 2017-08-01 13:26:16.834 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10303. 2017-08-01 13:26:16.835 |-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= ?
  10304. 2017-08-01 13:26:16.836 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10305. 2017-08-01 13:26:16.864 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10306. 2017-08-01 13:26:16.864 |-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
  10307. 2017-08-01 13:26:16.865 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10308. 2017-08-01 13:26:16.893 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10309. 2017-08-01 13:26:16.894 |-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=?)
  10310. 2017-08-01 13:26:16.895 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10311. 2017-08-01 13:26:16.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10312. 2017-08-01 13:26:16.923 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10313. 2017-08-01 13:26:16.924 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10314. 2017-08-01 13:26:16.927 |-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
  10315. 2017-08-01 13:26:16.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10316. 2017-08-01 13:26:17.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10317. 2017-08-01 13:26:17.533 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10318. 2017-08-01 13:26:17.535 |-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= ?
  10319. 2017-08-01 13:26:17.536 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10320. 2017-08-01 13:26:17.536 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10321. 2017-08-01 13:26:17.537 |-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= ?
  10322. 2017-08-01 13:26:17.538 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10323. 2017-08-01 13:26:17.563 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10324. 2017-08-01 13:26:17.564 |-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
  10325. 2017-08-01 13:26:17.565 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10326. 2017-08-01 13:26:17.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10327. 2017-08-01 13:26:17.566 |-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
  10328. 2017-08-01 13:26:17.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10329. 2017-08-01 13:26:17.593 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10330. 2017-08-01 13:26:17.594 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10331. 2017-08-01 13:26:17.594 |-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=?)
  10332. 2017-08-01 13:26:17.594 |-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=?)
  10333. 2017-08-01 13:26:17.595 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10334. 2017-08-01 13:26:17.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10335. 2017-08-01 13:26:17.619 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10336. 2017-08-01 13:26:17.621 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10337. 2017-08-01 13:26:17.622 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10338. 2017-08-01 13:26:17.623 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10339. 2017-08-01 13:26:17.625 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10340. 2017-08-01 13:26:17.627 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10341. 2017-08-01 13:26:17.630 |-DEBUG [http-nio-8089-exec-3] 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
  10342. 2017-08-01 13:26:17.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10343. 2017-08-01 13:26:17.660 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10344. 2017-08-01 13:26:17.662 |-DEBUG [http-nio-8089-exec-3] 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
  10345. 2017-08-01 13:26:17.663 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10346. 2017-08-01 13:26:17.695 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10347. 2017-08-01 13:26:17.699 |-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
  10348. 2017-08-01 13:26:17.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10349. 2017-08-01 13:26:17.782 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10350. 2017-08-01 13:26:17.785 |-DEBUG [http-nio-8089-exec-3] 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
  10351. 2017-08-01 13:26:17.785 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10352. 2017-08-01 13:26:17.850 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10353. 2017-08-01 13:26:17.865 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10354. 2017-08-01 13:26:17.865 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10355. 2017-08-01 13:26:17.893 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10356. 2017-08-01 13:26:27.245 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10357. 2017-08-01 13:26:27.246 |-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= ?
  10358. 2017-08-01 13:26:27.247 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10359. 2017-08-01 13:26:27.275 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10360. 2017-08-01 13:26:27.276 |-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
  10361. 2017-08-01 13:26:27.276 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10362. 2017-08-01 13:26:27.304 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10363. 2017-08-01 13:26:27.305 |-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=?)
  10364. 2017-08-01 13:26:27.305 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10365. 2017-08-01 13:26:27.331 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10366. 2017-08-01 13:26:27.334 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10367. 2017-08-01 13:26:27.336 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10368. 2017-08-01 13:26:28.306 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10369. 2017-08-01 13:26:28.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= ?
  10370. 2017-08-01 13:26:28.308 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10371. 2017-08-01 13:26:28.337 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10372. 2017-08-01 13:26:28.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
  10373. 2017-08-01 13:26:28.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10374. 2017-08-01 13:26:28.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10375. 2017-08-01 13:26:28.370 |-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=?)
  10376. 2017-08-01 13:26:28.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10377. 2017-08-01 13:26:28.396 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10378. 2017-08-01 13:26:28.399 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10379. 2017-08-01 13:26:28.400 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10380. 2017-08-01 13:26:29.813 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10381. 2017-08-01 13:26:29.815 |-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= ?
  10382. 2017-08-01 13:26:29.815 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10383. 2017-08-01 13:26:29.844 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10384. 2017-08-01 13:26:29.845 |-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
  10385. 2017-08-01 13:26:29.845 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10386. 2017-08-01 13:26:29.874 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10387. 2017-08-01 13:26:29.875 |-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=?)
  10388. 2017-08-01 13:26:29.875 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10389. 2017-08-01 13:26:29.901 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10390. 2017-08-01 13:26:29.904 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10391. 2017-08-01 13:26:29.905 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10392. 2017-08-01 13:26:31.494 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10393. 2017-08-01 13:26:31.497 |-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= ?
  10394. 2017-08-01 13:26:31.497 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10395. 2017-08-01 13:26:31.526 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10396. 2017-08-01 13:26:31.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10397. 2017-08-01 13:26:31.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10398. 2017-08-01 13:26:31.556 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10399. 2017-08-01 13:26:31.557 |-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=?)
  10400. 2017-08-01 13:26:31.557 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10401. 2017-08-01 13:26:31.583 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10402. 2017-08-01 13:26:31.586 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10403. 2017-08-01 13:26:31.587 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10404. 2017-08-01 13:26:33.518 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10405. 2017-08-01 13:26:33.519 |-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= ?
  10406. 2017-08-01 13:26:33.520 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10407. 2017-08-01 13:26:33.521 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10408. 2017-08-01 13:26:33.523 |-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= ?
  10409. 2017-08-01 13:26:33.524 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10410. 2017-08-01 13:26:33.547 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10411. 2017-08-01 13:26:33.548 |-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
  10412. 2017-08-01 13:26:33.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10413. 2017-08-01 13:26:33.551 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10414. 2017-08-01 13:26:33.552 |-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
  10415. 2017-08-01 13:26:33.552 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10416. 2017-08-01 13:26:33.577 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10417. 2017-08-01 13:26:33.577 |-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=?)
  10418. 2017-08-01 13:26:33.578 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10419. 2017-08-01 13:26:33.579 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10420. 2017-08-01 13:26:33.579 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10421. 2017-08-01 13:26:33.579 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10422. 2017-08-01 13:26:33.604 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10423. 2017-08-01 13:26:33.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10424. 2017-08-01 13:26:33.610 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10425. 2017-08-01 13:26:33.610 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10426. 2017-08-01 13:26:33.612 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10427. 2017-08-01 13:26:33.612 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10428. 2017-08-01 13:26:33.616 |-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
  10429. 2017-08-01 13:26:33.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10430. 2017-08-01 13:26:33.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10431. 2017-08-01 13:26:33.647 |-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
  10432. 2017-08-01 13:26:33.647 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10433. 2017-08-01 13:26:33.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10434. 2017-08-01 13:26:33.725 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10435. 2017-08-01 13:26:33.725 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10436. 2017-08-01 13:26:33.727 |-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= ?
  10437. 2017-08-01 13:26:33.727 |-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= ?
  10438. 2017-08-01 13:26:33.727 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10439. 2017-08-01 13:26:33.728 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10440. 2017-08-01 13:26:33.755 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10441. 2017-08-01 13:26:33.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10442. 2017-08-01 13:26:33.756 |-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
  10443. 2017-08-01 13:26:33.756 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10444. 2017-08-01 13:26:33.756 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10445. 2017-08-01 13:26:33.756 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10446. 2017-08-01 13:26:33.784 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10447. 2017-08-01 13:26:33.785 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10448. 2017-08-01 13:26:33.785 |-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=?)
  10449. 2017-08-01 13:26:33.786 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10450. 2017-08-01 13:26:33.786 |-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=?)
  10451. 2017-08-01 13:26:33.786 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10452. 2017-08-01 13:26:33.810 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10453. 2017-08-01 13:26:33.811 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10454. 2017-08-01 13:26:33.815 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10455. 2017-08-01 13:26:33.815 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10456. 2017-08-01 13:26:33.817 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10457. 2017-08-01 13:26:33.818 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10458. 2017-08-01 13:26:33.820 |-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
  10459. 2017-08-01 13:26:33.820 |-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
  10460. 2017-08-01 13:26:33.820 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10461. 2017-08-01 13:26:33.821 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10462. 2017-08-01 13:26:33.849 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10463. 2017-08-01 13:26:33.850 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10464. 2017-08-01 13:26:33.864 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10465. 2017-08-01 13:26:33.866 |-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= ?
  10466. 2017-08-01 13:26:33.867 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10467. 2017-08-01 13:26:33.894 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10468. 2017-08-01 13:26:33.895 |-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
  10469. 2017-08-01 13:26:33.895 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10470. 2017-08-01 13:26:33.925 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10471. 2017-08-01 13:26:33.926 |-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=?)
  10472. 2017-08-01 13:26:33.926 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10473. 2017-08-01 13:26:33.952 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10474. 2017-08-01 13:26:33.956 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10475. 2017-08-01 13:26:33.958 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10476. 2017-08-01 13:26:33.965 |-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
  10477. 2017-08-01 13:26:33.966 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10478. 2017-08-01 13:26:34.056 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10479. 2017-08-01 13:26:34.101 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10480. 2017-08-01 13:26:34.102 |-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= ?
  10481. 2017-08-01 13:26:34.103 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10482. 2017-08-01 13:26:34.131 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10483. 2017-08-01 13:26:34.132 |-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
  10484. 2017-08-01 13:26:34.132 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10485. 2017-08-01 13:26:34.161 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10486. 2017-08-01 13:26:34.162 |-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=?)
  10487. 2017-08-01 13:26:34.162 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10488. 2017-08-01 13:26:34.188 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10489. 2017-08-01 13:26:34.192 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10490. 2017-08-01 13:26:34.194 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10491. 2017-08-01 13:26:34.200 |-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=?
  10492. 2017-08-01 13:26:34.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10493. 2017-08-01 13:26:34.227 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10494. 2017-08-01 13:26:34.345 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10495. 2017-08-01 13:26:34.345 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10496. 2017-08-01 13:26:34.347 |-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= ?
  10497. 2017-08-01 13:26:34.347 |-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= ?
  10498. 2017-08-01 13:26:34.347 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10499. 2017-08-01 13:26:34.347 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10500. 2017-08-01 13:26:34.375 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10501. 2017-08-01 13:26:34.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10502. 2017-08-01 13:26:34.376 |-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
  10503. 2017-08-01 13:26:34.376 |-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
  10504. 2017-08-01 13:26:34.376 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10505. 2017-08-01 13:26:34.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10506. 2017-08-01 13:26:34.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10507. 2017-08-01 13:26:34.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=?)
  10508. 2017-08-01 13:26:34.405 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10509. 2017-08-01 13:26:34.405 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10510. 2017-08-01 13:26:34.406 |-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=?)
  10511. 2017-08-01 13:26:34.407 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10512. 2017-08-01 13:26:34.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10513. 2017-08-01 13:26:34.433 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10514. 2017-08-01 13:26:34.435 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10515. 2017-08-01 13:26:34.437 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10516. 2017-08-01 13:26:34.437 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10517. 2017-08-01 13:26:34.438 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10518. 2017-08-01 13:26:34.443 |-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 < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  10519. 2017-08-01 13:26:34.445 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10520. 2017-08-01 13:26:34.473 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10521. 2017-08-01 13:26:34.475 |-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 < ? GROUP BY t.checked_person
  10522. 2017-08-01 13:26:34.476 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10523. 2017-08-01 13:26:34.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10524. 2017-08-01 13:26:34.509 |-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
  10525. 2017-08-01 13:26:34.510 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10526. 2017-08-01 13:26:34.596 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10527. 2017-08-01 13:26:34.598 |-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
  10528. 2017-08-01 13:26:34.599 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10529. 2017-08-01 13:26:34.667 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10530. 2017-08-01 13:26:34.675 |-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
  10531. 2017-08-01 13:26:34.676 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10532. 2017-08-01 13:26:34.705 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10533. 2017-08-01 13:26:45.406 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10534. 2017-08-01 13:26:45.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= ?
  10535. 2017-08-01 13:26:45.409 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10536. 2017-08-01 13:26:45.436 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10537. 2017-08-01 13:26:45.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
  10538. 2017-08-01 13:26:45.438 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10539. 2017-08-01 13:26:45.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10540. 2017-08-01 13:26:45.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=?)
  10541. 2017-08-01 13:26:45.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10542. 2017-08-01 13:26:45.495 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10543. 2017-08-01 13:26:45.498 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10544. 2017-08-01 13:26:45.499 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10545. 2017-08-01 13:26:46.646 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10546. 2017-08-01 13:26:46.648 |-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= ?
  10547. 2017-08-01 13:26:46.649 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10548. 2017-08-01 13:26:46.676 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10549. 2017-08-01 13:26:46.677 |-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
  10550. 2017-08-01 13:26:46.677 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10551. 2017-08-01 13:26:46.706 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10552. 2017-08-01 13:26:46.707 |-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=?)
  10553. 2017-08-01 13:26:46.708 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10554. 2017-08-01 13:26:46.733 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10555. 2017-08-01 13:26:46.736 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10556. 2017-08-01 13:26:46.737 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10557. 2017-08-01 13:30:42.440 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10558. 2017-08-01 13:30:42.444 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10559. 2017-08-01 13:30:42.471 |-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= ?
  10560. 2017-08-01 13:30:42.472 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10561. 2017-08-01 13:30:42.499 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10562. 2017-08-01 13:30:42.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
  10563. 2017-08-01 13:30:42.525 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10564. 2017-08-01 13:30:42.554 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10565. 2017-08-01 13:30:42.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=?)
  10566. 2017-08-01 13:30:42.555 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10567. 2017-08-01 13:30:42.581 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10568. 2017-08-01 13:30:42.585 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10569. 2017-08-01 13:30:42.586 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10570. 2017-08-01 13:30:43.469 |-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= ?
  10571. 2017-08-01 13:30:43.469 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10572. 2017-08-01 13:30:43.497 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10573. 2017-08-01 13:30:43.498 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10574. 2017-08-01 13:30:43.498 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10575. 2017-08-01 13:30:43.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10576. 2017-08-01 13:30:43.528 |-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=?)
  10577. 2017-08-01 13:30:43.528 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10578. 2017-08-01 13:30:43.566 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10579. 2017-08-01 13:30:43.571 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10580. 2017-08-01 13:30:43.573 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10581. 2017-08-01 13:30:43.577 |-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 < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  10582. 2017-08-01 13:30:43.578 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10583. 2017-08-01 13:30:43.607 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10584. 2017-08-01 13:30:43.610 |-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 < ? GROUP BY t.checked_person
  10585. 2017-08-01 13:30:43.610 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10586. 2017-08-01 13:30:43.642 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10587. 2017-08-01 13:30:43.646 |-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
  10588. 2017-08-01 13:30:43.646 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10589. 2017-08-01 13:30:43.740 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10590. 2017-08-01 13:30:43.741 |-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
  10591. 2017-08-01 13:30:43.742 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10592. 2017-08-01 13:30:43.821 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10593. 2017-08-01 13:30:43.826 |-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
  10594. 2017-08-01 13:30:43.827 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10595. 2017-08-01 13:30:43.856 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10596. 2017-08-01 13:31:07.026 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10597. 2017-08-01 13:31:07.027 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10598. 2017-08-01 13:31:07.028 |-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= ?
  10599. 2017-08-01 13:31:07.030 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10600. 2017-08-01 13:31:07.032 |-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= ?
  10601. 2017-08-01 13:31:07.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10602. 2017-08-01 13:31:07.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10603. 2017-08-01 13:31:07.062 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10604. 2017-08-01 13:31:07.062 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10605. 2017-08-01 13:31:07.063 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10606. 2017-08-01 13:31:07.091 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10607. 2017-08-01 13:31:07.092 |-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=?)
  10608. 2017-08-01 13:31:07.092 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10609. 2017-08-01 13:31:07.118 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10610. 2017-08-01 13:31:07.123 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10611. 2017-08-01 13:31:07.124 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10612. 2017-08-01 13:31:07.129 |-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
  10613. 2017-08-01 13:31:07.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10614. 2017-08-01 13:31:07.158 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10615. 2017-08-01 13:31:07.159 |-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
  10616. 2017-08-01 13:31:07.159 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10617. 2017-08-01 13:31:07.188 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10618. 2017-08-01 13:31:07.240 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10619. 2017-08-01 13:31:07.243 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10620. 2017-08-01 13:31:07.246 |-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= ?
  10621. 2017-08-01 13:31:07.247 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10622. 2017-08-01 13:31:07.248 |-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= ?
  10623. 2017-08-01 13:31:07.248 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10624. 2017-08-01 13:31:07.275 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10625. 2017-08-01 13:31:07.275 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10626. 2017-08-01 13:31:07.276 |-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
  10627. 2017-08-01 13:31:07.276 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10628. 2017-08-01 13:31:07.308 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10629. 2017-08-01 13:31:07.309 |-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=?)
  10630. 2017-08-01 13:31:07.309 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10631. 2017-08-01 13:31:07.335 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10632. 2017-08-01 13:31:07.339 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10633. 2017-08-01 13:31:07.341 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10634. 2017-08-01 13:31:07.342 |-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
  10635. 2017-08-01 13:31:07.343 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10636. 2017-08-01 13:31:07.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10637. 2017-08-01 13:31:07.387 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10638. 2017-08-01 13:31:07.390 |-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= ?
  10639. 2017-08-01 13:31:07.390 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10640. 2017-08-01 13:31:07.417 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10641. 2017-08-01 13:31:07.418 |-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
  10642. 2017-08-01 13:31:07.418 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10643. 2017-08-01 13:31:07.447 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10644. 2017-08-01 13:31:07.448 |-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=?)
  10645. 2017-08-01 13:31:07.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10646. 2017-08-01 13:31:07.478 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10647. 2017-08-01 13:31:07.481 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10648. 2017-08-01 13:31:07.483 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10649. 2017-08-01 13:31:07.488 |-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
  10650. 2017-08-01 13:31:07.488 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10651. 2017-08-01 13:31:07.568 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10652. 2017-08-01 13:31:07.610 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10653. 2017-08-01 13:31:07.612 |-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= ?
  10654. 2017-08-01 13:31:07.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10655. 2017-08-01 13:31:07.640 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10656. 2017-08-01 13:31:07.641 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10657. 2017-08-01 13:31:07.642 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10658. 2017-08-01 13:31:07.670 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10659. 2017-08-01 13:31:07.671 |-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=?)
  10660. 2017-08-01 13:31:07.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10661. 2017-08-01 13:31:07.697 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10662. 2017-08-01 13:31:07.701 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10663. 2017-08-01 13:31:07.702 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10664. 2017-08-01 13:31:07.706 |-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=?
  10665. 2017-08-01 13:31:07.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10666. 2017-08-01 13:31:07.733 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10667. 2017-08-01 13:31:07.880 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10668. 2017-08-01 13:31:07.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= ?
  10669. 2017-08-01 13:31:07.884 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10670. 2017-08-01 13:31:07.885 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10671. 2017-08-01 13:31:07.888 |-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= ?
  10672. 2017-08-01 13:31:07.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10673. 2017-08-01 13:31:07.911 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10674. 2017-08-01 13:31:07.912 |-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
  10675. 2017-08-01 13:31:07.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10676. 2017-08-01 13:31:07.917 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10677. 2017-08-01 13:31:07.941 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10678. 2017-08-01 13:31:07.942 |-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
  10679. 2017-08-01 13:31:07.943 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10680. 2017-08-01 13:31:07.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10681. 2017-08-01 13:31:07.972 |-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=?)
  10682. 2017-08-01 13:31:07.972 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10683. 2017-08-01 13:31:07.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10684. 2017-08-01 13:31:07.998 |-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=?)
  10685. 2017-08-01 13:31:07.999 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10686. 2017-08-01 13:31:08.003 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10687. 2017-08-01 13:31:08.005 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10688. 2017-08-01 13:31:08.025 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10689. 2017-08-01 13:31:08.026 |-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
  10690. 2017-08-01 13:31:08.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10691. 2017-08-01 13:31:08.029 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10692. 2017-08-01 13:31:08.031 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10693. 2017-08-01 13:31:08.056 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10694. 2017-08-01 13:31:08.059 |-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
  10695. 2017-08-01 13:31:08.060 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10696. 2017-08-01 13:31:08.091 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10697. 2017-08-01 13:31:08.092 |-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
  10698. 2017-08-01 13:31:08.093 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10699. 2017-08-01 13:31:08.093 |-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
  10700. 2017-08-01 13:31:08.093 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10701. 2017-08-01 13:31:08.121 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10702. 2017-08-01 13:31:08.121 |-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=?)
  10703. 2017-08-01 13:31:08.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10704. 2017-08-01 13:31:08.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10705. 2017-08-01 13:31:08.152 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10706. 2017-08-01 13:31:08.153 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10707. 2017-08-01 13:31:08.210 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10708. 2017-08-01 13:31:08.211 |-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
  10709. 2017-08-01 13:31:08.212 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10710. 2017-08-01 13:31:08.276 |-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
  10711. 2017-08-01 13:31:08.277 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10712. 2017-08-01 13:31:08.279 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10713. 2017-08-01 13:31:08.281 |-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
  10714. 2017-08-01 13:31:08.281 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10715. 2017-08-01 13:31:08.306 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10716. 2017-08-01 13:31:08.307 |-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=?)
  10717. 2017-08-01 13:31:08.307 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10718. 2017-08-01 13:31:08.310 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10719. 2017-08-01 13:31:08.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10720. 2017-08-01 13:31:08.337 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10721. 2017-08-01 13:31:08.339 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10722. 2017-08-01 13:31:08.341 |-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
  10723. 2017-08-01 13:31:08.341 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10724. 2017-08-01 13:31:08.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10725. 2017-08-01 13:31:15.454 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10726. 2017-08-01 13:31:15.457 |-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= ?
  10727. 2017-08-01 13:31:15.458 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10728. 2017-08-01 13:31:15.460 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10729. 2017-08-01 13:31:15.463 |-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= ?
  10730. 2017-08-01 13:31:15.464 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10731. 2017-08-01 13:31:15.487 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10732. 2017-08-01 13:31:15.488 |-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
  10733. 2017-08-01 13:31:15.489 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10734. 2017-08-01 13:31:15.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10735. 2017-08-01 13:31:15.491 |-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
  10736. 2017-08-01 13:31:15.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10737. 2017-08-01 13:31:15.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10738. 2017-08-01 13:31:15.518 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10739. 2017-08-01 13:31:15.518 |-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=?)
  10740. 2017-08-01 13:31:15.519 |-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=?)
  10741. 2017-08-01 13:31:15.519 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10742. 2017-08-01 13:31:15.519 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10743. 2017-08-01 13:31:15.544 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10744. 2017-08-01 13:31:15.545 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10745. 2017-08-01 13:31:15.548 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10746. 2017-08-01 13:31:15.548 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10747. 2017-08-01 13:31:15.550 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10748. 2017-08-01 13:31:15.550 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10749. 2017-08-01 13:31:15.554 |-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
  10750. 2017-08-01 13:31:15.555 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10751. 2017-08-01 13:31:15.583 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10752. 2017-08-01 13:31:15.584 |-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
  10753. 2017-08-01 13:31:15.584 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10754. 2017-08-01 13:31:15.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10755. 2017-08-01 13:31:15.672 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10756. 2017-08-01 13:31:15.673 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10757. 2017-08-01 13:31:15.673 |-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= ?
  10758. 2017-08-01 13:31:15.674 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10759. 2017-08-01 13:31:15.674 |-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= ?
  10760. 2017-08-01 13:31:15.675 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10761. 2017-08-01 13:31:15.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10762. 2017-08-01 13:31:15.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10763. 2017-08-01 13:31:15.702 |-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
  10764. 2017-08-01 13:31:15.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10765. 2017-08-01 13:31:15.702 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10766. 2017-08-01 13:31:15.703 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10767. 2017-08-01 13:31:15.731 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10768. 2017-08-01 13:31:15.731 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10769. 2017-08-01 13:31:15.731 |-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=?)
  10770. 2017-08-01 13:31:15.732 |-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=?)
  10771. 2017-08-01 13:31:15.732 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10772. 2017-08-01 13:31:15.732 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10773. 2017-08-01 13:31:15.756 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10774. 2017-08-01 13:31:15.757 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10775. 2017-08-01 13:31:15.760 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10776. 2017-08-01 13:31:15.760 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10777. 2017-08-01 13:31:15.761 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10778. 2017-08-01 13:31:15.762 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10779. 2017-08-01 13:31:15.763 |-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
  10780. 2017-08-01 13:31:15.763 |-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
  10781. 2017-08-01 13:31:15.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10782. 2017-08-01 13:31:15.763 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10783. 2017-08-01 13:31:15.791 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10784. 2017-08-01 13:31:15.792 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10785. 2017-08-01 13:31:15.813 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10786. 2017-08-01 13:31:15.817 |-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= ?
  10787. 2017-08-01 13:31:15.818 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10788. 2017-08-01 13:31:15.846 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10789. 2017-08-01 13:31:15.847 |-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
  10790. 2017-08-01 13:31:15.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10791. 2017-08-01 13:31:15.876 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10792. 2017-08-01 13:31:15.877 |-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=?)
  10793. 2017-08-01 13:31:15.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10794. 2017-08-01 13:31:15.903 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10795. 2017-08-01 13:31:15.909 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10796. 2017-08-01 13:31:15.911 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10797. 2017-08-01 13:31:15.917 |-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
  10798. 2017-08-01 13:31:15.917 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10799. 2017-08-01 13:31:15.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10800. 2017-08-01 13:31:16.031 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10801. 2017-08-01 13:31:16.034 |-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= ?
  10802. 2017-08-01 13:31:16.034 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10803. 2017-08-01 13:31:16.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10804. 2017-08-01 13:31:16.062 |-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
  10805. 2017-08-01 13:31:16.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10806. 2017-08-01 13:31:16.091 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10807. 2017-08-01 13:31:16.092 |-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=?)
  10808. 2017-08-01 13:31:16.092 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10809. 2017-08-01 13:31:16.118 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10810. 2017-08-01 13:31:16.122 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10811. 2017-08-01 13:31:16.123 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10812. 2017-08-01 13:31:16.126 |-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=?
  10813. 2017-08-01 13:31:16.127 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10814. 2017-08-01 13:31:16.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10815. 2017-08-01 13:31:16.269 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10816. 2017-08-01 13:31:16.269 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10817. 2017-08-01 13:31:16.272 |-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= ?
  10818. 2017-08-01 13:31:16.272 |-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= ?
  10819. 2017-08-01 13:31:16.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10820. 2017-08-01 13:31:16.272 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10821. 2017-08-01 13:31:16.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10822. 2017-08-01 13:31:16.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10823. 2017-08-01 13:31:16.301 |-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
  10824. 2017-08-01 13:31:16.301 |-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
  10825. 2017-08-01 13:31:16.301 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10826. 2017-08-01 13:31:16.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10827. 2017-08-01 13:31:16.329 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10828. 2017-08-01 13:31:16.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10829. 2017-08-01 13:31:16.330 |-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=?)
  10830. 2017-08-01 13:31:16.330 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10831. 2017-08-01 13:31:16.330 |-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=?)
  10832. 2017-08-01 13:31:16.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10833. 2017-08-01 13:31:16.356 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10834. 2017-08-01 13:31:16.357 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10835. 2017-08-01 13:31:16.363 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10836. 2017-08-01 13:31:16.363 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10837. 2017-08-01 13:31:16.365 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10838. 2017-08-01 13:31:16.365 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10839. 2017-08-01 13:31:16.368 |-DEBUG [http-nio-8089-exec-3] 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
  10840. 2017-08-01 13:31:16.369 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10841. 2017-08-01 13:31:16.398 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10842. 2017-08-01 13:31:16.400 |-DEBUG [http-nio-8089-exec-3] 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
  10843. 2017-08-01 13:31:16.401 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10844. 2017-08-01 13:31:16.432 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10845. 2017-08-01 13:31:16.434 |-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
  10846. 2017-08-01 13:31:16.435 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10847. 2017-08-01 13:31:16.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10848. 2017-08-01 13:31:16.510 |-DEBUG [http-nio-8089-exec-3] 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
  10849. 2017-08-01 13:31:16.511 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10850. 2017-08-01 13:31:16.576 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10851. 2017-08-01 13:31:16.578 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10852. 2017-08-01 13:31:16.579 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10853. 2017-08-01 13:31:16.608 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10854. 2017-08-01 13:32:09.598 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10855. 2017-08-01 13:32:09.598 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10856. 2017-08-01 13:32:09.601 |-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= ?
  10857. 2017-08-01 13:32:09.601 |-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= ?
  10858. 2017-08-01 13:32:09.602 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10859. 2017-08-01 13:32:09.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10860. 2017-08-01 13:32:09.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10861. 2017-08-01 13:32:09.630 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10862. 2017-08-01 13:32:09.631 |-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
  10863. 2017-08-01 13:32:09.631 |-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
  10864. 2017-08-01 13:32:09.631 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10865. 2017-08-01 13:32:09.631 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10866. 2017-08-01 13:32:09.660 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10867. 2017-08-01 13:32:09.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10868. 2017-08-01 13:32:09.661 |-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=?)
  10869. 2017-08-01 13:32:09.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10870. 2017-08-01 13:32:09.662 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10871. 2017-08-01 13:32:09.662 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10872. 2017-08-01 13:32:09.688 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10873. 2017-08-01 13:32:09.689 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10874. 2017-08-01 13:32:09.695 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10875. 2017-08-01 13:32:09.695 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10876. 2017-08-01 13:32:09.697 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10877. 2017-08-01 13:32:09.697 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10878. 2017-08-01 13:32:09.705 |-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
  10879. 2017-08-01 13:32:09.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  10880. 2017-08-01 13:32:09.734 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  10881. 2017-08-01 13:32:09.735 |-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
  10882. 2017-08-01 13:32:09.736 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10883. 2017-08-01 13:32:09.765 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10884. 2017-08-01 13:32:09.813 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10885. 2017-08-01 13:32:09.813 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10886. 2017-08-01 13:32:09.816 |-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= ?
  10887. 2017-08-01 13:32:09.816 |-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= ?
  10888. 2017-08-01 13:32:09.817 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10889. 2017-08-01 13:32:09.817 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10890. 2017-08-01 13:32:09.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10891. 2017-08-01 13:32:09.844 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10892. 2017-08-01 13:32:09.844 |-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
  10893. 2017-08-01 13:32:09.844 |-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
  10894. 2017-08-01 13:32:09.845 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10895. 2017-08-01 13:32:09.845 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10896. 2017-08-01 13:32:09.873 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10897. 2017-08-01 13:32:09.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10898. 2017-08-01 13:32:09.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=?)
  10899. 2017-08-01 13:32:09.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10900. 2017-08-01 13:32:09.874 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10901. 2017-08-01 13:32:09.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10902. 2017-08-01 13:32:09.898 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10903. 2017-08-01 13:32:09.900 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10904. 2017-08-01 13:32:09.901 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10905. 2017-08-01 13:32:09.902 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10906. 2017-08-01 13:32:09.902 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10907. 2017-08-01 13:32:09.903 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10908. 2017-08-01 13:32:09.903 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10909. 2017-08-01 13:32:09.903 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10910. 2017-08-01 13:32:09.904 |-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
  10911. 2017-08-01 13:32:09.905 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10912. 2017-08-01 13:32:09.931 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10913. 2017-08-01 13:32:09.932 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10914. 2017-08-01 13:32:09.941 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10915. 2017-08-01 13:32:09.943 |-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= ?
  10916. 2017-08-01 13:32:09.944 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10917. 2017-08-01 13:32:09.971 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10918. 2017-08-01 13:32:09.972 |-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
  10919. 2017-08-01 13:32:09.972 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10920. 2017-08-01 13:32:10.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10921. 2017-08-01 13:32:10.002 |-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=?)
  10922. 2017-08-01 13:32:10.003 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10923. 2017-08-01 13:32:10.029 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10924. 2017-08-01 13:32:10.034 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10925. 2017-08-01 13:32:10.036 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10926. 2017-08-01 13:32:10.042 |-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
  10927. 2017-08-01 13:32:10.043 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10928. 2017-08-01 13:32:10.138 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10929. 2017-08-01 13:32:10.175 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10930. 2017-08-01 13:32:10.177 |-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= ?
  10931. 2017-08-01 13:32:10.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10932. 2017-08-01 13:32:10.206 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10933. 2017-08-01 13:32:10.207 |-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
  10934. 2017-08-01 13:32:10.207 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10935. 2017-08-01 13:32:10.235 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10936. 2017-08-01 13:32:10.236 |-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=?)
  10937. 2017-08-01 13:32:10.236 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10938. 2017-08-01 13:32:10.262 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10939. 2017-08-01 13:32:10.265 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10940. 2017-08-01 13:32:10.266 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10941. 2017-08-01 13:32:10.269 |-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=?
  10942. 2017-08-01 13:32:10.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10943. 2017-08-01 13:32:10.296 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  10944. 2017-08-01 13:32:10.579 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10945. 2017-08-01 13:32:10.580 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10946. 2017-08-01 13:32:10.583 |-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= ?
  10947. 2017-08-01 13:32:10.583 |-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= ?
  10948. 2017-08-01 13:32:10.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10949. 2017-08-01 13:32:10.583 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10950. 2017-08-01 13:32:10.610 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10951. 2017-08-01 13:32:10.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10952. 2017-08-01 13:32:10.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
  10953. 2017-08-01 13:32:10.611 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10954. 2017-08-01 13:32:10.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10955. 2017-08-01 13:32:10.612 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10956. 2017-08-01 13:32:10.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10957. 2017-08-01 13:32:10.640 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10958. 2017-08-01 13:32:10.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=?)
  10959. 2017-08-01 13:32:10.641 |-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=?)
  10960. 2017-08-01 13:32:10.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10961. 2017-08-01 13:32:10.641 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10962. 2017-08-01 13:32:10.667 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10963. 2017-08-01 13:32:10.667 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  10964. 2017-08-01 13:32:10.671 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10965. 2017-08-01 13:32:10.671 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  10966. 2017-08-01 13:32:10.672 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10967. 2017-08-01 13:32:10.672 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10968. 2017-08-01 13:32:10.674 |-DEBUG [http-nio-8089-exec-3] 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
  10969. 2017-08-01 13:32:10.675 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10970. 2017-08-01 13:32:10.704 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  10971. 2017-08-01 13:32:10.706 |-DEBUG [http-nio-8089-exec-3] 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
  10972. 2017-08-01 13:32:10.706 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10973. 2017-08-01 13:32:10.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  10974. 2017-08-01 13:32:10.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
  10975. 2017-08-01 13:32:10.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10976. 2017-08-01 13:32:10.822 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  10977. 2017-08-01 13:32:10.824 |-DEBUG [http-nio-8089-exec-3] 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
  10978. 2017-08-01 13:32:10.824 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  10979. 2017-08-01 13:32:10.891 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  10980. 2017-08-01 13:32:10.894 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10981. 2017-08-01 13:32:10.895 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10982. 2017-08-01 13:32:10.923 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  10983. 2017-08-01 13:32:25.651 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10984. 2017-08-01 13:32:25.654 |-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= ?
  10985. 2017-08-01 13:32:25.654 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10986. 2017-08-01 13:32:25.656 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  10987. 2017-08-01 13:32:25.658 |-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= ?
  10988. 2017-08-01 13:32:25.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  10989. 2017-08-01 13:32:25.683 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10990. 2017-08-01 13:32:25.683 |-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
  10991. 2017-08-01 13:32:25.684 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10992. 2017-08-01 13:32:25.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10993. 2017-08-01 13:32:25.686 |-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
  10994. 2017-08-01 13:32:25.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  10995. 2017-08-01 13:32:25.712 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10996. 2017-08-01 13:32:25.713 |-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=?)
  10997. 2017-08-01 13:32:25.713 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  10998. 2017-08-01 13:32:25.714 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  10999. 2017-08-01 13:32:25.714 |-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=?)
  11000. 2017-08-01 13:32:25.714 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11001. 2017-08-01 13:32:25.739 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11002. 2017-08-01 13:32:25.740 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11003. 2017-08-01 13:32:25.745 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11004. 2017-08-01 13:32:25.745 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11005. 2017-08-01 13:32:25.747 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11006. 2017-08-01 13:32:25.747 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11007. 2017-08-01 13:32:25.754 |-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
  11008. 2017-08-01 13:32:25.755 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11009. 2017-08-01 13:32:25.784 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11010. 2017-08-01 13:32:25.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
  11011. 2017-08-01 13:32:25.785 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11012. 2017-08-01 13:32:25.814 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11013. 2017-08-01 13:32:25.884 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11014. 2017-08-01 13:32:25.884 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11015. 2017-08-01 13:32:25.887 |-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= ?
  11016. 2017-08-01 13:32:25.887 |-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= ?
  11017. 2017-08-01 13:32:25.887 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11018. 2017-08-01 13:32:25.887 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11019. 2017-08-01 13:32:25.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11020. 2017-08-01 13:32:25.915 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11021. 2017-08-01 13:32:25.916 |-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
  11022. 2017-08-01 13:32:25.916 |-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
  11023. 2017-08-01 13:32:25.916 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11024. 2017-08-01 13:32:25.916 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11025. 2017-08-01 13:32:25.945 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11026. 2017-08-01 13:32:25.945 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11027. 2017-08-01 13:32:25.946 |-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=?)
  11028. 2017-08-01 13:32:25.946 |-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=?)
  11029. 2017-08-01 13:32:25.946 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11030. 2017-08-01 13:32:25.946 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11031. 2017-08-01 13:32:25.971 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11032. 2017-08-01 13:32:25.972 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11033. 2017-08-01 13:32:25.978 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11034. 2017-08-01 13:32:25.978 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11035. 2017-08-01 13:32:25.980 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11036. 2017-08-01 13:32:25.980 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11037. 2017-08-01 13:32:25.982 |-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
  11038. 2017-08-01 13:32:25.982 |-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
  11039. 2017-08-01 13:32:25.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11040. 2017-08-01 13:32:25.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11041. 2017-08-01 13:32:26.010 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11042. 2017-08-01 13:32:26.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11043. 2017-08-01 13:32:26.027 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11044. 2017-08-01 13:32:26.030 |-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= ?
  11045. 2017-08-01 13:32:26.030 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11046. 2017-08-01 13:32:26.057 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11047. 2017-08-01 13:32:26.058 |-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
  11048. 2017-08-01 13:32:26.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11049. 2017-08-01 13:32:26.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11050. 2017-08-01 13:32:26.089 |-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=?)
  11051. 2017-08-01 13:32:26.089 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11052. 2017-08-01 13:32:26.116 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11053. 2017-08-01 13:32:26.120 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11054. 2017-08-01 13:32:26.122 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11055. 2017-08-01 13:32:26.129 |-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
  11056. 2017-08-01 13:32:26.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11057. 2017-08-01 13:32:26.213 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11058. 2017-08-01 13:32:26.245 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11059. 2017-08-01 13:32:26.247 |-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= ?
  11060. 2017-08-01 13:32:26.248 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11061. 2017-08-01 13:32:26.276 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11062. 2017-08-01 13:32:26.276 |-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
  11063. 2017-08-01 13:32:26.277 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11064. 2017-08-01 13:32:26.305 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11065. 2017-08-01 13:32:26.306 |-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=?)
  11066. 2017-08-01 13:32:26.306 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11067. 2017-08-01 13:32:26.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11068. 2017-08-01 13:32:26.335 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11069. 2017-08-01 13:32:26.336 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11070. 2017-08-01 13:32:26.339 |-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=?
  11071. 2017-08-01 13:32:26.340 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11072. 2017-08-01 13:32:26.366 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11073. 2017-08-01 13:32:26.495 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11074. 2017-08-01 13:32:26.495 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11075. 2017-08-01 13:32:26.499 |-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= ?
  11076. 2017-08-01 13:32:26.499 |-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= ?
  11077. 2017-08-01 13:32:26.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11078. 2017-08-01 13:32:26.500 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11079. 2017-08-01 13:32:26.557 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11080. 2017-08-01 13:32:26.557 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11081. 2017-08-01 13:32:26.558 |-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
  11082. 2017-08-01 13:32:26.558 |-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
  11083. 2017-08-01 13:32:26.559 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11084. 2017-08-01 13:32:26.559 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11085. 2017-08-01 13:32:26.587 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11086. 2017-08-01 13:32:26.588 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11087. 2017-08-01 13:32:26.588 |-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=?)
  11088. 2017-08-01 13:32:26.589 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11089. 2017-08-01 13:32:26.589 |-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=?)
  11090. 2017-08-01 13:32:26.590 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11091. 2017-08-01 13:32:26.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11092. 2017-08-01 13:32:26.615 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11093. 2017-08-01 13:32:26.621 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11094. 2017-08-01 13:32:26.621 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11095. 2017-08-01 13:32:26.623 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11096. 2017-08-01 13:32:26.623 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11097. 2017-08-01 13:32:26.627 |-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
  11098. 2017-08-01 13:32:26.628 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11099. 2017-08-01 13:32:26.657 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11100. 2017-08-01 13:32:26.659 |-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
  11101. 2017-08-01 13:32:26.660 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11102. 2017-08-01 13:32:26.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11103. 2017-08-01 13:32:26.694 |-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
  11104. 2017-08-01 13:32:26.694 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11105. 2017-08-01 13:32:26.778 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11106. 2017-08-01 13:32:26.780 |-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
  11107. 2017-08-01 13:32:26.781 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11108. 2017-08-01 13:32:26.847 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11109. 2017-08-01 13:32:26.850 |-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
  11110. 2017-08-01 13:32:26.850 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11111. 2017-08-01 13:32:26.878 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11112. 2017-08-01 13:34:00.242 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11113. 2017-08-01 13:34:00.243 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11114. 2017-08-01 13:34:00.272 |-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= ?
  11115. 2017-08-01 13:34:00.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11116. 2017-08-01 13:34:00.272 |-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= ?
  11117. 2017-08-01 13:34:00.273 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11118. 2017-08-01 13:34:00.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11119. 2017-08-01 13:34:00.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11120. 2017-08-01 13:34:00.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11121. 2017-08-01 13:34:00.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11122. 2017-08-01 13:34:00.325 |-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
  11123. 2017-08-01 13:34:00.325 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11124. 2017-08-01 13:34:00.353 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11125. 2017-08-01 13:34:00.353 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11126. 2017-08-01 13:34:00.355 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11127. 2017-08-01 13:34:00.355 |-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=?)
  11128. 2017-08-01 13:34:00.355 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11129. 2017-08-01 13:34:00.355 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11130. 2017-08-01 13:34:00.381 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11131. 2017-08-01 13:34:00.382 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11132. 2017-08-01 13:34:00.386 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11133. 2017-08-01 13:34:00.387 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11134. 2017-08-01 13:34:00.388 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11135. 2017-08-01 13:34:00.388 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11136. 2017-08-01 13:34:00.394 |-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
  11137. 2017-08-01 13:34:00.395 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11138. 2017-08-01 13:34:00.424 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11139. 2017-08-01 13:34:00.425 |-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
  11140. 2017-08-01 13:34:00.425 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11141. 2017-08-01 13:34:00.454 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11142. 2017-08-01 13:34:00.505 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11143. 2017-08-01 13:34:00.505 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11144. 2017-08-01 13:34:00.506 |-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= ?
  11145. 2017-08-01 13:34:00.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= ?
  11146. 2017-08-01 13:34:00.507 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11147. 2017-08-01 13:34:00.507 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11148. 2017-08-01 13:34:00.544 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11149. 2017-08-01 13:34:00.545 |-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
  11150. 2017-08-01 13:34:00.546 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11151. 2017-08-01 13:34:00.546 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11152. 2017-08-01 13:34:00.546 |-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
  11153. 2017-08-01 13:34:00.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11154. 2017-08-01 13:34:00.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11155. 2017-08-01 13:34:00.575 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11156. 2017-08-01 13:34:00.575 |-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=?)
  11157. 2017-08-01 13:34:00.575 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11158. 2017-08-01 13:34:00.575 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11159. 2017-08-01 13:34:00.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11160. 2017-08-01 13:34:00.601 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11161. 2017-08-01 13:34:00.602 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11162. 2017-08-01 13:34:00.604 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11163. 2017-08-01 13:34:00.604 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11164. 2017-08-01 13:34:00.606 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11165. 2017-08-01 13:34:00.606 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11166. 2017-08-01 13:34:00.607 |-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
  11167. 2017-08-01 13:34:00.607 |-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
  11168. 2017-08-01 13:34:00.608 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11169. 2017-08-01 13:34:00.608 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11170. 2017-08-01 13:34:00.636 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11171. 2017-08-01 13:34:00.637 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11172. 2017-08-01 13:34:00.649 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11173. 2017-08-01 13:34:00.650 |-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= ?
  11174. 2017-08-01 13:34:00.650 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11175. 2017-08-01 13:34:00.678 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11176. 2017-08-01 13:34:00.679 |-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
  11177. 2017-08-01 13:34:00.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11178. 2017-08-01 13:34:00.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11179. 2017-08-01 13:34:00.709 |-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=?)
  11180. 2017-08-01 13:34:00.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11181. 2017-08-01 13:34:00.743 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11182. 2017-08-01 13:34:00.746 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11183. 2017-08-01 13:34:00.748 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11184. 2017-08-01 13:34:00.755 |-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
  11185. 2017-08-01 13:34:00.756 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11186. 2017-08-01 13:34:00.843 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11187. 2017-08-01 13:34:00.889 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11188. 2017-08-01 13:34:00.890 |-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= ?
  11189. 2017-08-01 13:34:00.891 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11190. 2017-08-01 13:34:00.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11191. 2017-08-01 13:34:00.919 |-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
  11192. 2017-08-01 13:34:00.919 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11193. 2017-08-01 13:34:00.948 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11194. 2017-08-01 13:34:00.949 |-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=?)
  11195. 2017-08-01 13:34:00.950 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11196. 2017-08-01 13:34:00.976 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11197. 2017-08-01 13:34:00.979 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11198. 2017-08-01 13:34:00.980 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11199. 2017-08-01 13:34:00.985 |-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=?
  11200. 2017-08-01 13:34:00.986 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11201. 2017-08-01 13:34:01.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11202. 2017-08-01 13:34:01.144 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11203. 2017-08-01 13:34:01.145 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11204. 2017-08-01 13:34:01.146 |-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= ?
  11205. 2017-08-01 13:34:01.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11206. 2017-08-01 13:34:01.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= ?
  11207. 2017-08-01 13:34:01.148 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11208. 2017-08-01 13:34:01.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11209. 2017-08-01 13:34:01.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11210. 2017-08-01 13:34:01.175 |-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
  11211. 2017-08-01 13:34:01.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
  11212. 2017-08-01 13:34:01.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11213. 2017-08-01 13:34:01.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11214. 2017-08-01 13:34:01.203 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11215. 2017-08-01 13:34:01.204 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11216. 2017-08-01 13:34:01.204 |-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=?)
  11217. 2017-08-01 13:34:01.205 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11218. 2017-08-01 13:34:01.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=?)
  11219. 2017-08-01 13:34:01.205 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11220. 2017-08-01 13:34:01.230 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11221. 2017-08-01 13:34:01.231 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11222. 2017-08-01 13:34:01.235 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11223. 2017-08-01 13:34:01.235 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11224. 2017-08-01 13:34:01.237 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11225. 2017-08-01 13:34:01.237 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11226. 2017-08-01 13:34:01.243 |-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
  11227. 2017-08-01 13:34:01.244 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11228. 2017-08-01 13:34:01.279 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11229. 2017-08-01 13:34:01.281 |-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
  11230. 2017-08-01 13:34:01.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11231. 2017-08-01 13:34:01.313 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11232. 2017-08-01 13:34:01.315 |-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
  11233. 2017-08-01 13:34:01.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11234. 2017-08-01 13:34:01.402 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11235. 2017-08-01 13:34:01.404 |-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
  11236. 2017-08-01 13:34:01.405 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11237. 2017-08-01 13:34:01.471 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11238. 2017-08-01 13:34:01.474 |-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
  11239. 2017-08-01 13:34:01.474 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11240. 2017-08-01 13:34:01.502 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11241. 2017-08-01 13:34:43.077 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11242. 2017-08-01 13:34:43.079 |-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= ?
  11243. 2017-08-01 13:34:43.079 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11244. 2017-08-01 13:34:43.081 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11245. 2017-08-01 13:34:43.083 |-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= ?
  11246. 2017-08-01 13:34:43.083 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11247. 2017-08-01 13:34:43.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11248. 2017-08-01 13:34:43.131 |-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
  11249. 2017-08-01 13:34:43.131 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11250. 2017-08-01 13:34:43.135 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11251. 2017-08-01 13:34:43.136 |-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
  11252. 2017-08-01 13:34:43.137 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11253. 2017-08-01 13:34:43.160 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11254. 2017-08-01 13:34:43.162 |-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=?)
  11255. 2017-08-01 13:34:43.162 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11256. 2017-08-01 13:34:43.165 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11257. 2017-08-01 13:34:43.166 |-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=?)
  11258. 2017-08-01 13:34:43.167 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11259. 2017-08-01 13:34:43.188 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11260. 2017-08-01 13:34:43.191 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11261. 2017-08-01 13:34:43.192 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11262. 2017-08-01 13:34:43.193 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11263. 2017-08-01 13:34:43.194 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11264. 2017-08-01 13:34:43.196 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11265. 2017-08-01 13:34:43.201 |-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
  11266. 2017-08-01 13:34:43.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11267. 2017-08-01 13:34:43.230 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11268. 2017-08-01 13:34:43.231 |-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
  11269. 2017-08-01 13:34:43.231 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11270. 2017-08-01 13:34:43.261 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11271. 2017-08-01 13:34:43.307 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11272. 2017-08-01 13:34:43.307 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11273. 2017-08-01 13:34:43.309 |-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= ?
  11274. 2017-08-01 13:34:43.310 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11275. 2017-08-01 13:34:43.309 |-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= ?
  11276. 2017-08-01 13:34:43.310 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11277. 2017-08-01 13:34:43.337 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11278. 2017-08-01 13:34:43.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11279. 2017-08-01 13:34:43.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
  11280. 2017-08-01 13:34:43.338 |-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
  11281. 2017-08-01 13:34:43.338 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11282. 2017-08-01 13:34:43.339 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11283. 2017-08-01 13:34:43.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11284. 2017-08-01 13:34:43.367 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11285. 2017-08-01 13:34:43.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=?)
  11286. 2017-08-01 13:34:43.368 |-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=?)
  11287. 2017-08-01 13:34:43.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11288. 2017-08-01 13:34:43.368 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11289. 2017-08-01 13:34:43.394 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11290. 2017-08-01 13:34:43.394 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11291. 2017-08-01 13:34:43.397 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11292. 2017-08-01 13:34:43.397 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11293. 2017-08-01 13:34:43.398 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11294. 2017-08-01 13:34:43.398 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11295. 2017-08-01 13:34:43.399 |-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
  11296. 2017-08-01 13:34:43.399 |-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
  11297. 2017-08-01 13:34:43.400 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11298. 2017-08-01 13:34:43.400 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11299. 2017-08-01 13:34:43.439 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11300. 2017-08-01 13:34:43.444 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11301. 2017-08-01 13:34:43.454 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11302. 2017-08-01 13:34:43.455 |-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= ?
  11303. 2017-08-01 13:34:43.455 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11304. 2017-08-01 13:34:43.483 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11305. 2017-08-01 13:34:43.484 |-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
  11306. 2017-08-01 13:34:43.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11307. 2017-08-01 13:34:43.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11308. 2017-08-01 13:34:43.513 |-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=?)
  11309. 2017-08-01 13:34:43.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11310. 2017-08-01 13:34:43.539 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11311. 2017-08-01 13:34:43.541 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11312. 2017-08-01 13:34:43.542 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11313. 2017-08-01 13:34:43.549 |-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
  11314. 2017-08-01 13:34:43.549 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11315. 2017-08-01 13:34:43.653 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11316. 2017-08-01 13:34:43.688 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11317. 2017-08-01 13:34:43.689 |-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= ?
  11318. 2017-08-01 13:34:43.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11319. 2017-08-01 13:34:43.717 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11320. 2017-08-01 13:34:43.718 |-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
  11321. 2017-08-01 13:34:43.718 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11322. 2017-08-01 13:34:43.755 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11323. 2017-08-01 13:34:43.756 |-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=?)
  11324. 2017-08-01 13:34:43.756 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11325. 2017-08-01 13:34:43.782 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11326. 2017-08-01 13:34:43.784 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11327. 2017-08-01 13:34:43.785 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11328. 2017-08-01 13:34:43.787 |-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=?
  11329. 2017-08-01 13:34:43.788 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11330. 2017-08-01 13:34:43.813 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11331. 2017-08-01 13:34:43.950 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11332. 2017-08-01 13:34:43.950 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11333. 2017-08-01 13:34:43.952 |-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= ?
  11334. 2017-08-01 13:34:43.953 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11335. 2017-08-01 13:34:43.953 |-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= ?
  11336. 2017-08-01 13:34:43.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11337. 2017-08-01 13:34:43.980 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11338. 2017-08-01 13:34:43.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11339. 2017-08-01 13:34:43.980 |-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
  11340. 2017-08-01 13:34:43.981 |-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
  11341. 2017-08-01 13:34:43.981 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11342. 2017-08-01 13:34:43.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11343. 2017-08-01 13:34:44.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11344. 2017-08-01 13:34:44.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11345. 2017-08-01 13:34:44.010 |-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=?)
  11346. 2017-08-01 13:34:44.010 |-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=?)
  11347. 2017-08-01 13:34:44.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11348. 2017-08-01 13:34:44.010 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11349. 2017-08-01 13:34:44.066 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11350. 2017-08-01 13:34:44.070 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11351. 2017-08-01 13:34:44.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11352. 2017-08-01 13:34:44.071 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11353. 2017-08-01 13:34:44.074 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11354. 2017-08-01 13:34:44.074 |-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
  11355. 2017-08-01 13:34:44.075 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11356. 2017-08-01 13:34:44.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11357. 2017-08-01 13:34:44.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11358. 2017-08-01 13:34:44.106 |-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
  11359. 2017-08-01 13:34:44.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11360. 2017-08-01 13:34:44.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11361. 2017-08-01 13:34:44.139 |-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
  11362. 2017-08-01 13:34:44.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11363. 2017-08-01 13:34:44.266 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11364. 2017-08-01 13:34:44.267 |-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
  11365. 2017-08-01 13:34:44.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11366. 2017-08-01 13:34:44.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11367. 2017-08-01 13:34:44.335 |-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
  11368. 2017-08-01 13:34:44.335 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11369. 2017-08-01 13:34:44.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11370. 2017-08-01 13:35:26.559 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11371. 2017-08-01 13:35:26.560 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11372. 2017-08-01 13:35:26.562 |-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= ?
  11373. 2017-08-01 13:35:26.562 |-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= ?
  11374. 2017-08-01 13:35:26.562 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11375. 2017-08-01 13:35:26.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11376. 2017-08-01 13:35:26.590 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11377. 2017-08-01 13:35:26.590 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11378. 2017-08-01 13:35:26.591 |-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
  11379. 2017-08-01 13:35:26.591 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11380. 2017-08-01 13:35:26.591 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11381. 2017-08-01 13:35:26.591 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11382. 2017-08-01 13:35:26.619 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11383. 2017-08-01 13:35:26.619 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11384. 2017-08-01 13:35:26.620 |-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=?)
  11385. 2017-08-01 13:35:26.620 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11386. 2017-08-01 13:35:26.620 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11387. 2017-08-01 13:35:26.620 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11388. 2017-08-01 13:35:26.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11389. 2017-08-01 13:35:26.647 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11390. 2017-08-01 13:35:26.649 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11391. 2017-08-01 13:35:26.649 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11392. 2017-08-01 13:35:26.650 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11393. 2017-08-01 13:35:26.650 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11394. 2017-08-01 13:35:26.653 |-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
  11395. 2017-08-01 13:35:26.654 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11396. 2017-08-01 13:35:26.682 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11397. 2017-08-01 13:35:26.683 |-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
  11398. 2017-08-01 13:35:26.683 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11399. 2017-08-01 13:35:26.712 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11400. 2017-08-01 13:35:26.778 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11401. 2017-08-01 13:35:26.778 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11402. 2017-08-01 13:35:26.780 |-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= ?
  11403. 2017-08-01 13:35:26.780 |-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= ?
  11404. 2017-08-01 13:35:26.780 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11405. 2017-08-01 13:35:26.780 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11406. 2017-08-01 13:35:26.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11407. 2017-08-01 13:35:26.807 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11408. 2017-08-01 13:35:26.808 |-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
  11409. 2017-08-01 13:35:26.808 |-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
  11410. 2017-08-01 13:35:26.808 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11411. 2017-08-01 13:35:26.809 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11412. 2017-08-01 13:35:26.837 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11413. 2017-08-01 13:35:26.837 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11414. 2017-08-01 13:35:26.838 |-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=?)
  11415. 2017-08-01 13:35:26.838 |-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=?)
  11416. 2017-08-01 13:35:26.839 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11417. 2017-08-01 13:35:26.839 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11418. 2017-08-01 13:35:26.865 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11419. 2017-08-01 13:35:26.865 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11420. 2017-08-01 13:35:26.869 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11421. 2017-08-01 13:35:26.869 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11422. 2017-08-01 13:35:26.871 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11423. 2017-08-01 13:35:26.871 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11424. 2017-08-01 13:35:26.873 |-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
  11425. 2017-08-01 13:35:26.873 |-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
  11426. 2017-08-01 13:35:26.874 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11427. 2017-08-01 13:35:26.874 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11428. 2017-08-01 13:35:26.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11429. 2017-08-01 13:35:26.903 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11430. 2017-08-01 13:35:26.919 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11431. 2017-08-01 13:35:26.922 |-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= ?
  11432. 2017-08-01 13:35:26.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11433. 2017-08-01 13:35:26.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11434. 2017-08-01 13:35:26.952 |-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
  11435. 2017-08-01 13:35:26.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11436. 2017-08-01 13:35:26.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11437. 2017-08-01 13:35:26.982 |-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=?)
  11438. 2017-08-01 13:35:26.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11439. 2017-08-01 13:35:27.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11440. 2017-08-01 13:35:27.011 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11441. 2017-08-01 13:35:27.012 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11442. 2017-08-01 13:35:27.018 |-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
  11443. 2017-08-01 13:35:27.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11444. 2017-08-01 13:35:27.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11445. 2017-08-01 13:35:27.132 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11446. 2017-08-01 13:35:27.134 |-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= ?
  11447. 2017-08-01 13:35:27.134 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11448. 2017-08-01 13:35:27.161 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11449. 2017-08-01 13:35:27.162 |-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
  11450. 2017-08-01 13:35:27.163 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11451. 2017-08-01 13:35:27.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11452. 2017-08-01 13:35:27.193 |-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=?)
  11453. 2017-08-01 13:35:27.194 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11454. 2017-08-01 13:35:27.220 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11455. 2017-08-01 13:35:27.224 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11456. 2017-08-01 13:35:27.226 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11457. 2017-08-01 13:35:27.231 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  11458. 2017-08-01 13:35:27.231 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11459. 2017-08-01 13:35:27.258 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11460. 2017-08-01 13:35:27.389 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11461. 2017-08-01 13:35:27.389 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11462. 2017-08-01 13:35:27.391 |-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= ?
  11463. 2017-08-01 13:35:27.392 |-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= ?
  11464. 2017-08-01 13:35:27.392 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11465. 2017-08-01 13:35:27.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11466. 2017-08-01 13:35:27.419 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11467. 2017-08-01 13:35:27.419 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11468. 2017-08-01 13:35:27.420 |-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
  11469. 2017-08-01 13:35:27.420 |-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
  11470. 2017-08-01 13:35:27.421 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11471. 2017-08-01 13:35:27.421 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11472. 2017-08-01 13:35:27.449 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11473. 2017-08-01 13:35:27.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11474. 2017-08-01 13:35:27.450 |-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=?)
  11475. 2017-08-01 13:35:27.450 |-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=?)
  11476. 2017-08-01 13:35:27.450 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11477. 2017-08-01 13:35:27.451 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11478. 2017-08-01 13:35:27.476 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11479. 2017-08-01 13:35:27.477 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11480. 2017-08-01 13:35:27.479 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11481. 2017-08-01 13:35:27.479 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11482. 2017-08-01 13:35:27.480 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11483. 2017-08-01 13:35:27.480 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11484. 2017-08-01 13:35:27.483 |-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
  11485. 2017-08-01 13:35:27.484 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11486. 2017-08-01 13:35:27.513 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11487. 2017-08-01 13:35:27.515 |-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
  11488. 2017-08-01 13:35:27.515 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11489. 2017-08-01 13:35:27.546 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11490. 2017-08-01 13:35:27.548 |-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
  11491. 2017-08-01 13:35:27.548 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11492. 2017-08-01 13:35:27.631 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11493. 2017-08-01 13:35:27.632 |-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
  11494. 2017-08-01 13:35:27.633 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11495. 2017-08-01 13:35:27.700 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11496. 2017-08-01 13:35:27.701 |-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
  11497. 2017-08-01 13:35:27.702 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11498. 2017-08-01 13:35:27.731 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11499. 2017-08-01 13:36:58.850 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11500. 2017-08-01 13:36:58.850 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11501. 2017-08-01 13:36:58.883 |-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= ?
  11502. 2017-08-01 13:36:58.883 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11503. 2017-08-01 13:36:58.912 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11504. 2017-08-01 13:36:58.937 |-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
  11505. 2017-08-01 13:36:58.937 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11506. 2017-08-01 13:36:58.966 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11507. 2017-08-01 13:36:58.968 |-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=?)
  11508. 2017-08-01 13:36:58.968 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11509. 2017-08-01 13:36:58.994 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11510. 2017-08-01 13:36:58.998 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11511. 2017-08-01 13:36:59.000 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11512. 2017-08-01 13:36:59.185 |-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= ?
  11513. 2017-08-01 13:36:59.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11514. 2017-08-01 13:36:59.213 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11515. 2017-08-01 13:36:59.214 |-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
  11516. 2017-08-01 13:36:59.215 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11517. 2017-08-01 13:36:59.243 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11518. 2017-08-01 13:36:59.244 |-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=?)
  11519. 2017-08-01 13:36:59.245 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11520. 2017-08-01 13:36:59.271 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11521. 2017-08-01 13:36:59.274 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11522. 2017-08-01 13:36:59.275 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11523. 2017-08-01 13:36:59.280 |-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
  11524. 2017-08-01 13:36:59.280 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11525. 2017-08-01 13:36:59.309 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11526. 2017-08-01 13:36:59.310 |-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
  11527. 2017-08-01 13:36:59.311 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11528. 2017-08-01 13:36:59.340 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11529. 2017-08-01 13:36:59.404 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11530. 2017-08-01 13:36:59.404 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11531. 2017-08-01 13:36:59.406 |-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= ?
  11532. 2017-08-01 13:36:59.406 |-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= ?
  11533. 2017-08-01 13:36:59.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11534. 2017-08-01 13:36:59.407 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11535. 2017-08-01 13:36:59.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11536. 2017-08-01 13:36:59.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11537. 2017-08-01 13:36:59.436 |-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
  11538. 2017-08-01 13:36:59.436 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11539. 2017-08-01 13:36:59.460 |-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
  11540. 2017-08-01 13:36:59.460 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11541. 2017-08-01 13:36:59.465 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11542. 2017-08-01 13:36:59.466 |-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=?)
  11543. 2017-08-01 13:36:59.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11544. 2017-08-01 13:36:59.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11545. 2017-08-01 13:36:59.490 |-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=?)
  11546. 2017-08-01 13:36:59.490 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11547. 2017-08-01 13:36:59.492 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11548. 2017-08-01 13:36:59.495 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11549. 2017-08-01 13:36:59.497 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11550. 2017-08-01 13:36:59.498 |-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
  11551. 2017-08-01 13:36:59.499 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11552. 2017-08-01 13:36:59.515 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11553. 2017-08-01 13:36:59.518 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11554. 2017-08-01 13:36:59.520 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11555. 2017-08-01 13:36:59.521 |-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
  11556. 2017-08-01 13:36:59.522 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11557. 2017-08-01 13:36:59.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11558. 2017-08-01 13:36:59.550 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11559. 2017-08-01 13:36:59.563 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11560. 2017-08-01 13:36:59.565 |-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= ?
  11561. 2017-08-01 13:36:59.566 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11562. 2017-08-01 13:36:59.593 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11563. 2017-08-01 13:36:59.593 |-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
  11564. 2017-08-01 13:36:59.594 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11565. 2017-08-01 13:36:59.621 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11566. 2017-08-01 13:36:59.622 |-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=?)
  11567. 2017-08-01 13:36:59.623 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11568. 2017-08-01 13:36:59.648 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11569. 2017-08-01 13:36:59.651 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11570. 2017-08-01 13:36:59.652 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11571. 2017-08-01 13:36:59.656 |-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
  11572. 2017-08-01 13:36:59.657 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11573. 2017-08-01 13:36:59.744 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11574. 2017-08-01 13:36:59.776 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11575. 2017-08-01 13:36:59.778 |-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= ?
  11576. 2017-08-01 13:36:59.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11577. 2017-08-01 13:36:59.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11578. 2017-08-01 13:36:59.807 |-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
  11579. 2017-08-01 13:36:59.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11580. 2017-08-01 13:36:59.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11581. 2017-08-01 13:36:59.837 |-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=?)
  11582. 2017-08-01 13:36:59.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11583. 2017-08-01 13:36:59.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11584. 2017-08-01 13:36:59.867 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11585. 2017-08-01 13:36:59.868 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11586. 2017-08-01 13:36:59.871 |-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=?
  11587. 2017-08-01 13:36:59.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11588. 2017-08-01 13:36:59.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11589. 2017-08-01 13:37:00.036 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11590. 2017-08-01 13:37:00.036 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11591. 2017-08-01 13:37:00.038 |-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= ?
  11592. 2017-08-01 13:37:00.038 |-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= ?
  11593. 2017-08-01 13:37:00.039 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11594. 2017-08-01 13:37:00.039 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11595. 2017-08-01 13:37:00.071 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11596. 2017-08-01 13:37:00.072 |-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
  11597. 2017-08-01 13:37:00.072 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11598. 2017-08-01 13:37:00.073 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11599. 2017-08-01 13:37:00.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11600. 2017-08-01 13:37:00.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11601. 2017-08-01 13:37:00.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11602. 2017-08-01 13:37:00.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11603. 2017-08-01 13:37:00.103 |-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=?)
  11604. 2017-08-01 13:37:00.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11605. 2017-08-01 13:37:00.104 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11606. 2017-08-01 13:37:00.104 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11607. 2017-08-01 13:37:00.132 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11608. 2017-08-01 13:37:00.133 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11609. 2017-08-01 13:37:00.137 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11610. 2017-08-01 13:37:00.137 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11611. 2017-08-01 13:37:00.138 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11612. 2017-08-01 13:37:00.138 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11613. 2017-08-01 13:37:00.142 |-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
  11614. 2017-08-01 13:37:00.142 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11615. 2017-08-01 13:37:00.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11616. 2017-08-01 13:37:00.175 |-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
  11617. 2017-08-01 13:37:00.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11618. 2017-08-01 13:37:00.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11619. 2017-08-01 13:37:00.212 |-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
  11620. 2017-08-01 13:37:00.212 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11621. 2017-08-01 13:37:00.300 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11622. 2017-08-01 13:37:00.301 |-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
  11623. 2017-08-01 13:37:00.302 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11624. 2017-08-01 13:37:00.379 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11625. 2017-08-01 13:37:00.381 |-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
  11626. 2017-08-01 13:37:00.382 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11627. 2017-08-01 13:37:00.415 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11628. 2017-08-01 13:37:47.713 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11629. 2017-08-01 13:37:47.713 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11630. 2017-08-01 13:37:47.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= ?
  11631. 2017-08-01 13:37:47.717 |-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= ?
  11632. 2017-08-01 13:37:47.717 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11633. 2017-08-01 13:37:47.718 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11634. 2017-08-01 13:37:47.746 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11635. 2017-08-01 13:37:47.746 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11636. 2017-08-01 13:37:47.747 |-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
  11637. 2017-08-01 13:37:47.747 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11638. 2017-08-01 13:37:47.747 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11639. 2017-08-01 13:37:47.747 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11640. 2017-08-01 13:37:47.784 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11641. 2017-08-01 13:37:47.786 |-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=?)
  11642. 2017-08-01 13:37:47.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11643. 2017-08-01 13:37:47.786 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11644. 2017-08-01 13:37:47.787 |-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=?)
  11645. 2017-08-01 13:37:47.787 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11646. 2017-08-01 13:37:47.812 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11647. 2017-08-01 13:37:47.813 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11648. 2017-08-01 13:37:47.818 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11649. 2017-08-01 13:37:47.818 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11650. 2017-08-01 13:37:47.820 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11651. 2017-08-01 13:37:47.820 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11652. 2017-08-01 13:37:47.826 |-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
  11653. 2017-08-01 13:37:47.827 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11654. 2017-08-01 13:37:47.856 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11655. 2017-08-01 13:37:47.857 |-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
  11656. 2017-08-01 13:37:47.857 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11657. 2017-08-01 13:37:47.886 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11658. 2017-08-01 13:37:47.948 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11659. 2017-08-01 13:37:47.948 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11660. 2017-08-01 13:37:47.950 |-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= ?
  11661. 2017-08-01 13:37:47.950 |-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= ?
  11662. 2017-08-01 13:37:47.951 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11663. 2017-08-01 13:37:47.951 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11664. 2017-08-01 13:37:47.978 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11665. 2017-08-01 13:37:47.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11666. 2017-08-01 13:37:47.979 |-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
  11667. 2017-08-01 13:37:47.979 |-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
  11668. 2017-08-01 13:37:47.979 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11669. 2017-08-01 13:37:47.980 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11670. 2017-08-01 13:37:48.008 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11671. 2017-08-01 13:37:48.008 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11672. 2017-08-01 13:37:48.009 |-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=?)
  11673. 2017-08-01 13:37:48.009 |-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=?)
  11674. 2017-08-01 13:37:48.009 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11675. 2017-08-01 13:37:48.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11676. 2017-08-01 13:37:48.035 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11677. 2017-08-01 13:37:48.036 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11678. 2017-08-01 13:37:48.041 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11679. 2017-08-01 13:37:48.041 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11680. 2017-08-01 13:37:48.043 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11681. 2017-08-01 13:37:48.043 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11682. 2017-08-01 13:37:48.045 |-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
  11683. 2017-08-01 13:37:48.045 |-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
  11684. 2017-08-01 13:37:48.045 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11685. 2017-08-01 13:37:48.046 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11686. 2017-08-01 13:37:48.074 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11687. 2017-08-01 13:37:48.075 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11688. 2017-08-01 13:37:48.086 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11689. 2017-08-01 13:37:48.088 |-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= ?
  11690. 2017-08-01 13:37:48.088 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11691. 2017-08-01 13:37:48.116 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11692. 2017-08-01 13:37:48.116 |-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
  11693. 2017-08-01 13:37:48.117 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11694. 2017-08-01 13:37:48.145 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11695. 2017-08-01 13:37:48.146 |-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=?)
  11696. 2017-08-01 13:37:48.146 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11697. 2017-08-01 13:37:48.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11698. 2017-08-01 13:37:48.175 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11699. 2017-08-01 13:37:48.176 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11700. 2017-08-01 13:37:48.180 |-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
  11701. 2017-08-01 13:37:48.181 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11702. 2017-08-01 13:37:48.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11703. 2017-08-01 13:37:48.302 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11704. 2017-08-01 13:37:48.304 |-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= ?
  11705. 2017-08-01 13:37:48.305 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11706. 2017-08-01 13:37:48.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11707. 2017-08-01 13:37:48.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
  11708. 2017-08-01 13:37:48.334 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11709. 2017-08-01 13:37:48.362 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11710. 2017-08-01 13:37:48.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=?)
  11711. 2017-08-01 13:37:48.363 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11712. 2017-08-01 13:37:48.389 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11713. 2017-08-01 13:37:48.393 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11714. 2017-08-01 13:37:48.394 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11715. 2017-08-01 13:37:48.397 |-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=?
  11716. 2017-08-01 13:37:48.398 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11717. 2017-08-01 13:37:48.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11718. 2017-08-01 13:37:48.565 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11719. 2017-08-01 13:37:48.565 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11720. 2017-08-01 13:37:48.568 |-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= ?
  11721. 2017-08-01 13:37:48.568 |-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= ?
  11722. 2017-08-01 13:37:48.569 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11723. 2017-08-01 13:37:48.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11724. 2017-08-01 13:37:48.597 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11725. 2017-08-01 13:37:48.598 |-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
  11726. 2017-08-01 13:37:48.598 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11727. 2017-08-01 13:37:48.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11728. 2017-08-01 13:37:48.600 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11729. 2017-08-01 13:37:48.600 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11730. 2017-08-01 13:37:48.626 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11731. 2017-08-01 13:37:48.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11732. 2017-08-01 13:37:48.627 |-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=?)
  11733. 2017-08-01 13:37:48.628 |-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=?)
  11734. 2017-08-01 13:37:48.628 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11735. 2017-08-01 13:37:48.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11736. 2017-08-01 13:37:48.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11737. 2017-08-01 13:37:48.654 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11738. 2017-08-01 13:37:48.657 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11739. 2017-08-01 13:37:48.657 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11740. 2017-08-01 13:37:48.659 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11741. 2017-08-01 13:37:48.659 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11742. 2017-08-01 13:37:48.662 |-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
  11743. 2017-08-01 13:37:48.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11744. 2017-08-01 13:37:48.691 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11745. 2017-08-01 13:37:48.693 |-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
  11746. 2017-08-01 13:37:48.694 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11747. 2017-08-01 13:37:48.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11748. 2017-08-01 13:37:48.727 |-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
  11749. 2017-08-01 13:37:48.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11750. 2017-08-01 13:37:48.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11751. 2017-08-01 13:37:48.808 |-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
  11752. 2017-08-01 13:37:48.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11753. 2017-08-01 13:37:48.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11754. 2017-08-01 13:37:48.877 |-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
  11755. 2017-08-01 13:37:48.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11756. 2017-08-01 13:37:48.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11757. 2017-08-01 13:39:40.548 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11758. 2017-08-01 13:39:40.548 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11759. 2017-08-01 13:39:40.585 |-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= ?
  11760. 2017-08-01 13:39:40.586 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11761. 2017-08-01 13:39:40.586 |-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= ?
  11762. 2017-08-01 13:39:40.586 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11763. 2017-08-01 13:39:40.613 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11764. 2017-08-01 13:39:40.613 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11765. 2017-08-01 13:39:40.638 |-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
  11766. 2017-08-01 13:39:40.639 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11767. 2017-08-01 13:39:40.639 |-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
  11768. 2017-08-01 13:39:40.640 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11769. 2017-08-01 13:39:40.667 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11770. 2017-08-01 13:39:40.668 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11771. 2017-08-01 13:39:40.669 |-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=?)
  11772. 2017-08-01 13:39:40.669 |-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=?)
  11773. 2017-08-01 13:39:40.669 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11774. 2017-08-01 13:39:40.669 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11775. 2017-08-01 13:39:40.695 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11776. 2017-08-01 13:39:40.696 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11777. 2017-08-01 13:39:40.702 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11778. 2017-08-01 13:39:40.702 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11779. 2017-08-01 13:39:40.704 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11780. 2017-08-01 13:39:40.704 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11781. 2017-08-01 13:39:40.710 |-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
  11782. 2017-08-01 13:39:40.711 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  11783. 2017-08-01 13:39:40.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  11784. 2017-08-01 13:39:40.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
  11785. 2017-08-01 13:39:40.742 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11786. 2017-08-01 13:39:40.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11787. 2017-08-01 13:39:40.837 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11788. 2017-08-01 13:39:40.837 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11789. 2017-08-01 13:39:40.840 |-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= ?
  11790. 2017-08-01 13:39:40.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11791. 2017-08-01 13:39:40.841 |-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= ?
  11792. 2017-08-01 13:39:40.841 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11793. 2017-08-01 13:39:40.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11794. 2017-08-01 13:39:40.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11795. 2017-08-01 13:39:40.869 |-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
  11796. 2017-08-01 13:39:40.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11797. 2017-08-01 13:39:40.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11798. 2017-08-01 13:39:40.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11799. 2017-08-01 13:39:40.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11800. 2017-08-01 13:39:40.899 |-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=?)
  11801. 2017-08-01 13:39:40.900 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11802. 2017-08-01 13:39:40.900 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11803. 2017-08-01 13:39:40.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11804. 2017-08-01 13:39:40.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11805. 2017-08-01 13:39:40.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11806. 2017-08-01 13:39:40.927 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11807. 2017-08-01 13:39:40.930 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11808. 2017-08-01 13:39:40.930 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11809. 2017-08-01 13:39:40.931 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11810. 2017-08-01 13:39:40.931 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11811. 2017-08-01 13:39:40.932 |-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
  11812. 2017-08-01 13:39:40.932 |-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
  11813. 2017-08-01 13:39:40.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11814. 2017-08-01 13:39:40.934 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11815. 2017-08-01 13:39:40.962 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11816. 2017-08-01 13:39:40.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11817. 2017-08-01 13:39:40.980 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11818. 2017-08-01 13:39:40.983 |-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= ?
  11819. 2017-08-01 13:39:40.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11820. 2017-08-01 13:39:41.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11821. 2017-08-01 13:39:41.011 |-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
  11822. 2017-08-01 13:39:41.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11823. 2017-08-01 13:39:41.040 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11824. 2017-08-01 13:39:41.041 |-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=?)
  11825. 2017-08-01 13:39:41.042 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11826. 2017-08-01 13:39:41.068 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11827. 2017-08-01 13:39:41.072 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11828. 2017-08-01 13:39:41.074 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11829. 2017-08-01 13:39:41.079 |-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
  11830. 2017-08-01 13:39:41.080 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11831. 2017-08-01 13:39:41.168 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11832. 2017-08-01 13:39:41.212 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11833. 2017-08-01 13:39:41.214 |-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= ?
  11834. 2017-08-01 13:39:41.214 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11835. 2017-08-01 13:39:41.242 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11836. 2017-08-01 13:39:41.243 |-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
  11837. 2017-08-01 13:39:41.243 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11838. 2017-08-01 13:39:41.272 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11839. 2017-08-01 13:39:41.273 |-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=?)
  11840. 2017-08-01 13:39:41.274 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11841. 2017-08-01 13:39:41.300 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11842. 2017-08-01 13:39:41.304 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11843. 2017-08-01 13:39:41.306 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11844. 2017-08-01 13:39:41.309 |-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=?
  11845. 2017-08-01 13:39:41.310 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11846. 2017-08-01 13:39:41.336 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  11847. 2017-08-01 13:39:41.467 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11848. 2017-08-01 13:39:41.467 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11849. 2017-08-01 13:39:41.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= ?
  11850. 2017-08-01 13:39:41.470 |-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= ?
  11851. 2017-08-01 13:39:41.470 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11852. 2017-08-01 13:39:41.470 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11853. 2017-08-01 13:39:41.498 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11854. 2017-08-01 13:39:41.498 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11855. 2017-08-01 13:39:41.498 |-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
  11856. 2017-08-01 13:39:41.498 |-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
  11857. 2017-08-01 13:39:41.499 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11858. 2017-08-01 13:39:41.499 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11859. 2017-08-01 13:39:41.527 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11860. 2017-08-01 13:39:41.527 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11861. 2017-08-01 13:39:41.528 |-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=?)
  11862. 2017-08-01 13:39:41.528 |-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=?)
  11863. 2017-08-01 13:39:41.528 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11864. 2017-08-01 13:39:41.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11865. 2017-08-01 13:39:41.552 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11866. 2017-08-01 13:39:41.554 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11867. 2017-08-01 13:39:41.559 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11868. 2017-08-01 13:39:41.559 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11869. 2017-08-01 13:39:41.561 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11870. 2017-08-01 13:39:41.561 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11871. 2017-08-01 13:39:41.565 |-DEBUG [http-nio-8089-exec-10] 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
  11872. 2017-08-01 13:39:41.565 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11873. 2017-08-01 13:39:41.594 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11874. 2017-08-01 13:39:41.597 |-DEBUG [http-nio-8089-exec-10] 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
  11875. 2017-08-01 13:39:41.598 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11876. 2017-08-01 13:39:41.628 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11877. 2017-08-01 13:39:41.631 |-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
  11878. 2017-08-01 13:39:41.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11879. 2017-08-01 13:39:41.720 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11880. 2017-08-01 13:39:41.722 |-DEBUG [http-nio-8089-exec-10] 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
  11881. 2017-08-01 13:39:41.723 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11882. 2017-08-01 13:39:41.789 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11883. 2017-08-01 13:39:41.791 |-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
  11884. 2017-08-01 13:39:41.792 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11885. 2017-08-01 13:39:41.820 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11886. 2017-08-01 13:49:00.236 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11887. 2017-08-01 13:49:02.025 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11888. 2017-08-01 13:49:03.684 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11889. 2017-08-01 13:49:04.486 |-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= ?
  11890. 2017-08-01 13:49:04.487 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11891. 2017-08-01 13:49:04.513 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11892. 2017-08-01 13:49:04.514 |-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= ?
  11893. 2017-08-01 13:49:04.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11894. 2017-08-01 13:49:04.540 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11895. 2017-08-01 13:49:04.540 |-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= ?
  11896. 2017-08-01 13:49:04.540 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11897. 2017-08-01 13:49:04.566 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11898. 2017-08-01 13:49:04.606 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11899. 2017-08-01 13:49:04.607 |-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= ?
  11900. 2017-08-01 13:49:04.607 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11901. 2017-08-01 13:49:04.610 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11902. 2017-08-01 13:49:04.633 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11903. 2017-08-01 13:49:04.634 |-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= ?
  11904. 2017-08-01 13:49:04.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11905. 2017-08-01 13:49:04.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11906. 2017-08-01 13:49:04.815 |-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
  11907. 2017-08-01 13:49:04.816 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11908. 2017-08-01 13:49:04.844 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11909. 2017-08-01 13:49:04.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11910. 2017-08-01 13:49:04.845 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11911. 2017-08-01 13:49:04.874 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11912. 2017-08-01 13:49:04.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11913. 2017-08-01 13:49:04.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11914. 2017-08-01 13:49:04.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11915. 2017-08-01 13:49:04.903 |-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=?)
  11916. 2017-08-01 13:49:04.903 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11917. 2017-08-01 13:49:04.930 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11918. 2017-08-01 13:49:04.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11919. 2017-08-01 13:49:04.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11920. 2017-08-01 13:49:04.932 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11921. 2017-08-01 13:49:04.933 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11922. 2017-08-01 13:49:04.935 |-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
  11923. 2017-08-01 13:49:04.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  11924. 2017-08-01 13:49:04.956 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11925. 2017-08-01 13:49:04.956 |-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=?)
  11926. 2017-08-01 13:49:04.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11927. 2017-08-01 13:49:04.957 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11928. 2017-08-01 13:49:04.959 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11929. 2017-08-01 13:49:04.962 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  11930. 2017-08-01 13:49:04.971 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11931. 2017-08-01 13:49:04.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= ?
  11932. 2017-08-01 13:49:04.973 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11933. 2017-08-01 13:49:04.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11934. 2017-08-01 13:49:04.983 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11935. 2017-08-01 13:49:04.985 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11936. 2017-08-01 13:49:04.988 |-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
  11937. 2017-08-01 13:49:04.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11938. 2017-08-01 13:49:05.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11939. 2017-08-01 13:49:05.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  11940. 2017-08-01 13:49:05.019 |-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
  11941. 2017-08-01 13:49:05.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11942. 2017-08-01 13:49:05.047 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11943. 2017-08-01 13:49:05.048 |-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
  11944. 2017-08-01 13:49:05.048 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11945. 2017-08-01 13:49:05.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  11946. 2017-08-01 13:49:05.079 |-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=?)
  11947. 2017-08-01 13:49:05.079 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11948. 2017-08-01 13:49:05.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
  11949. 2017-08-01 13:49:05.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11950. 2017-08-01 13:49:05.104 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11951. 2017-08-01 13:49:05.106 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11952. 2017-08-01 13:49:05.107 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11953. 2017-08-01 13:49:05.109 |-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
  11954. 2017-08-01 13:49:05.110 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11955. 2017-08-01 13:49:05.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11956. 2017-08-01 13:49:05.217 |-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
  11957. 2017-08-01 13:49:05.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  11958. 2017-08-01 13:49:05.231 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  11959. 2017-08-01 13:49:05.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  11960. 2017-08-01 13:49:05.288 |-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
  11961. 2017-08-01 13:49:05.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11962. 2017-08-01 13:49:05.315 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  11963. 2017-08-01 13:49:05.515 |-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
  11964. 2017-08-01 13:49:05.516 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11965. 2017-08-01 13:49:05.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11966. 2017-08-01 13:49:05.544 |-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
  11967. 2017-08-01 13:49:05.544 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11968. 2017-08-01 13:49:05.572 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11969. 2017-08-01 13:49:05.572 |-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=?)
  11970. 2017-08-01 13:49:05.573 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11971. 2017-08-01 13:49:05.598 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11972. 2017-08-01 13:49:05.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=?)
  11973. 2017-08-01 13:49:05.598 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  11974. 2017-08-01 13:49:05.600 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11975. 2017-08-01 13:49:05.601 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11976. 2017-08-01 13:49:05.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  11977. 2017-08-01 13:49:05.603 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  11978. 2017-08-01 13:49:05.625 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  11979. 2017-08-01 13:49:05.627 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  11980. 2017-08-01 13:49:05.628 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11981. 2017-08-01 13:49:05.629 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  11982. 2017-08-01 13:49:05.631 |-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
  11983. 2017-08-01 13:49:05.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11984. 2017-08-01 13:49:05.659 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  11985. 2017-08-01 13:49:05.661 |-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
  11986. 2017-08-01 13:49:05.662 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11987. 2017-08-01 13:49:05.692 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  11988. 2017-08-01 13:49:05.694 |-DEBUG [http-nio-8089-exec-6] 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
  11989. 2017-08-01 13:49:05.694 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11990. 2017-08-01 13:49:05.724 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 25
  11991. 2017-08-01 13:49:06.492 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  11992. 2017-08-01 13:49:06.493 |-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= ?
  11993. 2017-08-01 13:49:06.494 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  11994. 2017-08-01 13:49:06.539 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11995. 2017-08-01 13:49:06.540 |-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
  11996. 2017-08-01 13:49:06.540 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  11997. 2017-08-01 13:49:06.570 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  11998. 2017-08-01 13:49:06.570 |-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=?)
  11999. 2017-08-01 13:49:06.571 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12000. 2017-08-01 13:49:06.596 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12001. 2017-08-01 13:49:06.598 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12002. 2017-08-01 13:49:06.599 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12003. 2017-08-01 13:49:06.602 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  12004. 2017-08-01 13:49:06.603 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12005. 2017-08-01 13:49:06.688 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  12006. 2017-08-01 13:49:06.689 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 WHERE t.check_time >= ? AND t.check_time < ?
  12007. 2017-08-01 13:49:06.690 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12008. 2017-08-01 13:49:06.775 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  12009. 2017-08-01 13:49:06.776 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22
  12010. 2017-08-01 13:49:06.777 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12011. 2017-08-01 13:49:06.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  12012. 2017-08-01 13:49:29.683 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12013. 2017-08-01 13:49:29.684 |-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= ?
  12014. 2017-08-01 13:49:29.685 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12015. 2017-08-01 13:49:29.685 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12016. 2017-08-01 13:49:29.687 |-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= ?
  12017. 2017-08-01 13:49:29.687 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12018. 2017-08-01 13:49:29.711 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12019. 2017-08-01 13:49:29.712 |-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
  12020. 2017-08-01 13:49:29.712 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12021. 2017-08-01 13:49:29.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12022. 2017-08-01 13:49:29.714 |-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
  12023. 2017-08-01 13:49:29.714 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12024. 2017-08-01 13:49:29.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12025. 2017-08-01 13:49:29.741 |-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=?)
  12026. 2017-08-01 13:49:29.741 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12027. 2017-08-01 13:49:29.742 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12028. 2017-08-01 13:49:29.742 |-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=?)
  12029. 2017-08-01 13:49:29.742 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12030. 2017-08-01 13:49:29.766 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12031. 2017-08-01 13:49:29.767 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12032. 2017-08-01 13:49:29.768 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12033. 2017-08-01 13:49:29.769 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12034. 2017-08-01 13:49:29.772 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12035. 2017-08-01 13:49:29.773 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12036. 2017-08-01 13:49:29.777 |-DEBUG [http-nio-8089-exec-1] 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
  12037. 2017-08-01 13:49:29.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12038. 2017-08-01 13:49:29.805 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12039. 2017-08-01 13:49:29.808 |-DEBUG [http-nio-8089-exec-1] 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
  12040. 2017-08-01 13:49:29.808 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12041. 2017-08-01 13:49:29.838 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12042. 2017-08-01 13:49:29.840 |-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
  12043. 2017-08-01 13:49:29.840 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12044. 2017-08-01 13:49:29.932 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12045. 2017-08-01 13:49:29.933 |-DEBUG [http-nio-8089-exec-1] 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
  12046. 2017-08-01 13:49:29.934 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12047. 2017-08-01 13:49:29.997 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12048. 2017-08-01 13:49:29.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  12049. 2017-08-01 13:49:30.000 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12050. 2017-08-01 13:49:30.027 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12051. 2017-08-01 13:50:11.351 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12052. 2017-08-01 13:50:11.351 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12053. 2017-08-01 13:50:11.353 |-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= ?
  12054. 2017-08-01 13:50:11.353 |-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= ?
  12055. 2017-08-01 13:50:11.354 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12056. 2017-08-01 13:50:11.354 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12057. 2017-08-01 13:50:11.380 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12058. 2017-08-01 13:50:11.380 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12059. 2017-08-01 13:50:11.381 |-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
  12060. 2017-08-01 13:50:11.381 |-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
  12061. 2017-08-01 13:50:11.382 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12062. 2017-08-01 13:50:11.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12063. 2017-08-01 13:50:11.410 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12064. 2017-08-01 13:50:11.410 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12065. 2017-08-01 13:50:11.410 |-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=?)
  12066. 2017-08-01 13:50:11.410 |-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=?)
  12067. 2017-08-01 13:50:11.411 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12068. 2017-08-01 13:50:11.411 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12069. 2017-08-01 13:50:11.435 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12070. 2017-08-01 13:50:11.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12071. 2017-08-01 13:50:11.438 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12072. 2017-08-01 13:50:11.438 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12073. 2017-08-01 13:50:11.439 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12074. 2017-08-01 13:50:11.439 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12075. 2017-08-01 13:50:11.442 |-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
  12076. 2017-08-01 13:50:11.443 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12077. 2017-08-01 13:50:11.470 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12078. 2017-08-01 13:50:11.471 |-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
  12079. 2017-08-01 13:50:11.471 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12080. 2017-08-01 13:50:11.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12081. 2017-08-01 13:50:11.876 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12082. 2017-08-01 13:50:11.878 |-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= ?
  12083. 2017-08-01 13:50:11.878 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12084. 2017-08-01 13:50:11.883 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12085. 2017-08-01 13:50:11.889 |-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= ?
  12086. 2017-08-01 13:50:11.890 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12087. 2017-08-01 13:50:11.905 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12088. 2017-08-01 13:50:11.906 |-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
  12089. 2017-08-01 13:50:11.908 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12090. 2017-08-01 13:50:11.916 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12091. 2017-08-01 13:50:11.917 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12092. 2017-08-01 13:50:11.917 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12093. 2017-08-01 13:50:11.936 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12094. 2017-08-01 13:50:11.937 |-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=?)
  12095. 2017-08-01 13:50:11.937 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12096. 2017-08-01 13:50:11.945 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12097. 2017-08-01 13:50:11.946 |-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=?)
  12098. 2017-08-01 13:50:11.947 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12099. 2017-08-01 13:50:11.962 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12100. 2017-08-01 13:50:11.964 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12101. 2017-08-01 13:50:11.966 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12102. 2017-08-01 13:50:11.972 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12103. 2017-08-01 13:50:11.973 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12104. 2017-08-01 13:50:11.975 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12105. 2017-08-01 13:50:11.981 |-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
  12106. 2017-08-01 13:50:11.982 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12107. 2017-08-01 13:50:12.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12108. 2017-08-01 13:50:12.010 |-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
  12109. 2017-08-01 13:50:12.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12110. 2017-08-01 13:50:12.042 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12111. 2017-08-01 13:50:12.104 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12112. 2017-08-01 13:50:12.104 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12113. 2017-08-01 13:50:12.106 |-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= ?
  12114. 2017-08-01 13:50:12.107 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12115. 2017-08-01 13:50:12.107 |-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= ?
  12116. 2017-08-01 13:50:12.107 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12117. 2017-08-01 13:50:12.134 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12118. 2017-08-01 13:50:12.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12119. 2017-08-01 13:50:12.135 |-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
  12120. 2017-08-01 13:50:12.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12121. 2017-08-01 13:50:12.135 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12122. 2017-08-01 13:50:12.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12123. 2017-08-01 13:50:12.163 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12124. 2017-08-01 13:50:12.164 |-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=?)
  12125. 2017-08-01 13:50:12.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12126. 2017-08-01 13:50:12.165 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12127. 2017-08-01 13:50:12.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=?)
  12128. 2017-08-01 13:50:12.165 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12129. 2017-08-01 13:50:12.189 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12130. 2017-08-01 13:50:12.190 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12131. 2017-08-01 13:50:12.190 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12132. 2017-08-01 13:50:12.191 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12133. 2017-08-01 13:50:12.192 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12134. 2017-08-01 13:50:12.192 |-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
  12135. 2017-08-01 13:50:12.193 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12136. 2017-08-01 13:50:12.193 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12137. 2017-08-01 13:50:12.194 |-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
  12138. 2017-08-01 13:50:12.194 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12139. 2017-08-01 13:50:12.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12140. 2017-08-01 13:50:12.224 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12141. 2017-08-01 13:50:12.236 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12142. 2017-08-01 13:50:12.238 |-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= ?
  12143. 2017-08-01 13:50:12.239 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12144. 2017-08-01 13:50:12.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12145. 2017-08-01 13:50:12.265 |-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
  12146. 2017-08-01 13:50:12.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12147. 2017-08-01 13:50:12.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12148. 2017-08-01 13:50:12.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  12149. 2017-08-01 13:50:12.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12150. 2017-08-01 13:50:12.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12151. 2017-08-01 13:50:12.321 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12152. 2017-08-01 13:50:12.322 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12153. 2017-08-01 13:50:12.326 |-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
  12154. 2017-08-01 13:50:12.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12155. 2017-08-01 13:50:12.409 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12156. 2017-08-01 13:50:12.433 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12157. 2017-08-01 13:50:12.434 |-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= ?
  12158. 2017-08-01 13:50:12.435 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12159. 2017-08-01 13:50:12.461 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12160. 2017-08-01 13:50:12.462 |-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
  12161. 2017-08-01 13:50:12.462 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12162. 2017-08-01 13:50:12.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12163. 2017-08-01 13:50:12.490 |-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=?)
  12164. 2017-08-01 13:50:12.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12165. 2017-08-01 13:50:12.516 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12166. 2017-08-01 13:50:12.518 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12167. 2017-08-01 13:50:12.520 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12168. 2017-08-01 13:50:12.523 |-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=?
  12169. 2017-08-01 13:50:12.523 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12170. 2017-08-01 13:50:12.550 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12171. 2017-08-01 13:50:12.656 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12172. 2017-08-01 13:50:12.656 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12173. 2017-08-01 13:50:12.659 |-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= ?
  12174. 2017-08-01 13:50:12.660 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12175. 2017-08-01 13:50:12.661 |-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= ?
  12176. 2017-08-01 13:50:12.661 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12177. 2017-08-01 13:50:12.686 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12178. 2017-08-01 13:50:12.687 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12179. 2017-08-01 13:50:12.687 |-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
  12180. 2017-08-01 13:50:12.687 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12181. 2017-08-01 13:50:12.687 |-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
  12182. 2017-08-01 13:50:12.688 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12183. 2017-08-01 13:50:12.716 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12184. 2017-08-01 13:50:12.716 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12185. 2017-08-01 13:50:12.716 |-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=?)
  12186. 2017-08-01 13:50:12.716 |-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=?)
  12187. 2017-08-01 13:50:12.717 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12188. 2017-08-01 13:50:12.717 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12189. 2017-08-01 13:50:12.742 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12190. 2017-08-01 13:50:12.742 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12191. 2017-08-01 13:50:12.747 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12192. 2017-08-01 13:50:12.747 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12193. 2017-08-01 13:50:12.749 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12194. 2017-08-01 13:50:12.749 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12195. 2017-08-01 13:50:12.754 |-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
  12196. 2017-08-01 13:50:12.755 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12197. 2017-08-01 13:50:12.783 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12198. 2017-08-01 13:50:12.785 |-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
  12199. 2017-08-01 13:50:12.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12200. 2017-08-01 13:50:12.818 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12201. 2017-08-01 13:50:12.820 |-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
  12202. 2017-08-01 13:50:12.820 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12203. 2017-08-01 13:50:12.909 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12204. 2017-08-01 13:50:12.911 |-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
  12205. 2017-08-01 13:50:12.912 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12206. 2017-08-01 13:50:12.989 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12207. 2017-08-01 13:50:12.991 |-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
  12208. 2017-08-01 13:50:12.992 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12209. 2017-08-01 13:50:13.021 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12210. 2017-08-01 13:51:38.963 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12211. 2017-08-01 13:51:38.963 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12212. 2017-08-01 13:51:38.991 |-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= ?
  12213. 2017-08-01 13:51:38.991 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12214. 2017-08-01 13:51:38.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= ?
  12215. 2017-08-01 13:51:38.992 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12216. 2017-08-01 13:51:39.017 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12217. 2017-08-01 13:51:39.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12218. 2017-08-01 13:51:39.042 |-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
  12219. 2017-08-01 13:51:39.042 |-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
  12220. 2017-08-01 13:51:39.043 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12221. 2017-08-01 13:51:39.043 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12222. 2017-08-01 13:51:39.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12223. 2017-08-01 13:51:39.072 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12224. 2017-08-01 13:51:39.072 |-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=?)
  12225. 2017-08-01 13:51:39.073 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12226. 2017-08-01 13:51:39.073 |-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=?)
  12227. 2017-08-01 13:51:39.073 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12228. 2017-08-01 13:51:39.098 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12229. 2017-08-01 13:51:39.098 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12230. 2017-08-01 13:51:39.101 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12231. 2017-08-01 13:51:39.101 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12232. 2017-08-01 13:51:39.102 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12233. 2017-08-01 13:51:39.102 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12234. 2017-08-01 13:51:39.107 |-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
  12235. 2017-08-01 13:51:39.108 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12236. 2017-08-01 13:51:39.135 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12237. 2017-08-01 13:51:39.136 |-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
  12238. 2017-08-01 13:51:39.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12239. 2017-08-01 13:51:39.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12240. 2017-08-01 13:51:39.213 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12241. 2017-08-01 13:51:39.213 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12242. 2017-08-01 13:51:39.215 |-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= ?
  12243. 2017-08-01 13:51:39.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= ?
  12244. 2017-08-01 13:51:39.215 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12245. 2017-08-01 13:51:39.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12246. 2017-08-01 13:51:39.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12247. 2017-08-01 13:51:39.242 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12248. 2017-08-01 13:51:39.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
  12249. 2017-08-01 13:51:39.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12250. 2017-08-01 13:51:39.243 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12251. 2017-08-01 13:51:39.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12252. 2017-08-01 13:51:39.270 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12253. 2017-08-01 13:51:39.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12254. 2017-08-01 13:51:39.272 |-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=?)
  12255. 2017-08-01 13:51:39.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=?)
  12256. 2017-08-01 13:51:39.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12257. 2017-08-01 13:51:39.272 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12258. 2017-08-01 13:51:39.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12259. 2017-08-01 13:51:39.298 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12260. 2017-08-01 13:51:39.300 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12261. 2017-08-01 13:51:39.300 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12262. 2017-08-01 13:51:39.301 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12263. 2017-08-01 13:51:39.301 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12264. 2017-08-01 13:51:39.302 |-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
  12265. 2017-08-01 13:51:39.302 |-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
  12266. 2017-08-01 13:51:39.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12267. 2017-08-01 13:51:39.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12268. 2017-08-01 13:51:39.329 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12269. 2017-08-01 13:51:39.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12270. 2017-08-01 13:51:39.343 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12271. 2017-08-01 13:51:39.345 |-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= ?
  12272. 2017-08-01 13:51:39.345 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12273. 2017-08-01 13:51:39.372 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12274. 2017-08-01 13:51:39.373 |-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
  12275. 2017-08-01 13:51:39.373 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12276. 2017-08-01 13:51:39.401 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12277. 2017-08-01 13:51:39.402 |-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=?)
  12278. 2017-08-01 13:51:39.402 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12279. 2017-08-01 13:51:39.427 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12280. 2017-08-01 13:51:39.430 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12281. 2017-08-01 13:51:39.431 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12282. 2017-08-01 13:51:39.434 |-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
  12283. 2017-08-01 13:51:39.435 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12284. 2017-08-01 13:51:39.517 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12285. 2017-08-01 13:51:39.546 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12286. 2017-08-01 13:51:39.547 |-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= ?
  12287. 2017-08-01 13:51:39.547 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12288. 2017-08-01 13:51:39.574 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12289. 2017-08-01 13:51:39.574 |-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
  12290. 2017-08-01 13:51:39.575 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12291. 2017-08-01 13:51:39.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12292. 2017-08-01 13:51:39.603 |-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=?)
  12293. 2017-08-01 13:51:39.603 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12294. 2017-08-01 13:51:39.628 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12295. 2017-08-01 13:51:39.631 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12296. 2017-08-01 13:51:39.632 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12297. 2017-08-01 13:51:39.634 |-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=?
  12298. 2017-08-01 13:51:39.635 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12299. 2017-08-01 13:51:39.660 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12300. 2017-08-01 13:51:39.785 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12301. 2017-08-01 13:51:39.785 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12302. 2017-08-01 13:51:39.786 |-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= ?
  12303. 2017-08-01 13:51:39.786 |-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= ?
  12304. 2017-08-01 13:51:39.787 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12305. 2017-08-01 13:51:39.787 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12306. 2017-08-01 13:51:39.813 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12307. 2017-08-01 13:51:39.813 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12308. 2017-08-01 13:51:39.815 |-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
  12309. 2017-08-01 13:51:39.815 |-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
  12310. 2017-08-01 13:51:39.815 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12311. 2017-08-01 13:51:39.815 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12312. 2017-08-01 13:51:39.843 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12313. 2017-08-01 13:51:39.843 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12314. 2017-08-01 13:51:39.843 |-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=?)
  12315. 2017-08-01 13:51:39.843 |-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=?)
  12316. 2017-08-01 13:51:39.844 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12317. 2017-08-01 13:51:39.844 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12318. 2017-08-01 13:51:39.867 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12319. 2017-08-01 13:51:39.868 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12320. 2017-08-01 13:51:39.870 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12321. 2017-08-01 13:51:39.870 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12322. 2017-08-01 13:51:39.872 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12323. 2017-08-01 13:51:39.872 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12324. 2017-08-01 13:51:39.874 |-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
  12325. 2017-08-01 13:51:39.875 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12326. 2017-08-01 13:51:39.903 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12327. 2017-08-01 13:51:39.905 |-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
  12328. 2017-08-01 13:51:39.905 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12329. 2017-08-01 13:51:39.935 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12330. 2017-08-01 13:51:39.937 |-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
  12331. 2017-08-01 13:51:39.937 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12332. 2017-08-01 13:51:40.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12333. 2017-08-01 13:51:40.018 |-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
  12334. 2017-08-01 13:51:40.019 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12335. 2017-08-01 13:51:40.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12336. 2017-08-01 13:51:40.093 |-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
  12337. 2017-08-01 13:51:40.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12338. 2017-08-01 13:51:40.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12339. 2017-08-01 14:07:24.690 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12340. 2017-08-01 14:07:24.694 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12341. 2017-08-01 14:07:26.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= ?
  12342. 2017-08-01 14:07:26.454 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12343. 2017-08-01 14:07:26.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12344. 2017-08-01 14:07:26.485 |-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= ?
  12345. 2017-08-01 14:07:26.485 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12346. 2017-08-01 14:07:26.514 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12347. 2017-08-01 14:07:27.745 |-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
  12348. 2017-08-01 14:07:27.746 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12349. 2017-08-01 14:07:27.777 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12350. 2017-08-01 14:07:27.778 |-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
  12351. 2017-08-01 14:07:27.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12352. 2017-08-01 14:07:27.808 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12353. 2017-08-01 14:07:27.809 |-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=?)
  12354. 2017-08-01 14:07:27.809 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12355. 2017-08-01 14:07:27.836 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12356. 2017-08-01 14:07:27.836 |-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=?)
  12357. 2017-08-01 14:07:27.837 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12358. 2017-08-01 14:07:27.839 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12359. 2017-08-01 14:07:27.841 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12360. 2017-08-01 14:07:27.863 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12361. 2017-08-01 14:07:27.863 |-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
  12362. 2017-08-01 14:07:27.864 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12363. 2017-08-01 14:07:27.867 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12364. 2017-08-01 14:07:27.869 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12365. 2017-08-01 14:07:27.893 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12366. 2017-08-01 14:07:27.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
  12367. 2017-08-01 14:07:27.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12368. 2017-08-01 14:07:27.923 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12369. 2017-08-01 14:07:27.979 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12370. 2017-08-01 14:07:27.979 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12371. 2017-08-01 14:07:27.981 |-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= ?
  12372. 2017-08-01 14:07:27.981 |-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= ?
  12373. 2017-08-01 14:07:27.982 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12374. 2017-08-01 14:07:27.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12375. 2017-08-01 14:07:28.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12376. 2017-08-01 14:07:28.010 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12377. 2017-08-01 14:07:28.011 |-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
  12378. 2017-08-01 14:07:28.011 |-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
  12379. 2017-08-01 14:07:28.011 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12380. 2017-08-01 14:07:28.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12381. 2017-08-01 14:07:28.040 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12382. 2017-08-01 14:07:28.040 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12383. 2017-08-01 14:07:28.041 |-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=?)
  12384. 2017-08-01 14:07:28.041 |-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=?)
  12385. 2017-08-01 14:07:28.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12386. 2017-08-01 14:07:28.041 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12387. 2017-08-01 14:07:28.067 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12388. 2017-08-01 14:07:28.067 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12389. 2017-08-01 14:07:28.069 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12390. 2017-08-01 14:07:28.069 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12391. 2017-08-01 14:07:28.070 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12392. 2017-08-01 14:07:28.070 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12393. 2017-08-01 14:07:28.071 |-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
  12394. 2017-08-01 14:07:28.071 |-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
  12395. 2017-08-01 14:07:28.072 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12396. 2017-08-01 14:07:28.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12397. 2017-08-01 14:07:28.101 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12398. 2017-08-01 14:07:28.101 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12399. 2017-08-01 14:07:28.112 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12400. 2017-08-01 14:07:28.114 |-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= ?
  12401. 2017-08-01 14:07:28.114 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12402. 2017-08-01 14:07:28.142 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12403. 2017-08-01 14:07:28.143 |-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
  12404. 2017-08-01 14:07:28.143 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12405. 2017-08-01 14:07:28.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12406. 2017-08-01 14:07:28.173 |-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=?)
  12407. 2017-08-01 14:07:28.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12408. 2017-08-01 14:07:28.200 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12409. 2017-08-01 14:07:28.202 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12410. 2017-08-01 14:07:28.203 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12411. 2017-08-01 14:07:28.206 |-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
  12412. 2017-08-01 14:07:28.206 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12413. 2017-08-01 14:07:28.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12414. 2017-08-01 14:07:28.342 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12415. 2017-08-01 14:07:28.343 |-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= ?
  12416. 2017-08-01 14:07:28.344 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12417. 2017-08-01 14:07:28.372 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12418. 2017-08-01 14:07:28.372 |-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
  12419. 2017-08-01 14:07:28.373 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12420. 2017-08-01 14:07:28.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12421. 2017-08-01 14:07:28.403 |-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=?)
  12422. 2017-08-01 14:07:28.403 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12423. 2017-08-01 14:07:28.430 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12424. 2017-08-01 14:07:28.433 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12425. 2017-08-01 14:07:28.435 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12426. 2017-08-01 14:07:28.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  12427. 2017-08-01 14:07:28.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12428. 2017-08-01 14:07:28.467 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12429. 2017-08-01 14:07:28.607 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12430. 2017-08-01 14:07:28.609 |-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= ?
  12431. 2017-08-01 14:07:28.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12432. 2017-08-01 14:07:28.618 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12433. 2017-08-01 14:07:28.620 |-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= ?
  12434. 2017-08-01 14:07:28.620 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12435. 2017-08-01 14:07:28.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12436. 2017-08-01 14:07:28.639 |-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
  12437. 2017-08-01 14:07:28.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12438. 2017-08-01 14:07:28.648 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12439. 2017-08-01 14:07:28.649 |-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
  12440. 2017-08-01 14:07:28.650 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12441. 2017-08-01 14:07:28.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12442. 2017-08-01 14:07:28.669 |-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=?)
  12443. 2017-08-01 14:07:28.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12444. 2017-08-01 14:07:28.679 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12445. 2017-08-01 14:07:28.680 |-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=?)
  12446. 2017-08-01 14:07:28.680 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12447. 2017-08-01 14:07:28.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12448. 2017-08-01 14:07:28.698 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12449. 2017-08-01 14:07:28.698 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12450. 2017-08-01 14:07:28.706 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12451. 2017-08-01 14:07:28.708 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12452. 2017-08-01 14:07:28.709 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12453. 2017-08-01 14:07:28.712 |-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 < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  12454. 2017-08-01 14:07:28.713 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12455. 2017-08-01 14:07:28.741 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12456. 2017-08-01 14:07:28.744 |-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 < ? GROUP BY t.checked_person
  12457. 2017-08-01 14:07:28.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12458. 2017-08-01 14:07:28.775 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12459. 2017-08-01 14:07:28.777 |-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
  12460. 2017-08-01 14:07:28.778 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12461. 2017-08-01 14:07:28.865 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12462. 2017-08-01 14:07:28.866 |-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
  12463. 2017-08-01 14:07:28.866 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12464. 2017-08-01 14:07:28.931 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12465. 2017-08-01 14:07:28.932 |-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
  12466. 2017-08-01 14:07:28.932 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12467. 2017-08-01 14:07:28.963 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12468. 2017-08-01 14:08:13.843 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12469. 2017-08-01 14:08:13.844 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12470. 2017-08-01 14:08:13.845 |-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= ?
  12471. 2017-08-01 14:08:13.846 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12472. 2017-08-01 14:08:13.857 |-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= ?
  12473. 2017-08-01 14:08:13.858 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12474. 2017-08-01 14:08:13.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12475. 2017-08-01 14:08:13.880 |-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
  12476. 2017-08-01 14:08:13.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12477. 2017-08-01 14:08:13.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12478. 2017-08-01 14:08:13.901 |-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
  12479. 2017-08-01 14:08:13.902 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12480. 2017-08-01 14:08:13.924 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12481. 2017-08-01 14:08:13.924 |-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=?)
  12482. 2017-08-01 14:08:13.925 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12483. 2017-08-01 14:08:13.968 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12484. 2017-08-01 14:08:13.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  12485. 2017-08-01 14:08:13.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12486. 2017-08-01 14:08:13.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12487. 2017-08-01 14:08:13.991 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12488. 2017-08-01 14:08:13.992 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12489. 2017-08-01 14:08:13.995 |-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
  12490. 2017-08-01 14:08:13.995 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12491. 2017-08-01 14:08:14.010 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12492. 2017-08-01 14:08:14.013 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12493. 2017-08-01 14:08:14.014 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12494. 2017-08-01 14:08:14.039 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12495. 2017-08-01 14:08:14.040 |-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
  12496. 2017-08-01 14:08:14.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12497. 2017-08-01 14:08:14.075 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12498. 2017-08-01 14:08:14.131 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12499. 2017-08-01 14:08:14.131 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12500. 2017-08-01 14:08:14.132 |-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= ?
  12501. 2017-08-01 14:08:14.133 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12502. 2017-08-01 14:08:14.133 |-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= ?
  12503. 2017-08-01 14:08:14.133 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12504. 2017-08-01 14:08:14.161 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12505. 2017-08-01 14:08:14.162 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12506. 2017-08-01 14:08:14.162 |-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
  12507. 2017-08-01 14:08:14.162 |-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
  12508. 2017-08-01 14:08:14.162 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12509. 2017-08-01 14:08:14.162 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12510. 2017-08-01 14:08:14.191 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12511. 2017-08-01 14:08:14.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12512. 2017-08-01 14:08:14.192 |-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=?)
  12513. 2017-08-01 14:08:14.192 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12514. 2017-08-01 14:08:14.192 |-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=?)
  12515. 2017-08-01 14:08:14.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12516. 2017-08-01 14:08:14.217 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12517. 2017-08-01 14:08:14.218 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12518. 2017-08-01 14:08:14.220 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12519. 2017-08-01 14:08:14.220 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12520. 2017-08-01 14:08:14.221 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12521. 2017-08-01 14:08:14.221 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12522. 2017-08-01 14:08:14.222 |-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
  12523. 2017-08-01 14:08:14.222 |-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
  12524. 2017-08-01 14:08:14.223 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12525. 2017-08-01 14:08:14.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12526. 2017-08-01 14:08:14.251 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12527. 2017-08-01 14:08:14.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12528. 2017-08-01 14:08:14.262 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12529. 2017-08-01 14:08:14.263 |-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= ?
  12530. 2017-08-01 14:08:14.264 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12531. 2017-08-01 14:08:14.291 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12532. 2017-08-01 14:08:14.292 |-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
  12533. 2017-08-01 14:08:14.293 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12534. 2017-08-01 14:08:14.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12535. 2017-08-01 14:08:14.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  12536. 2017-08-01 14:08:14.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12537. 2017-08-01 14:08:14.351 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12538. 2017-08-01 14:08:14.353 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12539. 2017-08-01 14:08:14.354 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12540. 2017-08-01 14:08:14.358 |-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
  12541. 2017-08-01 14:08:14.359 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12542. 2017-08-01 14:08:14.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12543. 2017-08-01 14:08:14.474 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12544. 2017-08-01 14:08:14.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= ?
  12545. 2017-08-01 14:08:14.477 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12546. 2017-08-01 14:08:14.505 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12547. 2017-08-01 14:08:14.506 |-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
  12548. 2017-08-01 14:08:14.506 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12549. 2017-08-01 14:08:14.537 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12550. 2017-08-01 14:08:14.538 |-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=?)
  12551. 2017-08-01 14:08:14.538 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12552. 2017-08-01 14:08:14.565 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12553. 2017-08-01 14:08:14.568 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12554. 2017-08-01 14:08:14.569 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12555. 2017-08-01 14:08:14.571 |-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=?
  12556. 2017-08-01 14:08:14.572 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12557. 2017-08-01 14:08:14.599 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12558. 2017-08-01 14:08:14.722 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12559. 2017-08-01 14:08:14.724 |-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= ?
  12560. 2017-08-01 14:08:14.724 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12561. 2017-08-01 14:08:14.732 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12562. 2017-08-01 14:08:14.734 |-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= ?
  12563. 2017-08-01 14:08:14.735 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12564. 2017-08-01 14:08:14.752 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12565. 2017-08-01 14:08:14.753 |-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
  12566. 2017-08-01 14:08:14.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12567. 2017-08-01 14:08:14.763 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12568. 2017-08-01 14:08:14.764 |-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
  12569. 2017-08-01 14:08:14.765 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12570. 2017-08-01 14:08:14.782 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12571. 2017-08-01 14:08:14.783 |-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=?)
  12572. 2017-08-01 14:08:14.783 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12573. 2017-08-01 14:08:14.793 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12574. 2017-08-01 14:08:14.793 |-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=?)
  12575. 2017-08-01 14:08:14.794 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12576. 2017-08-01 14:08:14.809 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12577. 2017-08-01 14:08:14.811 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12578. 2017-08-01 14:08:14.812 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12579. 2017-08-01 14:08:14.819 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12580. 2017-08-01 14:08:14.822 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12581. 2017-08-01 14:08:14.824 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12582. 2017-08-01 14:08:14.827 |-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
  12583. 2017-08-01 14:08:14.828 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12584. 2017-08-01 14:08:14.856 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12585. 2017-08-01 14:08:14.858 |-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
  12586. 2017-08-01 14:08:14.859 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12587. 2017-08-01 14:08:14.889 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12588. 2017-08-01 14:08:14.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
  12589. 2017-08-01 14:08:14.892 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12590. 2017-08-01 14:08:14.977 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12591. 2017-08-01 14:08:14.978 |-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
  12592. 2017-08-01 14:08:14.979 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12593. 2017-08-01 14:08:15.044 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12594. 2017-08-01 14:08:15.045 |-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
  12595. 2017-08-01 14:08:15.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12596. 2017-08-01 14:08:15.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12597. 2017-08-01 14:09:20.328 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12598. 2017-08-01 14:09:20.344 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12599. 2017-08-01 14:09:20.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= ?
  12600. 2017-08-01 14:09:20.512 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12601. 2017-08-01 14:09:20.516 |-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= ?
  12602. 2017-08-01 14:09:20.516 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12603. 2017-08-01 14:09:20.663 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12604. 2017-08-01 14:09:20.665 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12605. 2017-08-01 14:09:20.691 |-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
  12606. 2017-08-01 14:09:20.691 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12607. 2017-08-01 14:09:20.692 |-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
  12608. 2017-08-01 14:09:20.692 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12609. 2017-08-01 14:09:20.746 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12610. 2017-08-01 14:09:20.747 |-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=?)
  12611. 2017-08-01 14:09:20.747 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12612. 2017-08-01 14:09:20.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12613. 2017-08-01 14:09:20.750 |-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=?)
  12614. 2017-08-01 14:09:20.750 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12615. 2017-08-01 14:09:20.919 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12616. 2017-08-01 14:09:20.921 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12617. 2017-08-01 14:09:20.921 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12618. 2017-08-01 14:09:20.922 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12619. 2017-08-01 14:09:20.923 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12620. 2017-08-01 14:09:20.924 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12621. 2017-08-01 14:09:20.927 |-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
  12622. 2017-08-01 14:09:20.928 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12623. 2017-08-01 14:09:21.090 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12624. 2017-08-01 14:09:21.091 |-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
  12625. 2017-08-01 14:09:21.091 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12626. 2017-08-01 14:09:21.152 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12627. 2017-08-01 14:09:21.203 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12628. 2017-08-01 14:09:21.203 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12629. 2017-08-01 14:09:21.205 |-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= ?
  12630. 2017-08-01 14:09:21.205 |-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= ?
  12631. 2017-08-01 14:09:21.205 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12632. 2017-08-01 14:09:21.205 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12633. 2017-08-01 14:09:21.368 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12634. 2017-08-01 14:09:21.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12635. 2017-08-01 14:09:21.369 |-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
  12636. 2017-08-01 14:09:21.369 |-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
  12637. 2017-08-01 14:09:21.369 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12638. 2017-08-01 14:09:21.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12639. 2017-08-01 14:09:21.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12640. 2017-08-01 14:09:21.534 |-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=?)
  12641. 2017-08-01 14:09:21.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12642. 2017-08-01 14:09:21.535 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12643. 2017-08-01 14:09:21.536 |-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=?)
  12644. 2017-08-01 14:09:21.536 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12645. 2017-08-01 14:09:21.701 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12646. 2017-08-01 14:09:21.704 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12647. 2017-08-01 14:09:21.704 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12648. 2017-08-01 14:09:21.705 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12649. 2017-08-01 14:09:21.706 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12650. 2017-08-01 14:09:21.706 |-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
  12651. 2017-08-01 14:09:21.707 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12652. 2017-08-01 14:09:21.707 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12653. 2017-08-01 14:09:21.708 |-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
  12654. 2017-08-01 14:09:21.708 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12655. 2017-08-01 14:09:21.876 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12656. 2017-08-01 14:09:21.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12657. 2017-08-01 14:09:21.893 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12658. 2017-08-01 14:09:21.895 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ?
  12659. 2017-08-01 14:09:21.895 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12660. 2017-08-01 14:09:22.044 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12661. 2017-08-01 14:09:22.045 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12662. 2017-08-01 14:09:22.046 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12663. 2017-08-01 14:09:22.162 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12664. 2017-08-01 14:09:22.162 |-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=?)
  12665. 2017-08-01 14:09:22.163 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12666. 2017-08-01 14:09:22.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12667. 2017-08-01 14:09:22.268 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12668. 2017-08-01 14:09:22.269 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12669. 2017-08-01 14:09:22.273 |-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
  12670. 2017-08-01 14:09:22.273 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12671. 2017-08-01 14:09:23.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12672. 2017-08-01 14:09:23.720 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12673. 2017-08-01 14:09:23.722 |-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= ?
  12674. 2017-08-01 14:09:23.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12675. 2017-08-01 14:09:23.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12676. 2017-08-01 14:09: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
  12677. 2017-08-01 14:09:23.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12678. 2017-08-01 14:09:24.036 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12679. 2017-08-01 14:09:24.036 |-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=?)
  12680. 2017-08-01 14:09:24.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12681. 2017-08-01 14:09:24.190 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12682. 2017-08-01 14:09:24.192 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12683. 2017-08-01 14:09:24.193 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12684. 2017-08-01 14:09:24.196 |-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=?
  12685. 2017-08-01 14:09:24.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12686. 2017-08-01 14:09:24.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12687. 2017-08-01 14:09:24.502 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12688. 2017-08-01 14:09:24.504 |-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= ?
  12689. 2017-08-01 14:09:24.504 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12690. 2017-08-01 14:09:24.505 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12691. 2017-08-01 14:09:24.507 |-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= ?
  12692. 2017-08-01 14:09:24.508 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12693. 2017-08-01 14:09:24.671 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12694. 2017-08-01 14:09:24.671 |-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
  12695. 2017-08-01 14:09:24.672 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12696. 2017-08-01 14:09:24.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12697. 2017-08-01 14:09:24.675 |-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
  12698. 2017-08-01 14:09:24.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12699. 2017-08-01 14:09:24.848 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12700. 2017-08-01 14:09:24.849 |-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=?)
  12701. 2017-08-01 14:09:24.849 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12702. 2017-08-01 14:09:24.851 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12703. 2017-08-01 14:09:24.851 |-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=?)
  12704. 2017-08-01 14:09:24.851 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12705. 2017-08-01 14:09:24.963 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12706. 2017-08-01 14:09:24.964 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12707. 2017-08-01 14:09:24.966 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12708. 2017-08-01 14:09:24.966 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12709. 2017-08-01 14:09:24.967 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12710. 2017-08-01 14:09:24.967 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12711. 2017-08-01 14:09:24.972 |-DEBUG [http-nio-8089-exec-1] 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
  12712. 2017-08-01 14:09:24.973 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12713. 2017-08-01 14:09:25.107 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12714. 2017-08-01 14:09:25.109 |-DEBUG [http-nio-8089-exec-1] 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
  12715. 2017-08-01 14:09:25.110 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12716. 2017-08-01 14:09:25.276 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12717. 2017-08-01 14:09:25.278 |-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
  12718. 2017-08-01 14:09:25.278 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12719. 2017-08-01 14:09:25.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12720. 2017-08-01 14:09:26.000 |-DEBUG [http-nio-8089-exec-1] 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
  12721. 2017-08-01 14:09:26.001 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12722. 2017-08-01 14:09:26.444 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12723. 2017-08-01 14:09:26.445 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  12724. 2017-08-01 14:09:26.446 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12725. 2017-08-01 14:09:26.571 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12726. 2017-08-01 14:12:02.196 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12727. 2017-08-01 14:12:02.199 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12728. 2017-08-01 14:12:02.226 |-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= ?
  12729. 2017-08-01 14:12:02.227 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12730. 2017-08-01 14:12:02.227 |-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= ?
  12731. 2017-08-01 14:12:02.227 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12732. 2017-08-01 14:12:02.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12733. 2017-08-01 14:12:02.256 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12734. 2017-08-01 14:12:02.280 |-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
  12735. 2017-08-01 14:12:02.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12736. 2017-08-01 14:12:02.282 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12737. 2017-08-01 14:12:02.283 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12738. 2017-08-01 14:12:02.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12739. 2017-08-01 14:12:02.310 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12740. 2017-08-01 14:12:02.310 |-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=?)
  12741. 2017-08-01 14:12:02.310 |-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=?)
  12742. 2017-08-01 14:12:02.311 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12743. 2017-08-01 14:12:02.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12744. 2017-08-01 14:12:02.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12745. 2017-08-01 14:12:02.338 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12746. 2017-08-01 14:12:02.338 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12747. 2017-08-01 14:12:02.339 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12748. 2017-08-01 14:12:02.340 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12749. 2017-08-01 14:12:02.341 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12750. 2017-08-01 14:12:02.342 |-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
  12751. 2017-08-01 14:12:02.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12752. 2017-08-01 14:12:02.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12753. 2017-08-01 14:12:02.375 |-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
  12754. 2017-08-01 14:12:02.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12755. 2017-08-01 14:12:02.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12756. 2017-08-01 14:12:02.409 |-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
  12757. 2017-08-01 14:12:02.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12758. 2017-08-01 14:12:02.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12759. 2017-08-01 14:12:02.508 |-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
  12760. 2017-08-01 14:12:02.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12761. 2017-08-01 14:12:02.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12762. 2017-08-01 14:12:02.576 |-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
  12763. 2017-08-01 14:12:02.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12764. 2017-08-01 14:12:02.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12765. 2017-08-01 14:12:37.133 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12766. 2017-08-01 14:12:37.133 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12767. 2017-08-01 14:12:37.135 |-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= ?
  12768. 2017-08-01 14:12:37.135 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12769. 2017-08-01 14:12:37.138 |-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= ?
  12770. 2017-08-01 14:12:37.139 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12771. 2017-08-01 14:12:37.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12772. 2017-08-01 14:12:37.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
  12773. 2017-08-01 14:12:37.167 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12774. 2017-08-01 14:12:37.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12775. 2017-08-01 14:12:37.168 |-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
  12776. 2017-08-01 14:12:37.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12777. 2017-08-01 14:12:37.196 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12778. 2017-08-01 14:12:37.197 |-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=?)
  12779. 2017-08-01 14:12:37.197 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12780. 2017-08-01 14:12:37.198 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12781. 2017-08-01 14:12:37.199 |-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=?)
  12782. 2017-08-01 14:12:37.200 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12783. 2017-08-01 14:12:37.304 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12784. 2017-08-01 14:12:37.307 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12785. 2017-08-01 14:12:37.309 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12786. 2017-08-01 14:12:37.312 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12787. 2017-08-01 14:12:37.314 |-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
  12788. 2017-08-01 14:12:37.315 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12789. 2017-08-01 14:12:37.315 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12790. 2017-08-01 14:12:37.316 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12791. 2017-08-01 14:12:37.344 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12792. 2017-08-01 14:12:37.345 |-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
  12793. 2017-08-01 14:12:37.346 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12794. 2017-08-01 14:12:37.376 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12795. 2017-08-01 14:12:37.426 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12796. 2017-08-01 14:12:37.426 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12797. 2017-08-01 14:12:37.428 |-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= ?
  12798. 2017-08-01 14:12:37.428 |-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= ?
  12799. 2017-08-01 14:12:37.428 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12800. 2017-08-01 14:12:37.428 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12801. 2017-08-01 14:12:37.456 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12802. 2017-08-01 14:12:37.457 |-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
  12803. 2017-08-01 14:12:37.457 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12804. 2017-08-01 14:12:37.460 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12805. 2017-08-01 14:12:37.461 |-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
  12806. 2017-08-01 14:12:37.462 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12807. 2017-08-01 14:12:37.486 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12808. 2017-08-01 14:12:37.487 |-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=?)
  12809. 2017-08-01 14:12:37.487 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12810. 2017-08-01 14:12:37.490 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12811. 2017-08-01 14:12:37.491 |-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=?)
  12812. 2017-08-01 14:12:37.491 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12813. 2017-08-01 14:12:37.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12814. 2017-08-01 14:12:37.536 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12815. 2017-08-01 14:12:37.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12816. 2017-08-01 14:12:37.538 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12817. 2017-08-01 14:12:37.540 |-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
  12818. 2017-08-01 14:12:37.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12819. 2017-08-01 14:12:37.541 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12820. 2017-08-01 14:12:37.542 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12821. 2017-08-01 14:12:37.545 |-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
  12822. 2017-08-01 14:12:37.546 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12823. 2017-08-01 14:12:37.572 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12824. 2017-08-01 14:12:37.577 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12825. 2017-08-01 14:12:37.620 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12826. 2017-08-01 14:12:37.646 |-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= ?
  12827. 2017-08-01 14:12:37.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12828. 2017-08-01 14:12:37.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12829. 2017-08-01 14:12:37.676 |-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
  12830. 2017-08-01 14:12:37.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12831. 2017-08-01 14:12:37.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12832. 2017-08-01 14:12:37.705 |-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=?)
  12833. 2017-08-01 14:12:37.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12834. 2017-08-01 14:12:37.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12835. 2017-08-01 14:12:37.735 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12836. 2017-08-01 14:12:37.736 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12837. 2017-08-01 14:12:37.740 |-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
  12838. 2017-08-01 14:12:37.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12839. 2017-08-01 14:12:37.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12840. 2017-08-01 14:12:37.890 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12841. 2017-08-01 14:12:37.892 |-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= ?
  12842. 2017-08-01 14:12:37.892 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12843. 2017-08-01 14:12:37.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12844. 2017-08-01 14:12:37.921 |-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
  12845. 2017-08-01 14:12:37.921 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12846. 2017-08-01 14:12:37.950 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12847. 2017-08-01 14:12:37.951 |-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=?)
  12848. 2017-08-01 14:12:37.951 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12849. 2017-08-01 14:12:37.976 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12850. 2017-08-01 14:12:37.979 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12851. 2017-08-01 14:12:37.980 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12852. 2017-08-01 14:12:37.983 |-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=?
  12853. 2017-08-01 14:12:37.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12854. 2017-08-01 14:12:38.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12855. 2017-08-01 14:12:38.192 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12856. 2017-08-01 14:12:38.194 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12857. 2017-08-01 14:12:38.194 |-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= ?
  12858. 2017-08-01 14:12:38.199 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12859. 2017-08-01 14:12:38.201 |-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= ?
  12860. 2017-08-01 14:12:38.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12861. 2017-08-01 14:12:38.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12862. 2017-08-01 14:12:38.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12863. 2017-08-01 14:12:38.229 |-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
  12864. 2017-08-01 14:12:38.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12865. 2017-08-01 14:12:38.230 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12866. 2017-08-01 14:12:38.231 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12867. 2017-08-01 14:12:38.335 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12868. 2017-08-01 14:12:38.336 |-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=?)
  12869. 2017-08-01 14:12:38.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12870. 2017-08-01 14:12:38.338 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12871. 2017-08-01 14:12:38.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  12872. 2017-08-01 14:12:38.339 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12873. 2017-08-01 14:12:38.361 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12874. 2017-08-01 14:12:38.365 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12875. 2017-08-01 14:12:38.367 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12876. 2017-08-01 14:12:38.368 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12877. 2017-08-01 14:12:38.369 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12878. 2017-08-01 14:12:38.369 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12879. 2017-08-01 14:12:38.372 |-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
  12880. 2017-08-01 14:12:38.372 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12881. 2017-08-01 14:12:38.402 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  12882. 2017-08-01 14:12:38.404 |-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
  12883. 2017-08-01 14:12:38.405 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12884. 2017-08-01 14:12:38.438 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  12885. 2017-08-01 14:12:38.440 |-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
  12886. 2017-08-01 14:12:38.441 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12887. 2017-08-01 14:12:38.531 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12888. 2017-08-01 14:12:38.532 |-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
  12889. 2017-08-01 14:12:38.533 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  12890. 2017-08-01 14:12:38.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  12891. 2017-08-01 14:12:38.602 |-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
  12892. 2017-08-01 14:12:38.603 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12893. 2017-08-01 14:12:38.632 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12894. 2017-08-01 14:12:47.663 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12895. 2017-08-01 14:12:47.664 |-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= ?
  12896. 2017-08-01 14:12:47.664 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12897. 2017-08-01 14:12:47.665 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12898. 2017-08-01 14:12:47.666 |-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= ?
  12899. 2017-08-01 14:12:47.666 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12900. 2017-08-01 14:12:47.694 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12901. 2017-08-01 14:12:47.694 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12902. 2017-08-01 14:12:47.695 |-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
  12903. 2017-08-01 14:12:47.695 |-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
  12904. 2017-08-01 14:12:47.695 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12905. 2017-08-01 14:12:47.695 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12906. 2017-08-01 14:12:47.724 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12907. 2017-08-01 14:12:47.724 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12908. 2017-08-01 14:12:47.725 |-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=?)
  12909. 2017-08-01 14:12:47.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=?)
  12910. 2017-08-01 14:12:47.725 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12911. 2017-08-01 14:12:47.725 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12912. 2017-08-01 14:12:47.750 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12913. 2017-08-01 14:12:47.751 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12914. 2017-08-01 14:12:47.753 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12915. 2017-08-01 14:12:47.753 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12916. 2017-08-01 14:12:47.754 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12917. 2017-08-01 14:12:47.754 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12918. 2017-08-01 14:12:47.758 |-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
  12919. 2017-08-01 14:12:47.758 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  12920. 2017-08-01 14:12:47.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  12921. 2017-08-01 14:12:47.787 |-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
  12922. 2017-08-01 14:12:47.788 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12923. 2017-08-01 14:12:47.816 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12924. 2017-08-01 14:12:47.862 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12925. 2017-08-01 14:12:47.862 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12926. 2017-08-01 14:12:47.864 |-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= ?
  12927. 2017-08-01 14:12:47.864 |-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= ?
  12928. 2017-08-01 14:12:47.864 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12929. 2017-08-01 14:12:47.864 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12930. 2017-08-01 14:12:47.893 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12931. 2017-08-01 14:12:47.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
  12932. 2017-08-01 14:12:47.894 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12933. 2017-08-01 14:12:47.895 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12934. 2017-08-01 14:12:47.896 |-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
  12935. 2017-08-01 14:12:47.896 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12936. 2017-08-01 14:12:47.922 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12937. 2017-08-01 14:12:47.923 |-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=?)
  12938. 2017-08-01 14:12:47.923 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12939. 2017-08-01 14:12:47.924 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12940. 2017-08-01 14:12:47.925 |-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=?)
  12941. 2017-08-01 14:12:47.925 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12942. 2017-08-01 14:12:47.948 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12943. 2017-08-01 14:12:47.949 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12944. 2017-08-01 14:12:47.952 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12945. 2017-08-01 14:12:47.952 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12946. 2017-08-01 14:12:47.952 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12947. 2017-08-01 14:12:47.952 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12948. 2017-08-01 14:12:47.953 |-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
  12949. 2017-08-01 14:12:47.953 |-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
  12950. 2017-08-01 14:12:47.954 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  12951. 2017-08-01 14:12:47.954 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  12952. 2017-08-01 14:12:47.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  12953. 2017-08-01 14:12:47.984 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  12954. 2017-08-01 14:12:47.996 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12955. 2017-08-01 14:12:47.998 |-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= ?
  12956. 2017-08-01 14:12:47.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12957. 2017-08-01 14:12:48.027 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12958. 2017-08-01 14:12:48.027 |-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
  12959. 2017-08-01 14:12:48.028 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12960. 2017-08-01 14:12:48.056 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12961. 2017-08-01 14:12:48.057 |-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=?)
  12962. 2017-08-01 14:12:48.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12963. 2017-08-01 14:12:48.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12964. 2017-08-01 14:12:48.086 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12965. 2017-08-01 14:12:48.087 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12966. 2017-08-01 14:12:48.090 |-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
  12967. 2017-08-01 14:12:48.091 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  12968. 2017-08-01 14:12:48.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  12969. 2017-08-01 14:12:48.209 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12970. 2017-08-01 14:12:48.211 |-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= ?
  12971. 2017-08-01 14:12:48.211 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12972. 2017-08-01 14:12:48.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12973. 2017-08-01 14:12:48.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  12974. 2017-08-01 14:12:48.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12975. 2017-08-01 14:12:48.269 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12976. 2017-08-01 14:12:48.270 |-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=?)
  12977. 2017-08-01 14:12:48.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  12978. 2017-08-01 14:12:48.297 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  12979. 2017-08-01 14:12:48.299 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  12980. 2017-08-01 14:12:48.300 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12981. 2017-08-01 14:12:48.324 |-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=?
  12982. 2017-08-01 14:12:48.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  12983. 2017-08-01 14:12:48.350 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  12984. 2017-08-01 14:12:48.487 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12985. 2017-08-01 14:12:48.487 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  12986. 2017-08-01 14:12:48.490 |-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= ?
  12987. 2017-08-01 14:12:48.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= ?
  12988. 2017-08-01 14:12:48.490 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12989. 2017-08-01 14:12:48.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  12990. 2017-08-01 14:12:48.519 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12991. 2017-08-01 14:12:48.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  12992. 2017-08-01 14:12:48.520 |-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
  12993. 2017-08-01 14:12:48.520 |-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
  12994. 2017-08-01 14:12:48.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12995. 2017-08-01 14:12:48.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  12996. 2017-08-01 14:12:48.548 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12997. 2017-08-01 14:12:48.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  12998. 2017-08-01 14:12:48.549 |-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=?)
  12999. 2017-08-01 14:12:48.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=?)
  13000. 2017-08-01 14:12:48.549 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13001. 2017-08-01 14:12:48.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13002. 2017-08-01 14:12:48.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13003. 2017-08-01 14:12:48.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13004. 2017-08-01 14:12:48.577 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13005. 2017-08-01 14:12:48.578 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13006. 2017-08-01 14:12:48.579 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13007. 2017-08-01 14:12:48.579 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13008. 2017-08-01 14:12:48.581 |-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
  13009. 2017-08-01 14:12:48.582 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13010. 2017-08-01 14:12:48.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  13011. 2017-08-01 14:12:48.613 |-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
  13012. 2017-08-01 14:12:48.614 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13013. 2017-08-01 14:12:48.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  13014. 2017-08-01 14:12:48.647 |-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
  13015. 2017-08-01 14:12:48.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  13016. 2017-08-01 14:12:48.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  13017. 2017-08-01 14:12:48.732 |-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
  13018. 2017-08-01 14:12:48.732 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13019. 2017-08-01 14:12:48.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  13020. 2017-08-01 14:12:48.801 |-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
  13021. 2017-08-01 14:12:48.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  13022. 2017-08-01 14:12:48.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  13023. 2017-08-01 14:14:27.942 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13024. 2017-08-01 14:14:27.946 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13025. 2017-08-01 14:14:27.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= ?
  13026. 2017-08-01 14:14:27.973 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13027. 2017-08-01 14:14:27.975 |-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= ?
  13028. 2017-08-01 14:14:27.976 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13029. 2017-08-01 14:14:28.001 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13030. 2017-08-01 14:14:28.004 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13031. 2017-08-01 14:14:28.028 |-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
  13032. 2017-08-01 14:14:28.028 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13033. 2017-08-01 14:14:28.029 |-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
  13034. 2017-08-01 14:14:28.029 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13035. 2017-08-01 14:14:28.057 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13036. 2017-08-01 14:14:28.058 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13037. 2017-08-01 14:14:28.058 |-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=?)
  13038. 2017-08-01 14:14:28.058 |-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=?)
  13039. 2017-08-01 14:14:28.058 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13040. 2017-08-01 14:14:28.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13041. 2017-08-01 14:14:28.084 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13042. 2017-08-01 14:14:28.084 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13043. 2017-08-01 14:14:28.086 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13044. 2017-08-01 14:14:28.087 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13045. 2017-08-01 14:14:28.088 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13046. 2017-08-01 14:14:28.088 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13047. 2017-08-01 14:14:28.097 |-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
  13048. 2017-08-01 14:14:28.097 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  13049. 2017-08-01 14:14:28.126 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  13050. 2017-08-01 14:14:28.127 |-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
  13051. 2017-08-01 14:14:28.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13052. 2017-08-01 14:14:28.157 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13053. 2017-08-01 14:14:28.216 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13054. 2017-08-01 14:14:28.216 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13055. 2017-08-01 14:14:28.218 |-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= ?
  13056. 2017-08-01 14:14:28.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13057. 2017-08-01 14:14:28.219 |-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= ?
  13058. 2017-08-01 14:14:28.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13059. 2017-08-01 14:14:28.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13060. 2017-08-01 14:14:28.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13061. 2017-08-01 14:14:28.249 |-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
  13062. 2017-08-01 14:14:28.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  13063. 2017-08-01 14:14:28.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13064. 2017-08-01 14:14:28.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13065. 2017-08-01 14:14:28.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13066. 2017-08-01 14:14:28.278 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13067. 2017-08-01 14:14:28.278 |-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=?)
  13068. 2017-08-01 14:14:28.279 |-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=?)
  13069. 2017-08-01 14:14:28.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13070. 2017-08-01 14:14:28.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13071. 2017-08-01 14:14:28.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13072. 2017-08-01 14:14:28.306 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13073. 2017-08-01 14:14:28.308 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13074. 2017-08-01 14:14:28.308 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13075. 2017-08-01 14:14:28.309 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13076. 2017-08-01 14:14:28.309 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13077. 2017-08-01 14:14:28.311 |-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
  13078. 2017-08-01 14:14:28.311 |-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
  13079. 2017-08-01 14:14:28.311 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  13080. 2017-08-01 14:14:28.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  13081. 2017-08-01 14:14:28.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  13082. 2017-08-01 14:14:28.340 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  13083. 2017-08-01 14:14:28.353 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13084. 2017-08-01 14:14:28.355 |-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= ?
  13085. 2017-08-01 14:14:28.355 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13086. 2017-08-01 14:14:28.383 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13087. 2017-08-01 14:14:28.384 |-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
  13088. 2017-08-01 14:14:28.384 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13089. 2017-08-01 14:14:28.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13090. 2017-08-01 14:14:28.414 |-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=?)
  13091. 2017-08-01 14:14:28.415 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13092. 2017-08-01 14:14:28.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13093. 2017-08-01 14:14:28.444 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13094. 2017-08-01 14:14:28.445 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13095. 2017-08-01 14:14:28.449 |-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
  13096. 2017-08-01 14:14:28.449 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  13097. 2017-08-01 14:14:28.537 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  13098. 2017-08-01 14:14:28.568 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13099. 2017-08-01 14:14:28.569 |-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= ?
  13100. 2017-08-01 14:14:28.570 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13101. 2017-08-01 14:14:28.598 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13102. 2017-08-01 14:14:28.599 |-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
  13103. 2017-08-01 14:14:28.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13104. 2017-08-01 14:14:28.628 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13105. 2017-08-01 14:14:28.628 |-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=?)
  13106. 2017-08-01 14:14:28.629 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13107. 2017-08-01 14:14:28.655 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13108. 2017-08-01 14:14:28.660 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13109. 2017-08-01 14:14:28.662 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13110. 2017-08-01 14:14:28.666 |-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=?
  13111. 2017-08-01 14:14:28.667 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  13112. 2017-08-01 14:14:28.693 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  13113. 2017-08-01 14:14:28.817 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13114. 2017-08-01 14:14:28.817 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13115. 2017-08-01 14:14:28.819 |-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= ?
  13116. 2017-08-01 14:14:28.819 |-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= ?
  13117. 2017-08-01 14:14:28.819 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13118. 2017-08-01 14:14:28.819 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13119. 2017-08-01 14:14:28.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13120. 2017-08-01 14:14:28.848 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13121. 2017-08-01 14:14:28.848 |-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
  13122. 2017-08-01 14:14:28.848 |-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
  13123. 2017-08-01 14:14:28.848 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13124. 2017-08-01 14:14:28.849 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13125. 2017-08-01 14:14:28.877 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13126. 2017-08-01 14:14:28.878 |-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=?)
  13127. 2017-08-01 14:14:28.878 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13128. 2017-08-01 14:14:28.879 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13129. 2017-08-01 14:14:28.880 |-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=?)
  13130. 2017-08-01 14:14:28.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13131. 2017-08-01 14:14:28.903 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13132. 2017-08-01 14:14:28.906 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13133. 2017-08-01 14:14:28.906 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13134. 2017-08-01 14:14:28.908 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13135. 2017-08-01 14:14:28.908 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13136. 2017-08-01 14:14:28.909 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13137. 2017-08-01 14:14:28.915 |-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
  13138. 2017-08-01 14:14:28.916 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13139. 2017-08-01 14:14:28.946 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  13140. 2017-08-01 14:14:28.948 |-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
  13141. 2017-08-01 14:14:28.948 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13142. 2017-08-01 14:14:28.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  13143. 2017-08-01 14:14:28.982 |-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
  13144. 2017-08-01 14:14:28.982 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  13145. 2017-08-01 14:14:29.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  13146. 2017-08-01 14:14:29.069 |-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
  13147. 2017-08-01 14:14:29.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13148. 2017-08-01 14:14:29.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  13149. 2017-08-01 14:14:29.136 |-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
  13150. 2017-08-01 14:14:29.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  13151. 2017-08-01 14:14:29.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  13152. 2017-08-01 14:16:48.638 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13153. 2017-08-01 14:16:48.638 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13154. 2017-08-01 14:16:48.668 |-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= ?
  13155. 2017-08-01 14:16:48.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13156. 2017-08-01 14:16:48.669 |-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= ?
  13157. 2017-08-01 14:16:48.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13158. 2017-08-01 14:16:48.697 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13159. 2017-08-01 14:16:48.698 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13160. 2017-08-01 14:16:48.723 |-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
  13161. 2017-08-01 14:16:48.723 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13162. 2017-08-01 14:16:48.725 |-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
  13163. 2017-08-01 14:16:48.726 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13164. 2017-08-01 14:16:48.753 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13165. 2017-08-01 14:16:48.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13166. 2017-08-01 14:16:48.754 |-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=?)
  13167. 2017-08-01 14:16:48.754 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13168. 2017-08-01 14:16:48.754 |-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=?)
  13169. 2017-08-01 14:16:48.755 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13170. 2017-08-01 14:16:48.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13171. 2017-08-01 14:16:48.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13172. 2017-08-01 14:16:48.784 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13173. 2017-08-01 14:16:48.784 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13174. 2017-08-01 14:16:48.785 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13175. 2017-08-01 14:16:48.785 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13176. 2017-08-01 14:16:48.790 |-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
  13177. 2017-08-01 14:16:48.790 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  13178. 2017-08-01 14:16:48.819 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 49
  13179. 2017-08-01 14:16:48.820 |-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
  13180. 2017-08-01 14:16:48.821 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13181. 2017-08-01 14:16:48.850 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13182. 2017-08-01 14:16:48.905 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13183. 2017-08-01 14:16:48.905 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13184. 2017-08-01 14:16:48.907 |-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= ?
  13185. 2017-08-01 14:16:48.907 |-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= ?
  13186. 2017-08-01 14:16:48.907 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13187. 2017-08-01 14:16:48.907 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13188. 2017-08-01 14:16:48.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13189. 2017-08-01 14:16:48.936 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13190. 2017-08-01 14:16:48.936 |-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
  13191. 2017-08-01 14:16:48.936 |-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
  13192. 2017-08-01 14:16:48.936 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13193. 2017-08-01 14:16:48.936 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13194. 2017-08-01 14:16:48.965 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13195. 2017-08-01 14:16:48.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13196. 2017-08-01 14:16:48.966 |-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=?)
  13197. 2017-08-01 14:16:48.966 |-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=?)
  13198. 2017-08-01 14:16:48.966 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13199. 2017-08-01 14:16:48.966 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13200. 2017-08-01 14:16:48.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13201. 2017-08-01 14:16:48.992 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13202. 2017-08-01 14:16:48.994 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13203. 2017-08-01 14:16:48.994 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13204. 2017-08-01 14:16:48.995 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13205. 2017-08-01 14:16:48.995 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13206. 2017-08-01 14:16:48.996 |-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
  13207. 2017-08-01 14:16:48.996 |-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
  13208. 2017-08-01 14:16:48.997 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  13209. 2017-08-01 14:16:48.997 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  13210. 2017-08-01 14:16:49.025 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  13211. 2017-08-01 14:16:49.027 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  13212. 2017-08-01 14:16:49.035 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13213. 2017-08-01 14:16:49.037 |-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= ?
  13214. 2017-08-01 14:16:49.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13215. 2017-08-01 14:16:49.066 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13216. 2017-08-01 14:16:49.066 |-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
  13217. 2017-08-01 14:16:49.067 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13218. 2017-08-01 14:16:49.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13219. 2017-08-01 14:16:49.096 |-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=?)
  13220. 2017-08-01 14:16:49.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13221. 2017-08-01 14:16:49.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13222. 2017-08-01 14:16:49.125 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13223. 2017-08-01 14:16:49.127 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13224. 2017-08-01 14:16:49.134 |-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
  13225. 2017-08-01 14:16:49.134 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  13226. 2017-08-01 14:16:49.224 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  13227. 2017-08-01 14:16:49.255 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13228. 2017-08-01 14:16:49.257 |-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= ?
  13229. 2017-08-01 14:16:49.257 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13230. 2017-08-01 14:16:49.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13231. 2017-08-01 14:16:49.286 |-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
  13232. 2017-08-01 14:16:49.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13233. 2017-08-01 14:16:49.315 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13234. 2017-08-01 14:16:49.316 |-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=?)
  13235. 2017-08-01 14:16:49.317 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13236. 2017-08-01 14:16:49.343 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13237. 2017-08-01 14:16:49.345 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13238. 2017-08-01 14:16:49.347 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13239. 2017-08-01 14:16:49.350 |-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=?
  13240. 2017-08-01 14:16:49.351 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  13241. 2017-08-01 14:16:49.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  13242. 2017-08-01 14:16:49.509 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13243. 2017-08-01 14:16:49.511 |-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= ?
  13244. 2017-08-01 14:16:49.511 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13245. 2017-08-01 14:16:49.519 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13246. 2017-08-01 14:16:49.521 |-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= ?
  13247. 2017-08-01 14:16:49.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  13248. 2017-08-01 14:16:49.540 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13249. 2017-08-01 14:16:49.541 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  13250. 2017-08-01 14:16:49.542 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13251. 2017-08-01 14:16:49.550 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13252. 2017-08-01 14:16:49.551 |-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
  13253. 2017-08-01 14:16:49.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  13254. 2017-08-01 14:16:49.571 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13255. 2017-08-01 14:16:49.572 |-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=?)
  13256. 2017-08-01 14:16:49.572 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13257. 2017-08-01 14:16:49.580 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 50
  13258. 2017-08-01 14:16:49.580 |-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=?)
  13259. 2017-08-01 14:16:49.581 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  13260. 2017-08-01 14:16:49.598 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13261. 2017-08-01 14:16:49.601 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13262. 2017-08-01 14:16:49.602 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13263. 2017-08-01 14:16:49.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  13264. 2017-08-01 14:16:49.608 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  13265. 2017-08-01 14:16:49.609 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  13266. 2017-08-01 14:16:49.612 |-DEBUG [http-nio-8089-exec-3] 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
  13267. 2017-08-01 14:16:49.613 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13268. 2017-08-01 14:16:49.641 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 5
  13269. 2017-08-01 14:16:49.643 |-DEBUG [http-nio-8089-exec-3] 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
  13270. 2017-08-01 14:16:49.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13271. 2017-08-01 14:16:49.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 83
  13272. 2017-08-01 14:16:49.676 |-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
  13273. 2017-08-01 14:16:49.677 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  13274. 2017-08-01 14:16:49.759 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 580
  13275. 2017-08-01 14:16:49.761 |-DEBUG [http-nio-8089-exec-3] 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
  13276. 2017-08-01 14:16:49.761 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-26 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  13277. 2017-08-01 14:16:49.838 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 56
  13278. 2017-08-01 14:16:49.840 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  13279. 2017-08-01 14:16:49.840 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  13280. 2017-08-01 14:16:49.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21